diff --git a/README.md b/README.md index e19e2c36ad8ab2fff502c62543ac45a009679e1c..490309c2d2e045eff1c325caf2d0ad4ed3193d1b 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ license: mit language: - en -library_name: pytorch +library_name: transformers pipeline_tag: text-generation tags: - taonet @@ -11,7 +11,8 @@ tags: - state-space-model - dplr - pytorch -- custom-code +- transformers +- custom_code - text-generation - experimental datasets: @@ -20,15 +21,93 @@ datasets: # TaoNet-mini-T2 -TaoNet-mini-T2 is an experimental 196M-parameter TaoNet-style language model that replaces the attention sequence mixer with a Taotern/Gamma DPLR state-space model (SSM). It is packaged as a runnable TaoTrain checkpoint bundle rather than a native `transformers.AutoModelForCausalLM` repository. +TaoNet-mini-T2 is an experimental 196M-parameter TaoNet language model using a Taotern/Gamma DPLR state-space model (SSM) sequence core instead of attention. The repository includes the full training handoff package, but the recommended inference path is now Hugging Face `transformers` remote code: -This release is intended for research backup, reproducibility, and deployment investigation. It includes the model checkpoints, tokenizer, TaoTrain runtime code, Taotern SSM code, run configs, diagnostics, and Windows/Linux helper scripts. +```python +AutoModelForCausalLM.from_pretrained("TaoTern/TaoNet-mini-T2", trust_remote_code=True) +``` + +The default `transformers` loader downloads `model/pretrain_final_model.pt` and applies the RepoBridge chat-quality fix: `ssm_finite_tail_correction=True` and `ssm_kernel_mode="recurrent"`. + +## Quick Start + +Install runtime dependencies: + +```bash +pip install torch transformers sentencepiece huggingface_hub pydantic pydantic-settings pyyaml numpy +``` + +For the private review repo, log in first: + +```bash +hf auth login +``` + +Run generation from Python: + +```python +import time +import torch +from transformers import AutoModelForCausalLM, AutoTokenizer + +MODEL_NAME = "TaoTern/TaoNet-mini-T2" + +device = "cuda" if torch.cuda.is_available() else "cpu" +dtype = torch.bfloat16 if device == "cuda" else torch.float32 + +tokenizer = AutoTokenizer.from_pretrained(MODEL_NAME, trust_remote_code=True) +model = AutoModelForCausalLM.from_pretrained( + MODEL_NAME, + trust_remote_code=True, + torch_dtype=dtype, +).to(device) + + +def generate_text(prompt, max_new_tokens=64, temperature=0.7, top_p=0.85): + inputs = tokenizer(prompt, return_tensors="pt") + inputs = {key: value.to(device) for key, value in inputs.items()} + + start_time = time.time() + with torch.inference_mode(): + outputs = model.generate( + **inputs, + max_new_tokens=max_new_tokens, + temperature=temperature, + top_p=top_p, + repetition_penalty=1.2, + do_sample=True, + use_cache=False, + pad_token_id=tokenizer.pad_token_id, + eos_token_id=tokenizer.eos_token_id, + ) + elapsed_time = time.time() - start_time + + new_tokens = outputs.shape[1] - inputs["input_ids"].shape[1] + tokens_per_second = new_tokens / elapsed_time if elapsed_time > 0 else 0.0 + completion = tokenizer.decode(outputs[0][inputs["input_ids"].shape[1]:], skip_special_tokens=True) + return completion, tokens_per_second + + +if __name__ == "__main__": + text, tps = generate_text("Fruit is now expensive so we should") + print(text) + print(f"\nTokens per second: {tps:.2f}") +``` + +To load the SFT final checkpoint instead of the default pretrain checkpoint: + +```python +model = AutoModelForCausalLM.from_pretrained( + "TaoTern/TaoNet-mini-T2", + trust_remote_code=True, + checkpoint_name="final_model.pt", +) +``` ## Model Details | Field | Value | -|---|---| -| Model family | TaoNet / Taotern SSM | +|---|---:| | Architecture | `taonet_ssm` | | Candidate | `pure_ssm_196m_branch_rms_only` | | Parameters | 196,573,128 | @@ -45,20 +124,17 @@ This release is intended for research backup, reproducibility, and deployment in | Local shift | Enabled, per-channel | | Branch RMS norm | Enabled | -## Files - -Download and unzip: - -```text -taotern-200m-branch-only-chat-20260514_handoff.zip -``` - -The zip contains: +## Repository Layout ```text +config.json +configuration_taonet_mini_t2.py +modeling_taonet_mini_t2.py +tokenization_taonet_mini_t2.py +tokenizer.model model/ final_model.pt # SFT final checkpoint - pretrain_final_model.pt # recommended checkpoint for fixed chat test + pretrain_final_model.pt # default checkpoint for HF inference tokenizer/ tokenizer.model tokenizer.vocab @@ -69,100 +145,64 @@ code/ artifacts/ configs/ diagnostics/ - model_card.json - run_plan.json - loss_curve_summary.json -chat_ssm_fixed.py -RUN_TEST_WINDOWS.cmd -setup_windows.ps1 -setup_linux.sh -run_chat_fixed.ps1 -run_chat_fixed.sh -CHECKSUMS.sha256 -README_HANDOFF.md +chat_ssm_fixed.py # legacy local fixed-chat CLI +eval_lm_eval.py # local lm-eval harness wrapper ``` -Package checksum: - -```text -sha256=5dd45e5d236f37101d183cadb92c5a13ea0aa574a24f578faa6cc8ee7ed166d6 -``` - -## Quick Start +## Upload Notes -### Windows +This repo contains two multi-GB checkpoint files, so prefer the resumable large-folder uploader instead of the normal single-commit upload command: -1. Download and unzip `taotern-200m-branch-only-chat-20260514_handoff.zip`. -2. Double-click: - -```text -RUN_TEST_WINDOWS.cmd +```bash +hf upload-large-folder TaoTern/TaoNet-mini-T2 . --repo-type model --private ``` -The launcher creates or reuses `.venv`, tries PyTorch CUDA 12.8 first, falls back to CUDA 12.6, installs the packaged TaoTrain/Taotern SSM code, then launches the fixed chat script. - -Manual Windows setup: +On Windows, from the repo folder: ```powershell -powershell -ExecutionPolicy Bypass -File .\setup_windows.ps1 -TorchFlavor cu128 -powershell -ExecutionPolicy Bypass -File .\run_chat_fixed.ps1 +powershell -ExecutionPolicy Bypass -File .\upload_large_folder.ps1 ``` -If CUDA 12.8 fails: +## Inference Notes -```powershell -powershell -ExecutionPolicy Bypass -File .\setup_windows.ps1 -TorchFlavor cu126 -``` +The training config used `ssm_finite_tail_correction=False` and `ssm_kernel_mode="conv"`. That path is fast for full-sequence training/evaluation but produced poor chat samples in the recovered workflow. -CPU-only setup is possible but very slow: +The `transformers` wrapper defaults to: -```powershell -powershell -ExecutionPolicy Bypass -File .\setup_windows.ps1 -TorchFlavor cpu +```text +ssm_finite_tail_correction=True +ssm_kernel_mode=recurrent +checkpoint=model/pretrain_final_model.pt ``` -### Linux +For fast benchmark scoring, use the included `eval_lm_eval.py` script with `--ssm-kernel-mode conv --finite-tail`. -```bash -unzip taotern-200m-branch-only-chat-20260514_handoff.zip -cd taotern-200m-branch-only-chat-20260514 -chmod +x setup_linux.sh run_chat_fixed.sh -./setup_linux.sh cu128 -./run_chat_fixed.sh -``` +## LM Evaluation Harness Benchmark -If CUDA 12.8 is not suitable, try: - -```bash -./setup_linux.sh cu126 -``` - -## Recommended Inference Mode - -The checkpoint was trained with convolutional SSM execution. For chat testing, this bundle uses a temporary RepoBridge-style inference fix: +Settings: ```text +library=lm-eval-harness +checkpoint=model/pretrain_final_model.pt +num_fewshot=0 +limit=100 +ssm_kernel_mode=conv ssm_finite_tail_correction=true -ssm_kernel_mode=recurrent -default_checkpoint=model/pretrain_final_model.pt -decode=greedy -top_p=0.85 -repetition_penalty=1.2 -max_new_tokens=64 -``` - -Run it directly: - -```bash -python chat_ssm_fixed.py --interactive +eval_batch_size=8 ``` -or on Windows: +Results: -```powershell -powershell -ExecutionPolicy Bypass -File .\run_chat_fixed.ps1 -``` +| Task | Primary score | +|---|---:| +| HellaSwag | 0.3300 | +| ARC Easy | 0.3400 | +| ARC Challenge | 0.2200 | +| PIQA | 0.4400 | +| Winogrande | 0.5300 | +| Mean primary score | 0.3720 | -Plain TaoTrain `tui-chat` reconstructs the model from the training config (`ssm_finite_tail_correction=false`, `ssm_kernel_mode=conv`) and may produce much worse samples. Use `chat_ssm_fixed.py` for the expected behavior. +These are limit-100 smoke benchmark numbers for review, not full leaderboard results. ## Training Summary @@ -172,8 +212,6 @@ Run ID: taotern-200m-branch-only-chat-20260514 ``` -Training shape: - | Stage | Value | |---|---:| | Pretrain token positions | 4,000,000,000 | @@ -204,17 +242,14 @@ This model is intended for: - Taotern/TaoNet SSM research - checkpoint backup and reproducibility -- deployment experiments for a custom TaoTrain runtime +- deployment experiments with custom Hugging Face remote code - studying recurrent SSM inference behavior -It is not currently a drop-in Transformers model and is not intended as a polished production chatbot. - ## Limitations -- Experimental model quality; validate before use. -- Requires custom TaoTrain and Taotern SSM code included in the package. +- Experimental model quality; validate outputs before use. +- Requires `trust_remote_code=True` because the architecture is not part of upstream `transformers`. - The recommended chat path depends on an inference-time SSM override. -- Not currently packaged as `AutoModelForCausalLM`. - CPU inference is expected to be very slow. - English-focused pilot data/tokenizer. @@ -232,4 +267,3 @@ It is not currently a drop-in Transformers model and is not intended as a polish ## Related - [TaoTern/TaoNet-pico-T1](https://huggingface.co/TaoTern/TaoNet-pico-T1) - diff --git a/artifacts/configs/pretrain.yaml b/artifacts/configs/pretrain.yaml new file mode 100644 index 0000000000000000000000000000000000000000..5589c2c0a756e787f9564ec590128c8f0dfd564b --- /dev/null +++ b/artifacts/configs/pretrain.yaml @@ -0,0 +1,86 @@ +model: + architecture_type: taonet_ssm + vocab_size: 8192 + hidden_dim: 1024 + num_layers: 18 + num_heads: 8 + max_seq_length: 512 + d_latent_kv: 768 + d_rope: 128 + hidden_dim_ff: 3072 + dropout: 0.0 + gqa_groups: 1 + use_factorized_embedding: false + d_embed_rank: 96 + init_std: 0.02 + ssm_core: dplr + ssm_hidden_dim: 32 + ssm_mixer_dim: 256 + ssm_num_lanes: 2 + ssm_lane_combine: channel + ssm_lane_mode: split + ssm_split_mix: none + ssm_rank: 1 + ssm_max_low_rank_scale: 0.1 + ssm_finite_tail_correction: false + ssm_discretization: bilinear + ssm_kernel_mode: conv + ssm_kernel_threshold: 64 + ssm_dt_min: 1e-3 + ssm_dt_max: 1e-1 + ssm_dt_init: 1e-2 + ssm_use_d: true + ssm_activation: gelu + ssm_gate: true + ssm_input_gate: true + ssm_gate_type: channel + ssm_use_padding_mask: false + ssm_layer_scale_init: 0.1 + ssm_branch_rms_norm: true + block_residual_rms_norm: false + + ssm_local_shift: true + ssm_local_shift_init: 0.1 + ssm_local_shift_per_channel: true + +dataset: + local: true + jsonl_path: /home/student/Data/TaoData/pretrain.jsonl + text_field: text + tokenizer_type: sentencepiece + tokenizer_path: /home/student/YouZheng/tokenizers/taodata_pilot_8k/tokenizer.model + samples_per_chunk: 2000 + tokenizer_threads: 8 + +sequence_length: 512 +batch_size: 8 +num_epochs: 100000 +max_steps: 976563 +gradient_accumulation_steps: 1 +max_grad_norm: 1.0 + +optimizer: + optimizer_type: adamw + learning_rate: 0.0008 + weight_decay: 0.01 + betas: [0.9, 0.999] + eps: 1e-8 + +scheduler: + scheduler_type: constant + warmup_steps: 1000 + warmup_ratio: 0.0 + +dtype: bfloat16 +device: cuda +checkpoint_dir: /home/student/YouZheng/jobs/taotern/taotern-200m-branch-only-chat-20260514/checkpoints/pretrain +save_every_steps: 100000 +save_best_model: false +keep_last_n_checkpoints: 3 +eval_every_steps: 100000 +eval_samples: 32 +log_every_steps: 100 +aim_repo: /home/student/YouZheng/jobs/taotern/taotern-200m-branch-only-chat-20260514/outputs/.aim-pretrain +seed: 43 +num_workers: 0 +pin_memory: true diff --git a/artifacts/configs/sft.yaml b/artifacts/configs/sft.yaml new file mode 100644 index 0000000000000000000000000000000000000000..d5606ee9990694ecfec024167786a23eccd7706f --- /dev/null +++ b/artifacts/configs/sft.yaml @@ -0,0 +1,92 @@ +model: + architecture_type: taonet_ssm + vocab_size: 8192 + hidden_dim: 1024 + num_layers: 18 + num_heads: 8 + max_seq_length: 512 + d_latent_kv: 768 + d_rope: 128 + hidden_dim_ff: 3072 + dropout: 0.0 + gqa_groups: 1 + use_factorized_embedding: false + d_embed_rank: 96 + init_std: 0.02 + ssm_core: dplr + ssm_hidden_dim: 32 + ssm_mixer_dim: 256 + ssm_num_lanes: 2 + ssm_lane_combine: channel + ssm_lane_mode: split + ssm_split_mix: none + ssm_rank: 1 + ssm_max_low_rank_scale: 0.1 + ssm_finite_tail_correction: false + ssm_discretization: bilinear + ssm_kernel_mode: conv + ssm_kernel_threshold: 64 + ssm_dt_min: 1e-3 + ssm_dt_max: 1e-1 + ssm_dt_init: 1e-2 + ssm_use_d: true + ssm_activation: gelu + ssm_gate: true + ssm_input_gate: true + ssm_gate_type: channel + ssm_use_padding_mask: false + ssm_layer_scale_init: 0.1 + ssm_branch_rms_norm: true + block_residual_rms_norm: false + + ssm_local_shift: true + ssm_local_shift_init: 0.1 + ssm_local_shift_per_channel: true + +dataset: + split: train + instruction_column: input + response_column: output + local: true + jsonl_path: /home/student/Data/TaoData/sft.jsonl + samples_per_chunk: 2000 + tokenizer_type: sentencepiece + tokenizer_path: /home/student/YouZheng/tokenizers/taodata_pilot_8k/tokenizer.model + tokenizer_threads: 8 + +checkpoint_path: /home/student/YouZheng/jobs/taotern/taotern-200m-branch-only-chat-20260514/checkpoints/pretrain/final_model.pt +user_token: "" +assistant_token: "" +response_loss_only: true + +batch_size: 8 +num_epochs: 100000 +max_steps: 50000 +gradient_accumulation_steps: 1 +max_grad_norm: 1.0 + +optimizer: + optimizer_type: adamw + learning_rate: 0.00005 + weight_decay: 0.0 + betas: [0.9, 0.999] + eps: 1e-8 + +scheduler: + scheduler_type: constant + warmup_steps: 100 + warmup_ratio: 0.0 + +dtype: bfloat16 +device: cuda +checkpoint_dir: /home/student/YouZheng/jobs/taotern/taotern-200m-branch-only-chat-20260514/checkpoints/sft +save_every_steps: 10000 +save_best_model: false +keep_last_n_checkpoints: 3 +eval_every_steps: 10000 +eval_samples: 32 +log_every_steps: 20 +aim_repo: /home/student/YouZheng/jobs/taotern/taotern-200m-branch-only-chat-20260514/outputs/.aim-sft +seed: 44 +num_workers: 0 +pin_memory: true diff --git a/artifacts/diagnostics/activation_probe_pretrain_final.json b/artifacts/diagnostics/activation_probe_pretrain_final.json new file mode 100644 index 0000000000000000000000000000000000000000..528106cc2e411684dac032cf3d6f79f2dc02fe10 --- /dev/null +++ b/artifacts/diagnostics/activation_probe_pretrain_final.json @@ -0,0 +1,118 @@ +{ + "checkpoint": "/home/student/YouZheng/jobs/taotern/taotern-200m-branch-only-chat-20260514/checkpoints/pretrain/final_model.pt", + "loss": 2.8459982872009277, + "batch_size": 2, + "seq_len": 512, + "device": "cuda", + "dtype": "torch.bfloat16", + "layers": { + "blocks.0": { + "numel": 1048576, + "finite": 1048576, + "rms": 2.9217934608459473, + "max_abs": 62.90830612182617 + }, + "blocks.1": { + "numel": 1048576, + "finite": 1048576, + "rms": 3.4865853786468506, + "max_abs": 63.050193786621094 + }, + "blocks.2": { + "numel": 1048576, + "finite": 1048576, + "rms": 4.092358589172363, + "max_abs": 98.85921478271484 + }, + "blocks.3": { + "numel": 1048576, + "finite": 1048576, + "rms": 4.814863681793213, + "max_abs": 160.82785034179688 + }, + "blocks.4": { + "numel": 1048576, + "finite": 1048576, + "rms": 6.032325267791748, + "max_abs": 237.8623504638672 + }, + "blocks.5": { + "numel": 1048576, + "finite": 1048576, + "rms": 7.5034403800964355, + "max_abs": 324.9512939453125 + }, + "blocks.6": { + "numel": 1048576, + "finite": 1048576, + "rms": 8.303068161010742, + "max_abs": 345.4449462890625 + }, + "blocks.7": { + "numel": 1048576, + "finite": 1048576, + "rms": 8.911171913146973, + "max_abs": 337.6418151855469 + }, + "blocks.8": { + "numel": 1048576, + "finite": 1048576, + "rms": 10.293173789978027, + "max_abs": 343.7690124511719 + }, + "blocks.9": { + "numel": 1048576, + "finite": 1048576, + "rms": 11.591143608093262, + "max_abs": 361.6515808105469 + }, + "blocks.10": { + "numel": 1048576, + "finite": 1048576, + "rms": 13.886137962341309, + "max_abs": 401.029052734375 + }, + "blocks.11": { + "numel": 1048576, + "finite": 1048576, + "rms": 15.372880935668945, + "max_abs": 406.81036376953125 + }, + "blocks.12": { + "numel": 1048576, + "finite": 1048576, + "rms": 18.466873168945312, + "max_abs": 541.068603515625 + }, + "blocks.13": { + "numel": 1048576, + "finite": 1048576, + "rms": 20.376676559448242, + "max_abs": 553.8697509765625 + }, + "blocks.14": { + "numel": 1048576, + "finite": 1048576, + "rms": 23.877737045288086, + "max_abs": 652.4536743164062 + }, + "blocks.15": { + "numel": 1048576, + "finite": 1048576, + "rms": 28.56619644165039, + "max_abs": 874.2588500976562 + }, + "blocks.16": { + "numel": 1048576, + "finite": 1048576, + "rms": 35.949851989746094, + "max_abs": 1143.6116943359375 + }, + "blocks.17": { + "numel": 1048576, + "finite": 1048576, + "rms": 45.9725227355957, + "max_abs": 2560.034423828125 + } + } +} \ No newline at end of file diff --git a/artifacts/diagnostics/generation_samples_pretrain_final.json b/artifacts/diagnostics/generation_samples_pretrain_final.json new file mode 100644 index 0000000000000000000000000000000000000000..8d563bd6219f0b154c6127afee76ca7f1b7aca72 --- /dev/null +++ b/artifacts/diagnostics/generation_samples_pretrain_final.json @@ -0,0 +1,23 @@ +{ + "checkpoint": "/home/student/YouZheng/jobs/taotern/taotern-200m-branch-only-chat-20260514/checkpoints/pretrain/final_model.pt", + "tokenizer_path": "/home/student/YouZheng/tokenizers/taodata_pilot_8k/tokenizer.model", + "device": "cuda", + "dtype": "torch.bfloat16", + "max_new_tokens": 160, + "temperature": 0.8, + "top_p": 0.9, + "samples": [ + { + "prompt": "The purpose of artificial intelligence is", + "completion": "to enable human creativity to be a kind of artifact of politics - and sometimes to do that the principle of human dignity cannot be denied without the distinction of two; but the only thing that gives those who rely on it the ability to be free to decide the right thing.In some cases, the majority of the rules about how to use such knowledge are not clearly understood by the law. This leads to the generation of the same arguments, which leads to the mistake of the expert who sought to apply it to everything else.Well, to comply with the human dignity. There is some good news. There are some types of discrimination. This is because it is always a death sentence. Many people are not even able to get to court." + }, + { + "prompt": "In a small village,", + "completion": "you can live alone, but sometimes you might have to leave the house without a roof. Most of these city residents get two hours of sleep on most of the time, while many do.When it comes to school:Times help.Most of the time, wind is always the most important (or the least important): being well rested during the day.When the weather gets hot, the symptoms of insomnia can appear. Most of the time it just doesn't. Most people get enough sleep.Typically, we don't need to get more than 2 hours.Why are there such a large number of people getting the same kind of sleep?There are some factors that make it difficult to identify as having sleep problems. Some people do get a few" + }, + { + "prompt": "Hello, who are you?", + "completion": "24.2 (2) 1:10Though many households still live without electricity, most people who live close to the power lines will do so to the extent that they have only a small amount of electricity at the end of the day (33%).(3) The average household electricity rate is higher for the two types of households at 32%, with 31% of the 2005-06 peaks.7Take home message:- Unrealistically high societies. This is one factor that makes getting it to such a huge difference. This means that one has to make some very poor choices when it comes to one's overall lifestyle. Many cities do not have a proper gas taxes;" + } + ] +} \ No newline at end of file diff --git a/artifacts/diagnostics/generation_samples_sft_final.json b/artifacts/diagnostics/generation_samples_sft_final.json new file mode 100644 index 0000000000000000000000000000000000000000..41f839e6e05a6aeb774ea98cdaf6df89acf9536e --- /dev/null +++ b/artifacts/diagnostics/generation_samples_sft_final.json @@ -0,0 +1,23 @@ +{ + "checkpoint": "/home/student/YouZheng/jobs/taotern/taotern-200m-branch-only-chat-20260514/checkpoints/sft/final_model.pt", + "tokenizer_path": "/home/student/YouZheng/tokenizers/taodata_pilot_8k/tokenizer.model", + "device": "cuda", + "dtype": "torch.bfloat16", + "max_new_tokens": 220, + "temperature": 0.7, + "top_p": 0.9, + "samples": [ + { + "prompt": "Hello, who are you?", + "completion": "A tip is usually a net, a pack is a scavenger, which means that the initial effort is the delta, the body, the nav, is the ad. ⁇ ** Also, typically, a person typically becomes anemic and always begins to move around, which typically involves movement, which typically involves some movement, such as movement, which can also affect movement. ⁇ **Astrophobic** is not always a result of a very dramatic event. ⁇ * Often, it).That must be.*That got lost. ⁇ That got you got.)That must have got you confused. Most doctors agree. Muscles seem to lose flexibility.But steroids can still keep you sharp. Muscle cramps. Muscle cramps. Muscle fatigue. Most adults can still breathe. ⁇ **Most organs have multiple functions.** ⁇ Most treatments are aimed at improving symptoms. But advanced treatments may trigger inflammation. Low maintenance but soft but solid retain or soft core. Presence: Completing the major: Co the specific major" + }, + { + "prompt": "Explain what artificial intelligence is in simple words.", + "completion": "A oscillator is a singular and eventually identical, specialized singular, the silencer. However, sometimes, sometimes, sometimes, the particles are almost always and typically surrounded by unusual or unusual characteristics, such as being very agile, such as being very small, very small, and often very dense, sometimes very really really. ⁇ They can also sometimes also sometimes sometimes sometimes. Sometimes, sometimes sometimes sometimes sometimes. Sometimes, sometimes sometimes sometimes sometimes. ⁇ However,).).....)....That.).G...That.K..K..New..New....New..New......These two devices seem quite close. Each has its own advantage. ⁇ But sometimes. But sometimes. It doesn't. But it still does. But... The hypothesis. The hypothesis. The untested or rare. Comes in red. P). Complex. Co. High. CoinIn the general, the" + }, + { + "prompt": "Give me three practical study tips.", + "completion": "Dementia, also known as numbness or tingling under the arc (the gait), is a physical deformity. The necessity is the 11111111 and also typically includes an injury or condition that makes it difficult for you to do some simple things, such as getting dressed, getting some rest, or getting some sleep, but not actually getting really tired. Sometimes simply having this sometimes sometimes sometimes does really does sometimes does. Sometimes, sometimes sometimes sometimes. Sometimes sometimes.)It.The....).)...).That...That.. Two. ⁇ .That.. ⁇ Check it. ⁇ Check everything. ⁇ Check it. ⁇ But keep it small. Remember to keep everything hidden. Remember to keep everything organized. Remember to keep everyone informed. Remember to keep valuable items readily accessible. Most businesses don't offer absolute protection. Let the deco stay solid. Cos. Cos. Co. is a specific sub. ⁇ In a Coin," + } + ] +} \ No newline at end of file diff --git a/artifacts/gpu_telemetry_nvidia_smi.csv b/artifacts/gpu_telemetry_nvidia_smi.csv new file mode 100644 index 0000000000000000000000000000000000000000..2a7639d7e2842ec985aaf0a3a2c438d10cb8d2a0 --- /dev/null +++ b/artifacts/gpu_telemetry_nvidia_smi.csv @@ -0,0 +1,40044 @@ +2026-05-14T15:25:09+08:00 +2026/05/14 15:25:09.052, NVIDIA GeForce RTX 5090, 0, 0, 15, 32607, 9.60, 26 +2026-05-14T15:25:14+08:00 +2026/05/14 15:25:14.086, NVIDIA GeForce RTX 5090, 0, 0, 1271, 32607, 59.64, 27 +2026-05-14T15:25:19+08:00 +2026/05/14 15:25:19.108, NVIDIA GeForce RTX 5090, 0, 0, 1519, 32607, 59.77, 28 +2026-05-14T15:25:24+08:00 +2026/05/14 15:25:24.129, NVIDIA GeForce RTX 5090, 0, 0, 2097, 32607, 60.60, 28 +2026-05-14T15:25:29+08:00 +2026/05/14 15:25:29.152, NVIDIA GeForce RTX 5090, 0, 0, 2421, 32607, 59.65, 28 +2026-05-14T15:25:34+08:00 +2026/05/14 15:25:34.173, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 260.06, 38 +2026-05-14T15:25:39+08:00 +2026/05/14 15:25:39.198, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 333.51, 40 +2026-05-14T15:25:44+08:00 +2026/05/14 15:25:44.222, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 312.12, 37 +2026-05-14T15:25:49+08:00 +2026/05/14 15:25:49.243, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 336.45, 43 +2026-05-14T15:25:54+08:00 +2026/05/14 15:25:54.266, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 334.30, 43 +2026-05-14T15:25:59+08:00 +2026/05/14 15:25:59.289, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 335.26, 44 +2026-05-14T15:26:04+08:00 +2026/05/14 15:26:04.311, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 336.46, 45 +2026-05-14T15:26:09+08:00 +2026/05/14 15:26:09.333, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 339.93, 46 +2026-05-14T15:26:14+08:00 +2026/05/14 15:26:14.355, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 338.52, 46 +2026-05-14T15:26:19+08:00 +2026/05/14 15:26:19.377, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 339.19, 47 +2026-05-14T15:26:24+08:00 +2026/05/14 15:26:24.402, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 340.23, 48 +2026-05-14T15:26:29+08:00 +2026/05/14 15:26:29.426, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 341.77, 49 +2026-05-14T15:26:34+08:00 +2026/05/14 15:26:34.450, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 343.22, 50 +2026-05-14T15:26:39+08:00 +2026/05/14 15:26:39.474, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 343.43, 51 +2026-05-14T15:26:44+08:00 +2026/05/14 15:26:44.501, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 344.00, 52 +2026-05-14T15:26:49+08:00 +2026/05/14 15:26:49.524, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 344.36, 51 +2026-05-14T15:26:54+08:00 +2026/05/14 15:26:54.549, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 344.97, 53 +2026-05-14T15:26:59+08:00 +2026/05/14 15:26:59.575, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 346.23, 54 +2026-05-14T15:27:04+08:00 +2026/05/14 15:27:04.598, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 346.52, 54 +2026-05-14T15:27:09+08:00 +2026/05/14 15:27:09.622, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 347.15, 55 +2026-05-14T15:27:14+08:00 +2026/05/14 15:27:14.649, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 347.82, 56 +2026-05-14T15:27:19+08:00 +2026/05/14 15:27:19.672, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 349.06, 56 +2026-05-14T15:27:24+08:00 +2026/05/14 15:27:24.696, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 350.00, 56 +2026-05-14T15:27:29+08:00 +2026/05/14 15:27:29.721, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 243.66, 56 +2026-05-14T15:27:34+08:00 +2026/05/14 15:27:34.745, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 352.02, 58 +2026-05-14T15:27:39+08:00 +2026/05/14 15:27:39.768, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 350.74, 57 +2026-05-14T15:27:44+08:00 +2026/05/14 15:27:44.793, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 352.99, 57 +2026-05-14T15:27:49+08:00 +2026/05/14 15:27:49.816, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 354.34, 59 +2026-05-14T15:27:54+08:00 +2026/05/14 15:27:54.840, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 356.05, 60 +2026-05-14T15:27:59+08:00 +2026/05/14 15:27:59.863, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 355.12, 60 +2026-05-14T15:28:04+08:00 +2026/05/14 15:28:04.888, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 355.78, 59 +2026-05-14T15:28:09+08:00 +2026/05/14 15:28:09.912, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 353.47, 61 +2026-05-14T15:28:14+08:00 +2026/05/14 15:28:14.936, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 356.08, 60 +2026-05-14T15:28:19+08:00 +2026/05/14 15:28:19.959, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 357.77, 61 +2026-05-14T15:28:24+08:00 +2026/05/14 15:28:24.983, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 347.64, 60 +2026-05-14T15:28:29+08:00 +2026/05/14 15:28:30.006, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 353.16, 61 +2026-05-14T15:28:35+08:00 +2026/05/14 15:28:35.029, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 357.45, 61 +2026-05-14T15:28:40+08:00 +2026/05/14 15:28:40.053, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 357.20, 61 +2026-05-14T15:28:45+08:00 +2026/05/14 15:28:45.080, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 357.77, 61 +2026-05-14T15:28:50+08:00 +2026/05/14 15:28:50.103, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 358.52, 63 +2026-05-14T15:28:55+08:00 +2026/05/14 15:28:55.127, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 359.60, 63 +2026-05-14T15:29:00+08:00 +2026/05/14 15:29:00.149, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 359.81, 64 +2026-05-14T15:29:05+08:00 +2026/05/14 15:29:05.177, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.83, 64 +2026-05-14T15:29:10+08:00 +2026/05/14 15:29:10.201, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 360.69, 64 +2026-05-14T15:29:15+08:00 +2026/05/14 15:29:15.225, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.20, 62 +2026-05-14T15:29:20+08:00 +2026/05/14 15:29:20.248, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.75, 63 +2026-05-14T15:29:25+08:00 +2026/05/14 15:29:25.272, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.43, 64 +2026-05-14T15:29:30+08:00 +2026/05/14 15:29:30.294, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.24, 65 +2026-05-14T15:29:35+08:00 +2026/05/14 15:29:35.318, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.49, 65 +2026-05-14T15:29:40+08:00 +2026/05/14 15:29:40.375, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.82, 63 +2026-05-14T15:29:45+08:00 +2026/05/14 15:29:45.398, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.20, 65 +2026-05-14T15:29:50+08:00 +2026/05/14 15:29:50.421, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.65, 64 +2026-05-14T15:29:55+08:00 +2026/05/14 15:29:55.469, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.92, 64 +2026-05-14T15:30:00+08:00 +2026/05/14 15:30:00.492, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.67, 65 +2026-05-14T15:30:05+08:00 +2026/05/14 15:30:05.532, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.29, 65 +2026-05-14T15:30:10+08:00 +2026/05/14 15:30:10.571, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.44, 65 +2026-05-14T15:30:15+08:00 +2026/05/14 15:30:15.612, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.34, 64 +2026-05-14T15:30:20+08:00 +2026/05/14 15:30:20.652, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 316.48, 65 +2026-05-14T15:30:25+08:00 +2026/05/14 15:30:25.694, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.60, 65 +2026-05-14T15:30:30+08:00 +2026/05/14 15:30:30.733, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.03, 65 +2026-05-14T15:30:35+08:00 +2026/05/14 15:30:35.774, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.08, 65 +2026-05-14T15:30:40+08:00 +2026/05/14 15:30:40.830, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 346.88, 66 +2026-05-14T15:30:45+08:00 +2026/05/14 15:30:45.853, NVIDIA GeForce RTX 5090, 69, 32, 9607, 32607, 360.83, 65 +2026-05-14T15:30:50+08:00 +2026/05/14 15:30:50.875, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.76, 66 +2026-05-14T15:30:55+08:00 +2026/05/14 15:30:55.901, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.50, 66 +2026-05-14T15:31:00+08:00 +2026/05/14 15:31:00.949, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.38, 66 +2026-05-14T15:31:05+08:00 +2026/05/14 15:31:05.972, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.40, 66 +2026-05-14T15:31:10+08:00 +2026/05/14 15:31:11.047, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.65, 66 +2026-05-14T15:31:16+08:00 +2026/05/14 15:31:16.072, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.69, 66 +2026-05-14T15:31:21+08:00 +2026/05/14 15:31:21.114, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.62, 66 +2026-05-14T15:31:26+08:00 +2026/05/14 15:31:26.156, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.40, 66 +2026-05-14T15:31:31+08:00 +2026/05/14 15:31:31.196, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.67, 66 +2026-05-14T15:31:36+08:00 +2026/05/14 15:31:36.238, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.97, 66 +2026-05-14T15:31:41+08:00 +2026/05/14 15:31:41.281, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.95, 66 +2026-05-14T15:31:46+08:00 +2026/05/14 15:31:46.304, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.41, 65 +2026-05-14T15:31:51+08:00 +2026/05/14 15:31:51.347, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.70, 67 +2026-05-14T15:31:56+08:00 +2026/05/14 15:31:56.376, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 364.73, 66 +2026-05-14T15:32:01+08:00 +2026/05/14 15:32:01.400, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.24, 66 +2026-05-14T15:32:06+08:00 +2026/05/14 15:32:06.424, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.68, 66 +2026-05-14T15:32:11+08:00 +2026/05/14 15:32:11.448, NVIDIA GeForce RTX 5090, 83, 37, 9607, 32607, 366.17, 66 +2026-05-14T15:32:16+08:00 +2026/05/14 15:32:16.470, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.93, 66 +2026-05-14T15:32:21+08:00 +2026/05/14 15:32:21.498, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.39, 66 +2026-05-14T15:32:26+08:00 +2026/05/14 15:32:26.523, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 367.72, 67 +2026-05-14T15:32:31+08:00 +2026/05/14 15:32:31.553, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.27, 66 +2026-05-14T15:32:36+08:00 +2026/05/14 15:32:36.576, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 247.31, 61 +2026-05-14T15:32:41+08:00 +2026/05/14 15:32:41.600, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.33, 66 +2026-05-14T15:32:46+08:00 +2026/05/14 15:32:46.624, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 366.46, 65 +2026-05-14T15:32:51+08:00 +2026/05/14 15:32:51.647, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.77, 66 +2026-05-14T15:32:56+08:00 +2026/05/14 15:32:56.672, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.80, 66 +2026-05-14T15:33:01+08:00 +2026/05/14 15:33:01.696, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.38, 66 +2026-05-14T15:33:06+08:00 +2026/05/14 15:33:06.721, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.99, 66 +2026-05-14T15:33:11+08:00 +2026/05/14 15:33:11.745, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.10, 67 +2026-05-14T15:33:16+08:00 +2026/05/14 15:33:16.770, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 367.99, 67 +2026-05-14T15:33:21+08:00 +2026/05/14 15:33:21.794, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.64, 66 +2026-05-14T15:33:26+08:00 +2026/05/14 15:33:26.818, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.28, 66 +2026-05-14T15:33:31+08:00 +2026/05/14 15:33:31.841, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 368.11, 66 +2026-05-14T15:33:36+08:00 +2026/05/14 15:33:36.868, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.01, 66 +2026-05-14T15:33:41+08:00 +2026/05/14 15:33:41.894, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.84, 66 +2026-05-14T15:33:46+08:00 +2026/05/14 15:33:46.921, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.80, 66 +2026-05-14T15:33:51+08:00 +2026/05/14 15:33:51.944, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 272.14, 64 +2026-05-14T15:33:56+08:00 +2026/05/14 15:33:56.969, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 299.07, 60 +2026-05-14T15:34:01+08:00 +2026/05/14 15:34:01.996, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.38, 66 +2026-05-14T15:34:07+08:00 +2026/05/14 15:34:07.018, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.53, 66 +2026-05-14T15:34:12+08:00 +2026/05/14 15:34:12.041, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 369.36, 68 +2026-05-14T15:34:17+08:00 +2026/05/14 15:34:17.066, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 368.47, 67 +2026-05-14T15:34:22+08:00 +2026/05/14 15:34:22.091, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.08, 67 +2026-05-14T15:34:27+08:00 +2026/05/14 15:34:27.117, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.08, 65 +2026-05-14T15:34:32+08:00 +2026/05/14 15:34:32.141, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.42, 66 +2026-05-14T15:34:37+08:00 +2026/05/14 15:34:37.164, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.29, 66 +2026-05-14T15:34:42+08:00 +2026/05/14 15:34:42.188, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.49, 67 +2026-05-14T15:34:47+08:00 +2026/05/14 15:34:47.214, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.96, 67 +2026-05-14T15:34:52+08:00 +2026/05/14 15:34:52.239, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.77, 66 +2026-05-14T15:34:57+08:00 +2026/05/14 15:34:57.262, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.27, 67 +2026-05-14T15:35:02+08:00 +2026/05/14 15:35:02.285, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.44, 66 +2026-05-14T15:35:07+08:00 +2026/05/14 15:35:07.310, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.74, 67 +2026-05-14T15:35:12+08:00 +2026/05/14 15:35:12.334, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.65, 67 +2026-05-14T15:35:17+08:00 +2026/05/14 15:35:17.358, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.43, 67 +2026-05-14T15:35:22+08:00 +2026/05/14 15:35:22.384, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 367.14, 66 +2026-05-14T15:35:27+08:00 +2026/05/14 15:35:27.409, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.56, 66 +2026-05-14T15:35:32+08:00 +2026/05/14 15:35:32.433, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.42, 66 +2026-05-14T15:35:37+08:00 +2026/05/14 15:35:37.456, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.63, 66 +2026-05-14T15:35:42+08:00 +2026/05/14 15:35:42.479, NVIDIA GeForce RTX 5090, 82, 36, 9607, 32607, 366.11, 66 +2026-05-14T15:35:47+08:00 +2026/05/14 15:35:47.503, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.43, 65 +2026-05-14T15:35:52+08:00 +2026/05/14 15:35:52.531, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.42, 67 +2026-05-14T15:35:57+08:00 +2026/05/14 15:35:57.555, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.51, 67 +2026-05-14T15:36:02+08:00 +2026/05/14 15:36:02.579, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.59, 67 +2026-05-14T15:36:07+08:00 +2026/05/14 15:36:07.603, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.24, 67 +2026-05-14T15:36:12+08:00 +2026/05/14 15:36:12.627, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.35, 67 +2026-05-14T15:36:17+08:00 +2026/05/14 15:36:17.671, NVIDIA GeForce RTX 5090, 71, 32, 9607, 32607, 252.73, 65 +2026-05-14T15:36:22+08:00 +2026/05/14 15:36:22.694, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.83, 66 +2026-05-14T15:36:27+08:00 +2026/05/14 15:36:27.717, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 273.02, 66 +2026-05-14T15:36:32+08:00 +2026/05/14 15:36:32.761, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 367.49, 66 +2026-05-14T15:36:37+08:00 +2026/05/14 15:36:37.784, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.03, 65 +2026-05-14T15:36:42+08:00 +2026/05/14 15:36:42.809, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.92, 66 +2026-05-14T15:36:47+08:00 +2026/05/14 15:36:47.853, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.91, 66 +2026-05-14T15:36:52+08:00 +2026/05/14 15:36:52.877, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.81, 67 +2026-05-14T15:36:57+08:00 +2026/05/14 15:36:57.906, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 368.53, 67 +2026-05-14T15:37:02+08:00 +2026/05/14 15:37:02.933, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.13, 67 +2026-05-14T15:37:07+08:00 +2026/05/14 15:37:07.970, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.76, 66 +2026-05-14T15:37:12+08:00 +2026/05/14 15:37:12.995, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.30, 66 +2026-05-14T15:37:18+08:00 +2026/05/14 15:37:18.019, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.31, 66 +2026-05-14T15:37:23+08:00 +2026/05/14 15:37:23.043, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.64, 65 +2026-05-14T15:37:28+08:00 +2026/05/14 15:37:28.065, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 356.74, 66 +2026-05-14T15:37:33+08:00 +2026/05/14 15:37:33.089, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.88, 67 +2026-05-14T15:37:38+08:00 +2026/05/14 15:37:38.113, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.09, 66 +2026-05-14T15:37:43+08:00 +2026/05/14 15:37:43.136, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.69, 66 +2026-05-14T15:37:48+08:00 +2026/05/14 15:37:48.161, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.45, 67 +2026-05-14T15:37:53+08:00 +2026/05/14 15:37:53.185, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.17, 67 +2026-05-14T15:37:58+08:00 +2026/05/14 15:37:58.207, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.99, 66 +2026-05-14T15:38:03+08:00 +2026/05/14 15:38:03.230, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.21, 67 +2026-05-14T15:38:08+08:00 +2026/05/14 15:38:08.256, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.82, 66 +2026-05-14T15:38:13+08:00 +2026/05/14 15:38:13.295, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.40, 67 +2026-05-14T15:38:18+08:00 +2026/05/14 15:38:18.344, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.46, 64 +2026-05-14T15:38:23+08:00 +2026/05/14 15:38:23.364, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.79, 65 +2026-05-14T15:38:28+08:00 +2026/05/14 15:38:28.435, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.80, 65 +2026-05-14T15:38:33+08:00 +2026/05/14 15:38:33.461, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.37, 65 +2026-05-14T15:38:38+08:00 +2026/05/14 15:38:38.484, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.32, 66 +2026-05-14T15:38:43+08:00 +2026/05/14 15:38:43.507, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.92, 65 +2026-05-14T15:38:48+08:00 +2026/05/14 15:38:48.527, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.67, 66 +2026-05-14T15:38:53+08:00 +2026/05/14 15:38:53.551, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.01, 66 +2026-05-14T15:38:58+08:00 +2026/05/14 15:38:58.573, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.25, 66 +2026-05-14T15:39:03+08:00 +2026/05/14 15:39:03.597, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.67, 66 +2026-05-14T15:39:08+08:00 +2026/05/14 15:39:08.623, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.24, 66 +2026-05-14T15:39:13+08:00 +2026/05/14 15:39:13.647, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.88, 66 +2026-05-14T15:39:18+08:00 +2026/05/14 15:39:18.671, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 368.97, 66 +2026-05-14T15:39:23+08:00 +2026/05/14 15:39:23.696, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.21, 67 +2026-05-14T15:39:28+08:00 +2026/05/14 15:39:28.719, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.74, 66 +2026-05-14T15:39:33+08:00 +2026/05/14 15:39:33.742, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 323.49, 60 +2026-05-14T15:39:38+08:00 +2026/05/14 15:39:38.764, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.42, 65 +2026-05-14T15:39:43+08:00 +2026/05/14 15:39:43.790, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.77, 66 +2026-05-14T15:39:48+08:00 +2026/05/14 15:39:48.815, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 367.86, 67 +2026-05-14T15:39:53+08:00 +2026/05/14 15:39:53.840, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.72, 66 +2026-05-14T15:39:58+08:00 +2026/05/14 15:39:58.865, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.86, 66 +2026-05-14T15:40:03+08:00 +2026/05/14 15:40:03.892, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.51, 66 +2026-05-14T15:40:08+08:00 +2026/05/14 15:40:08.914, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 368.92, 66 +2026-05-14T15:40:13+08:00 +2026/05/14 15:40:13.938, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.24, 66 +2026-05-14T15:40:18+08:00 +2026/05/14 15:40:18.961, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.03, 67 +2026-05-14T15:40:23+08:00 +2026/05/14 15:40:23.989, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 367.82, 66 +2026-05-14T15:40:28+08:00 +2026/05/14 15:40:29.012, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.29, 66 +2026-05-14T15:40:34+08:00 +2026/05/14 15:40:34.038, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.09, 65 +2026-05-14T15:40:39+08:00 +2026/05/14 15:40:39.065, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.11, 66 +2026-05-14T15:40:44+08:00 +2026/05/14 15:40:44.098, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.83, 66 +2026-05-14T15:40:49+08:00 +2026/05/14 15:40:49.140, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.80, 67 +2026-05-14T15:40:54+08:00 +2026/05/14 15:40:54.164, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.99, 66 +2026-05-14T15:40:59+08:00 +2026/05/14 15:40:59.188, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.85, 66 +2026-05-14T15:41:04+08:00 +2026/05/14 15:41:04.224, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.26, 66 +2026-05-14T15:41:09+08:00 +2026/05/14 15:41:09.289, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.07, 66 +2026-05-14T15:41:14+08:00 +2026/05/14 15:41:14.314, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.22, 66 +2026-05-14T15:41:19+08:00 +2026/05/14 15:41:19.338, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.98, 67 +2026-05-14T15:41:24+08:00 +2026/05/14 15:41:24.362, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.61, 66 +2026-05-14T15:41:29+08:00 +2026/05/14 15:41:29.386, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.88, 65 +2026-05-14T15:41:34+08:00 +2026/05/14 15:41:34.412, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.83, 65 +2026-05-14T15:41:39+08:00 +2026/05/14 15:41:39.435, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.49, 65 +2026-05-14T15:41:44+08:00 +2026/05/14 15:41:44.458, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.78, 65 +2026-05-14T15:41:49+08:00 +2026/05/14 15:41:49.483, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.85, 65 +2026-05-14T15:41:54+08:00 +2026/05/14 15:41:54.508, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.66, 65 +2026-05-14T15:41:59+08:00 +2026/05/14 15:41:59.536, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 65 +2026-05-14T15:42:04+08:00 +2026/05/14 15:42:04.559, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.90, 66 +2026-05-14T15:42:09+08:00 +2026/05/14 15:42:09.584, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 67 +2026-05-14T15:42:14+08:00 +2026/05/14 15:42:14.608, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.05, 66 +2026-05-14T15:42:19+08:00 +2026/05/14 15:42:19.633, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.53, 66 +2026-05-14T15:42:24+08:00 +2026/05/14 15:42:24.659, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.25, 67 +2026-05-14T15:42:29+08:00 +2026/05/14 15:42:29.683, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.88, 66 +2026-05-14T15:42:34+08:00 +2026/05/14 15:42:34.706, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.05, 67 +2026-05-14T15:42:39+08:00 +2026/05/14 15:42:39.731, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.41, 67 +2026-05-14T15:42:44+08:00 +2026/05/14 15:42:44.759, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.28, 67 +2026-05-14T15:42:49+08:00 +2026/05/14 15:42:49.783, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.06, 65 +2026-05-14T15:42:54+08:00 +2026/05/14 15:42:54.806, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.93, 65 +2026-05-14T15:42:59+08:00 +2026/05/14 15:42:59.833, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.87, 65 +2026-05-14T15:43:04+08:00 +2026/05/14 15:43:04.857, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.51, 66 +2026-05-14T15:43:09+08:00 +2026/05/14 15:43:09.881, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.51, 66 +2026-05-14T15:43:14+08:00 +2026/05/14 15:43:14.905, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.18, 66 +2026-05-14T15:43:19+08:00 +2026/05/14 15:43:19.929, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.66, 66 +2026-05-14T15:43:24+08:00 +2026/05/14 15:43:24.953, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 301.11, 59 +2026-05-14T15:43:29+08:00 +2026/05/14 15:43:29.976, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.32, 66 +2026-05-14T15:43:34+08:00 +2026/05/14 15:43:34.999, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.67, 67 +2026-05-14T15:43:40+08:00 +2026/05/14 15:43:40.024, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 367.23, 67 +2026-05-14T15:43:45+08:00 +2026/05/14 15:43:45.048, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.37, 67 +2026-05-14T15:43:50+08:00 +2026/05/14 15:43:50.070, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.75, 65 +2026-05-14T15:43:55+08:00 +2026/05/14 15:43:55.095, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.35, 66 +2026-05-14T15:44:00+08:00 +2026/05/14 15:44:00.119, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 366.98, 67 +2026-05-14T15:44:05+08:00 +2026/05/14 15:44:05.143, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.82, 66 +2026-05-14T15:44:10+08:00 +2026/05/14 15:44:10.166, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 367.01, 66 +2026-05-14T15:44:15+08:00 +2026/05/14 15:44:15.189, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.64, 67 +2026-05-14T15:44:20+08:00 +2026/05/14 15:44:20.214, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 366.96, 66 +2026-05-14T15:44:25+08:00 +2026/05/14 15:44:25.238, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.47, 67 +2026-05-14T15:44:30+08:00 +2026/05/14 15:44:30.261, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 368.54, 66 +2026-05-14T15:44:35+08:00 +2026/05/14 15:44:35.285, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.33, 66 +2026-05-14T15:44:40+08:00 +2026/05/14 15:44:40.308, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 303.96, 66 +2026-05-14T15:44:45+08:00 +2026/05/14 15:44:45.333, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 367.02, 67 +2026-05-14T15:44:50+08:00 +2026/05/14 15:44:50.360, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.30, 67 +2026-05-14T15:44:55+08:00 +2026/05/14 15:44:55.384, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.67, 66 +2026-05-14T15:45:00+08:00 +2026/05/14 15:45:00.410, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.87, 66 +2026-05-14T15:45:05+08:00 +2026/05/14 15:45:05.438, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.97, 67 +2026-05-14T15:45:10+08:00 +2026/05/14 15:45:10.464, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.43, 67 +2026-05-14T15:45:15+08:00 +2026/05/14 15:45:15.487, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.44, 66 +2026-05-14T15:45:20+08:00 +2026/05/14 15:45:20.511, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.43, 66 +2026-05-14T15:45:25+08:00 +2026/05/14 15:45:25.543, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 366.33, 66 +2026-05-14T15:45:30+08:00 +2026/05/14 15:45:30.566, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.64, 65 +2026-05-14T15:45:35+08:00 +2026/05/14 15:45:35.591, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.90, 66 +2026-05-14T15:45:40+08:00 +2026/05/14 15:45:40.615, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.54, 67 +2026-05-14T15:45:45+08:00 +2026/05/14 15:45:45.640, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.30, 66 +2026-05-14T15:45:50+08:00 +2026/05/14 15:45:50.664, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.65, 66 +2026-05-14T15:45:55+08:00 +2026/05/14 15:45:55.689, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.56, 66 +2026-05-14T15:46:00+08:00 +2026/05/14 15:46:00.714, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.82, 67 +2026-05-14T15:46:05+08:00 +2026/05/14 15:46:05.738, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 342.10, 60 +2026-05-14T15:46:10+08:00 +2026/05/14 15:46:10.763, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.19, 66 +2026-05-14T15:46:15+08:00 +2026/05/14 15:46:15.789, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 367.79, 66 +2026-05-14T15:46:20+08:00 +2026/05/14 15:46:20.813, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.02, 67 +2026-05-14T15:46:25+08:00 +2026/05/14 15:46:25.837, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.90, 65 +2026-05-14T15:46:30+08:00 +2026/05/14 15:46:30.862, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 325.48, 66 +2026-05-14T15:46:35+08:00 +2026/05/14 15:46:35.887, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.49, 66 +2026-05-14T15:46:40+08:00 +2026/05/14 15:46:40.912, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.05, 66 +2026-05-14T15:46:45+08:00 +2026/05/14 15:46:45.936, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.98, 66 +2026-05-14T15:46:50+08:00 +2026/05/14 15:46:50.959, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.73, 66 +2026-05-14T15:46:55+08:00 +2026/05/14 15:46:55.983, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.13, 65 +2026-05-14T15:47:00+08:00 +2026/05/14 15:47:01.007, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 367.63, 66 +2026-05-14T15:47:06+08:00 +2026/05/14 15:47:06.031, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.21, 67 +2026-05-14T15:47:11+08:00 +2026/05/14 15:47:11.056, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.75, 66 +2026-05-14T15:47:16+08:00 +2026/05/14 15:47:16.081, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.07, 67 +2026-05-14T15:47:21+08:00 +2026/05/14 15:47:21.104, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 367.99, 66 +2026-05-14T15:47:26+08:00 +2026/05/14 15:47:26.127, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.15, 65 +2026-05-14T15:47:31+08:00 +2026/05/14 15:47:31.152, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.95, 66 +2026-05-14T15:47:36+08:00 +2026/05/14 15:47:36.175, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.79, 66 +2026-05-14T15:47:41+08:00 +2026/05/14 15:47:41.200, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.91, 65 +2026-05-14T15:47:46+08:00 +2026/05/14 15:47:46.226, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.21, 66 +2026-05-14T15:47:51+08:00 +2026/05/14 15:47:51.249, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.12, 66 +2026-05-14T15:47:56+08:00 +2026/05/14 15:47:56.273, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.08, 66 +2026-05-14T15:48:01+08:00 +2026/05/14 15:48:01.300, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.74, 67 +2026-05-14T15:48:06+08:00 +2026/05/14 15:48:06.323, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 364.72, 66 +2026-05-14T15:48:11+08:00 +2026/05/14 15:48:11.346, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 366.83, 66 +2026-05-14T15:48:16+08:00 +2026/05/14 15:48:16.370, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.01, 65 +2026-05-14T15:48:21+08:00 +2026/05/14 15:48:21.393, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 364.06, 66 +2026-05-14T15:48:26+08:00 +2026/05/14 15:48:26.417, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.59, 67 +2026-05-14T15:48:31+08:00 +2026/05/14 15:48:31.440, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.92, 66 +2026-05-14T15:48:36+08:00 +2026/05/14 15:48:36.463, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.59, 66 +2026-05-14T15:48:41+08:00 +2026/05/14 15:48:41.486, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.09, 67 +2026-05-14T15:48:46+08:00 +2026/05/14 15:48:46.507, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.53, 67 +2026-05-14T15:48:51+08:00 +2026/05/14 15:48:51.531, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.90, 66 +2026-05-14T15:48:56+08:00 +2026/05/14 15:48:56.555, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.99, 67 +2026-05-14T15:49:01+08:00 +2026/05/14 15:49:01.579, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.41, 66 +2026-05-14T15:49:06+08:00 +2026/05/14 15:49:06.602, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.62, 67 +2026-05-14T15:49:11+08:00 +2026/05/14 15:49:11.626, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.92, 66 +2026-05-14T15:49:16+08:00 +2026/05/14 15:49:16.650, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.66, 67 +2026-05-14T15:49:21+08:00 +2026/05/14 15:49:21.674, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.57, 66 +2026-05-14T15:49:26+08:00 +2026/05/14 15:49:26.696, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.81, 66 +2026-05-14T15:49:31+08:00 +2026/05/14 15:49:31.720, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.18, 66 +2026-05-14T15:49:36+08:00 +2026/05/14 15:49:36.742, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 363.74, 67 +2026-05-14T15:49:41+08:00 +2026/05/14 15:49:41.769, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.53, 65 +2026-05-14T15:49:46+08:00 +2026/05/14 15:49:46.795, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.04, 65 +2026-05-14T15:49:51+08:00 +2026/05/14 15:49:51.820, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.34, 66 +2026-05-14T15:49:56+08:00 +2026/05/14 15:49:56.843, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.36, 66 +2026-05-14T15:50:01+08:00 +2026/05/14 15:50:01.884, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.27, 65 +2026-05-14T15:50:06+08:00 +2026/05/14 15:50:06.907, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.87, 67 +2026-05-14T15:50:11+08:00 +2026/05/14 15:50:11.931, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.57, 66 +2026-05-14T15:50:16+08:00 +2026/05/14 15:50:16.956, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 197.93, 64 +2026-05-14T15:50:21+08:00 +2026/05/14 15:50:22.029, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.66, 67 +2026-05-14T15:50:27+08:00 +2026/05/14 15:50:27.055, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.20, 66 +2026-05-14T15:50:32+08:00 +2026/05/14 15:50:32.096, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.24, 66 +2026-05-14T15:50:37+08:00 +2026/05/14 15:50:37.120, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.93, 66 +2026-05-14T15:50:42+08:00 +2026/05/14 15:50:42.144, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.23, 67 +2026-05-14T15:50:47+08:00 +2026/05/14 15:50:47.168, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.40, 67 +2026-05-14T15:50:52+08:00 +2026/05/14 15:50:52.208, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.98, 66 +2026-05-14T15:50:57+08:00 +2026/05/14 15:50:57.232, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 365.28, 67 +2026-05-14T15:51:02+08:00 +2026/05/14 15:51:02.258, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.46, 67 +2026-05-14T15:51:07+08:00 +2026/05/14 15:51:07.284, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 357.49, 66 +2026-05-14T15:51:12+08:00 +2026/05/14 15:51:12.309, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.91, 67 +2026-05-14T15:51:17+08:00 +2026/05/14 15:51:17.332, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.30, 66 +2026-05-14T15:51:22+08:00 +2026/05/14 15:51:22.359, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.65, 67 +2026-05-14T15:51:27+08:00 +2026/05/14 15:51:27.384, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.24, 66 +2026-05-14T15:51:32+08:00 +2026/05/14 15:51:32.409, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.67, 66 +2026-05-14T15:51:37+08:00 +2026/05/14 15:51:37.429, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.52, 65 +2026-05-14T15:51:42+08:00 +2026/05/14 15:51:42.480, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.98, 65 +2026-05-14T15:51:47+08:00 +2026/05/14 15:51:47.505, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.65, 66 +2026-05-14T15:51:52+08:00 +2026/05/14 15:51:52.563, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.71, 66 +2026-05-14T15:51:57+08:00 +2026/05/14 15:51:57.586, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.90, 66 +2026-05-14T15:52:02+08:00 +2026/05/14 15:52:02.661, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.71, 66 +2026-05-14T15:52:07+08:00 +2026/05/14 15:52:07.685, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.88, 66 +2026-05-14T15:52:12+08:00 +2026/05/14 15:52:12.727, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.04, 65 +2026-05-14T15:52:17+08:00 +2026/05/14 15:52:17.773, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 366.14, 66 +2026-05-14T15:52:22+08:00 +2026/05/14 15:52:22.798, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 361.45, 65 +2026-05-14T15:52:27+08:00 +2026/05/14 15:52:27.821, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.93, 66 +2026-05-14T15:52:32+08:00 +2026/05/14 15:52:32.844, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.05, 67 +2026-05-14T15:52:37+08:00 +2026/05/14 15:52:37.868, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 366.92, 66 +2026-05-14T15:52:42+08:00 +2026/05/14 15:52:42.890, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.67, 67 +2026-05-14T15:52:47+08:00 +2026/05/14 15:52:47.915, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.38, 65 +2026-05-14T15:52:52+08:00 +2026/05/14 15:52:52.956, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.75, 66 +2026-05-14T15:52:57+08:00 +2026/05/14 15:52:57.998, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.58, 66 +2026-05-14T15:53:03+08:00 +2026/05/14 15:53:03.072, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.83, 65 +2026-05-14T15:53:08+08:00 +2026/05/14 15:53:08.096, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.88, 65 +2026-05-14T15:53:13+08:00 +2026/05/14 15:53:13.139, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.28, 66 +2026-05-14T15:53:18+08:00 +2026/05/14 15:53:18.212, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.17, 67 +2026-05-14T15:53:23+08:00 +2026/05/14 15:53:23.271, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.82, 66 +2026-05-14T15:53:28+08:00 +2026/05/14 15:53:28.294, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.96, 65 +2026-05-14T15:53:33+08:00 +2026/05/14 15:53:33.318, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.68, 67 +2026-05-14T15:53:38+08:00 +2026/05/14 15:53:38.361, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.10, 66 +2026-05-14T15:53:43+08:00 +2026/05/14 15:53:43.409, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.99, 67 +2026-05-14T15:53:48+08:00 +2026/05/14 15:53:48.433, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 365.30, 66 +2026-05-14T15:53:53+08:00 +2026/05/14 15:53:53.474, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 364.67, 66 +2026-05-14T15:53:58+08:00 +2026/05/14 15:53:58.497, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.67, 67 +2026-05-14T15:54:03+08:00 +2026/05/14 15:54:03.521, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.73, 66 +2026-05-14T15:54:08+08:00 +2026/05/14 15:54:08.546, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.45, 66 +2026-05-14T15:54:13+08:00 +2026/05/14 15:54:13.568, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.58, 67 +2026-05-14T15:54:18+08:00 +2026/05/14 15:54:18.595, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.41, 66 +2026-05-14T15:54:23+08:00 +2026/05/14 15:54:23.618, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.03, 66 +2026-05-14T15:54:28+08:00 +2026/05/14 15:54:28.643, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.90, 67 +2026-05-14T15:54:33+08:00 +2026/05/14 15:54:33.666, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.41, 66 +2026-05-14T15:54:38+08:00 +2026/05/14 15:54:38.690, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.83, 66 +2026-05-14T15:54:43+08:00 +2026/05/14 15:54:43.713, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.47, 66 +2026-05-14T15:54:48+08:00 +2026/05/14 15:54:48.734, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.27, 66 +2026-05-14T15:54:53+08:00 +2026/05/14 15:54:53.759, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.74, 66 +2026-05-14T15:54:58+08:00 +2026/05/14 15:54:58.780, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 365.58, 66 +2026-05-14T15:55:03+08:00 +2026/05/14 15:55:03.803, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.45, 67 +2026-05-14T15:55:08+08:00 +2026/05/14 15:55:08.827, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 368.20, 67 +2026-05-14T15:55:13+08:00 +2026/05/14 15:55:13.851, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.69, 67 +2026-05-14T15:55:18+08:00 +2026/05/14 15:55:18.877, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.00, 66 +2026-05-14T15:55:23+08:00 +2026/05/14 15:55:23.903, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 365.81, 66 +2026-05-14T15:55:28+08:00 +2026/05/14 15:55:28.928, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 366.34, 67 +2026-05-14T15:55:33+08:00 +2026/05/14 15:55:33.950, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 366.50, 66 +2026-05-14T15:55:38+08:00 +2026/05/14 15:55:38.976, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.74, 67 +2026-05-14T15:55:43+08:00 +2026/05/14 15:55:44.002, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.42, 66 +2026-05-14T15:55:49+08:00 +2026/05/14 15:55:49.026, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.85, 65 +2026-05-14T15:55:54+08:00 +2026/05/14 15:55:54.050, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.92, 66 +2026-05-14T15:55:59+08:00 +2026/05/14 15:55:59.074, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 233.56, 66 +2026-05-14T15:56:04+08:00 +2026/05/14 15:56:04.098, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.68, 66 +2026-05-14T15:56:09+08:00 +2026/05/14 15:56:09.123, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.53, 66 +2026-05-14T15:56:14+08:00 +2026/05/14 15:56:14.151, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.82, 65 +2026-05-14T15:56:19+08:00 +2026/05/14 15:56:19.176, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 65 +2026-05-14T15:56:24+08:00 +2026/05/14 15:56:24.202, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.33, 66 +2026-05-14T15:56:29+08:00 +2026/05/14 15:56:29.226, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 368.18, 67 +2026-05-14T15:56:34+08:00 +2026/05/14 15:56:34.250, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.28, 66 +2026-05-14T15:56:39+08:00 +2026/05/14 15:56:39.273, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.25, 66 +2026-05-14T15:56:44+08:00 +2026/05/14 15:56:44.297, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.23, 67 +2026-05-14T15:56:49+08:00 +2026/05/14 15:56:49.320, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.00, 66 +2026-05-14T15:56:54+08:00 +2026/05/14 15:56:54.343, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.08, 66 +2026-05-14T15:56:59+08:00 +2026/05/14 15:56:59.367, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.31, 67 +2026-05-14T15:57:04+08:00 +2026/05/14 15:57:04.393, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.40, 67 +2026-05-14T15:57:09+08:00 +2026/05/14 15:57:09.418, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.63, 66 +2026-05-14T15:57:14+08:00 +2026/05/14 15:57:14.443, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.76, 66 +2026-05-14T15:57:19+08:00 +2026/05/14 15:57:19.467, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.18, 65 +2026-05-14T15:57:24+08:00 +2026/05/14 15:57:24.494, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 66 +2026-05-14T15:57:29+08:00 +2026/05/14 15:57:29.526, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.92, 66 +2026-05-14T15:57:34+08:00 +2026/05/14 15:57:34.549, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.82, 66 +2026-05-14T15:57:39+08:00 +2026/05/14 15:57:39.574, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.52, 66 +2026-05-14T15:57:44+08:00 +2026/05/14 15:57:44.597, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.51, 67 +2026-05-14T15:57:49+08:00 +2026/05/14 15:57:49.621, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.00, 66 +2026-05-14T15:57:54+08:00 +2026/05/14 15:57:54.649, NVIDIA GeForce RTX 5090, 1, 0, 9607, 32607, 253.25, 64 +2026-05-14T15:57:59+08:00 +2026/05/14 15:57:59.677, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.27, 66 +2026-05-14T15:58:04+08:00 +2026/05/14 15:58:04.703, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 366.66, 66 +2026-05-14T15:58:09+08:00 +2026/05/14 15:58:09.728, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 366.56, 66 +2026-05-14T15:58:14+08:00 +2026/05/14 15:58:14.754, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.36, 65 +2026-05-14T15:58:19+08:00 +2026/05/14 15:58:19.778, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.43, 66 +2026-05-14T15:58:24+08:00 +2026/05/14 15:58:24.803, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.60, 67 +2026-05-14T15:58:29+08:00 +2026/05/14 15:58:29.827, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 368.08, 66 +2026-05-14T15:58:34+08:00 +2026/05/14 15:58:34.850, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 266.77, 65 +2026-05-14T15:58:39+08:00 +2026/05/14 15:58:39.874, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.48, 66 +2026-05-14T15:58:44+08:00 +2026/05/14 15:58:44.905, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.14, 67 +2026-05-14T15:58:49+08:00 +2026/05/14 15:58:49.928, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 365.33, 66 +2026-05-14T15:58:54+08:00 +2026/05/14 15:58:54.953, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.87, 67 +2026-05-14T15:58:59+08:00 +2026/05/14 15:58:59.977, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.81, 66 +2026-05-14T15:59:04+08:00 +2026/05/14 15:59:05.002, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.10, 66 +2026-05-14T15:59:10+08:00 +2026/05/14 15:59:10.031, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.27, 66 +2026-05-14T15:59:15+08:00 +2026/05/14 15:59:15.054, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.56, 66 +2026-05-14T15:59:20+08:00 +2026/05/14 15:59:20.078, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.60, 66 +2026-05-14T15:59:25+08:00 +2026/05/14 15:59:25.102, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.76, 66 +2026-05-14T15:59:30+08:00 +2026/05/14 15:59:30.145, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.27, 67 +2026-05-14T15:59:35+08:00 +2026/05/14 15:59:35.187, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.05, 67 +2026-05-14T15:59:40+08:00 +2026/05/14 15:59:40.211, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.41, 66 +2026-05-14T15:59:45+08:00 +2026/05/14 15:59:45.235, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.92, 66 +2026-05-14T15:59:50+08:00 +2026/05/14 15:59:50.258, NVIDIA GeForce RTX 5090, 1, 0, 9607, 32607, 304.87, 59 +2026-05-14T15:59:55+08:00 +2026/05/14 15:59:55.282, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.96, 65 +2026-05-14T16:00:00+08:00 +2026/05/14 16:00:00.306, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.98, 65 +2026-05-14T16:00:05+08:00 +2026/05/14 16:00:05.332, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.71, 66 +2026-05-14T16:00:10+08:00 +2026/05/14 16:00:10.355, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.00, 66 +2026-05-14T16:00:15+08:00 +2026/05/14 16:00:15.380, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.79, 66 +2026-05-14T16:00:20+08:00 +2026/05/14 16:00:20.407, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.30, 67 +2026-05-14T16:00:25+08:00 +2026/05/14 16:00:25.430, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.32, 66 +2026-05-14T16:00:30+08:00 +2026/05/14 16:00:30.454, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.41, 66 +2026-05-14T16:00:35+08:00 +2026/05/14 16:00:35.494, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 368.14, 66 +2026-05-14T16:00:40+08:00 +2026/05/14 16:00:40.535, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.24, 66 +2026-05-14T16:00:45+08:00 +2026/05/14 16:00:45.561, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.59, 66 +2026-05-14T16:00:50+08:00 +2026/05/14 16:00:50.601, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.73, 66 +2026-05-14T16:00:55+08:00 +2026/05/14 16:00:55.628, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.38, 66 +2026-05-14T16:01:00+08:00 +2026/05/14 16:01:00.669, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.36, 66 +2026-05-14T16:01:05+08:00 +2026/05/14 16:01:05.744, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.39, 67 +2026-05-14T16:01:10+08:00 +2026/05/14 16:01:10.768, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.33, 66 +2026-05-14T16:01:15+08:00 +2026/05/14 16:01:15.790, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.78, 67 +2026-05-14T16:01:20+08:00 +2026/05/14 16:01:20.834, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.50, 65 +2026-05-14T16:01:25+08:00 +2026/05/14 16:01:25.906, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.74, 66 +2026-05-14T16:01:30+08:00 +2026/05/14 16:01:30.928, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.69, 65 +2026-05-14T16:01:35+08:00 +2026/05/14 16:01:35.982, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.83, 65 +2026-05-14T16:01:40+08:00 +2026/05/14 16:01:41.008, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.97, 66 +2026-05-14T16:01:46+08:00 +2026/05/14 16:01:46.047, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 362.83, 65 +2026-05-14T16:01:51+08:00 +2026/05/14 16:01:51.090, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 345.05, 66 +2026-05-14T16:01:56+08:00 +2026/05/14 16:01:56.130, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.01, 66 +2026-05-14T16:02:01+08:00 +2026/05/14 16:02:01.172, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.01, 66 +2026-05-14T16:02:06+08:00 +2026/05/14 16:02:06.246, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.24, 67 +2026-05-14T16:02:11+08:00 +2026/05/14 16:02:11.269, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.49, 66 +2026-05-14T16:02:16+08:00 +2026/05/14 16:02:16.348, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.96, 66 +2026-05-14T16:02:21+08:00 +2026/05/14 16:02:21.371, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.55, 66 +2026-05-14T16:02:26+08:00 +2026/05/14 16:02:26.397, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.85, 66 +2026-05-14T16:02:31+08:00 +2026/05/14 16:02:31.423, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.78, 66 +2026-05-14T16:02:36+08:00 +2026/05/14 16:02:36.446, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.93, 66 +2026-05-14T16:02:41+08:00 +2026/05/14 16:02:41.470, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 367.20, 67 +2026-05-14T16:02:46+08:00 +2026/05/14 16:02:46.494, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.03, 66 +2026-05-14T16:02:51+08:00 +2026/05/14 16:02:51.522, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.50, 65 +2026-05-14T16:02:56+08:00 +2026/05/14 16:02:56.550, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.47, 66 +2026-05-14T16:03:01+08:00 +2026/05/14 16:03:01.574, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 367.08, 67 +2026-05-14T16:03:06+08:00 +2026/05/14 16:03:06.598, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.23, 67 +2026-05-14T16:03:11+08:00 +2026/05/14 16:03:11.623, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 344.67, 66 +2026-05-14T16:03:16+08:00 +2026/05/14 16:03:16.647, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.75, 67 +2026-05-14T16:03:21+08:00 +2026/05/14 16:03:21.671, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.96, 67 +2026-05-14T16:03:26+08:00 +2026/05/14 16:03:26.695, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.38, 67 +2026-05-14T16:03:31+08:00 +2026/05/14 16:03:31.719, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.10, 67 +2026-05-14T16:03:36+08:00 +2026/05/14 16:03:36.743, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.24, 65 +2026-05-14T16:03:41+08:00 +2026/05/14 16:03:41.767, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.92, 66 +2026-05-14T16:03:46+08:00 +2026/05/14 16:03:46.790, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.68, 66 +2026-05-14T16:03:51+08:00 +2026/05/14 16:03:51.814, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.66, 66 +2026-05-14T16:03:56+08:00 +2026/05/14 16:03:56.838, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.36, 66 +2026-05-14T16:04:01+08:00 +2026/05/14 16:04:01.864, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 366.91, 67 +2026-05-14T16:04:06+08:00 +2026/05/14 16:04:06.890, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.66, 65 +2026-05-14T16:04:11+08:00 +2026/05/14 16:04:11.914, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.98, 66 +2026-05-14T16:04:16+08:00 +2026/05/14 16:04:16.942, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.36, 66 +2026-05-14T16:04:21+08:00 +2026/05/14 16:04:21.966, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.63, 67 +2026-05-14T16:04:26+08:00 +2026/05/14 16:04:26.991, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.71, 66 +2026-05-14T16:04:31+08:00 +2026/05/14 16:04:32.014, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.64, 67 +2026-05-14T16:04:37+08:00 +2026/05/14 16:04:37.036, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.38, 66 +2026-05-14T16:04:42+08:00 +2026/05/14 16:04:42.059, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.23, 66 +2026-05-14T16:04:47+08:00 +2026/05/14 16:04:47.083, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.08, 65 +2026-05-14T16:04:52+08:00 +2026/05/14 16:04:52.125, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.90, 64 +2026-05-14T16:04:57+08:00 +2026/05/14 16:04:57.165, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.62, 65 +2026-05-14T16:05:02+08:00 +2026/05/14 16:05:02.189, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.17, 66 +2026-05-14T16:05:07+08:00 +2026/05/14 16:05:07.215, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.95, 66 +2026-05-14T16:05:12+08:00 +2026/05/14 16:05:12.241, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 66 +2026-05-14T16:05:17+08:00 +2026/05/14 16:05:17.283, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.91, 66 +2026-05-14T16:05:22+08:00 +2026/05/14 16:05:22.310, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.33, 67 +2026-05-14T16:05:27+08:00 +2026/05/14 16:05:27.335, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 233.21, 64 +2026-05-14T16:05:32+08:00 +2026/05/14 16:05:32.359, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.53, 66 +2026-05-14T16:05:37+08:00 +2026/05/14 16:05:37.383, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.39, 66 +2026-05-14T16:05:42+08:00 +2026/05/14 16:05:42.408, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.11, 65 +2026-05-14T16:05:47+08:00 +2026/05/14 16:05:47.431, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.44, 65 +2026-05-14T16:05:52+08:00 +2026/05/14 16:05:52.456, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.19, 66 +2026-05-14T16:05:57+08:00 +2026/05/14 16:05:57.480, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.62, 66 +2026-05-14T16:06:02+08:00 +2026/05/14 16:06:02.504, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.49, 66 +2026-05-14T16:06:07+08:00 +2026/05/14 16:06:07.528, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.61, 66 +2026-05-14T16:06:12+08:00 +2026/05/14 16:06:12.552, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.41, 65 +2026-05-14T16:06:17+08:00 +2026/05/14 16:06:17.575, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.36, 67 +2026-05-14T16:06:22+08:00 +2026/05/14 16:06:22.598, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.71, 64 +2026-05-14T16:06:27+08:00 +2026/05/14 16:06:27.624, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.74, 65 +2026-05-14T16:06:32+08:00 +2026/05/14 16:06:32.656, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.25, 65 +2026-05-14T16:06:37+08:00 +2026/05/14 16:06:37.699, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.30, 65 +2026-05-14T16:06:42+08:00 +2026/05/14 16:06:42.748, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.90, 65 +2026-05-14T16:06:47+08:00 +2026/05/14 16:06:47.791, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.74, 65 +2026-05-14T16:06:52+08:00 +2026/05/14 16:06:52.814, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 364.25, 65 +2026-05-14T16:06:57+08:00 +2026/05/14 16:06:57.858, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 285.90, 60 +2026-05-14T16:07:02+08:00 +2026/05/14 16:07:02.886, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.68, 65 +2026-05-14T16:07:07+08:00 +2026/05/14 16:07:07.928, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.27, 66 +2026-05-14T16:07:12+08:00 +2026/05/14 16:07:13.004, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.67, 65 +2026-05-14T16:07:18+08:00 +2026/05/14 16:07:18.030, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.43, 66 +2026-05-14T16:07:23+08:00 +2026/05/14 16:07:23.052, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.36, 66 +2026-05-14T16:07:28+08:00 +2026/05/14 16:07:28.075, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.71, 66 +2026-05-14T16:07:33+08:00 +2026/05/14 16:07:33.098, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 357.02, 66 +2026-05-14T16:07:38+08:00 +2026/05/14 16:07:38.124, NVIDIA GeForce RTX 5090, 51, 25, 9607, 32607, 347.13, 60 +2026-05-14T16:07:43+08:00 +2026/05/14 16:07:43.145, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.03, 67 +2026-05-14T16:07:48+08:00 +2026/05/14 16:07:48.170, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.27, 66 +2026-05-14T16:07:53+08:00 +2026/05/14 16:07:53.195, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.88, 66 +2026-05-14T16:07:58+08:00 +2026/05/14 16:07:58.218, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.21, 66 +2026-05-14T16:08:03+08:00 +2026/05/14 16:08:03.241, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.77, 67 +2026-05-14T16:08:08+08:00 +2026/05/14 16:08:08.266, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.39, 66 +2026-05-14T16:08:13+08:00 +2026/05/14 16:08:13.289, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.98, 65 +2026-05-14T16:08:18+08:00 +2026/05/14 16:08:18.332, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 366.43, 66 +2026-05-14T16:08:23+08:00 +2026/05/14 16:08:23.354, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.95, 66 +2026-05-14T16:08:28+08:00 +2026/05/14 16:08:28.377, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.03, 66 +2026-05-14T16:08:33+08:00 +2026/05/14 16:08:33.400, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 294.01, 66 +2026-05-14T16:08:38+08:00 +2026/05/14 16:08:38.424, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.89, 66 +2026-05-14T16:08:43+08:00 +2026/05/14 16:08:43.447, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.03, 66 +2026-05-14T16:08:48+08:00 +2026/05/14 16:08:48.470, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.99, 66 +2026-05-14T16:08:53+08:00 +2026/05/14 16:08:53.493, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 261.84, 62 +2026-05-14T16:08:58+08:00 +2026/05/14 16:08:58.517, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.02, 66 +2026-05-14T16:09:03+08:00 +2026/05/14 16:09:03.543, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.87, 66 +2026-05-14T16:09:08+08:00 +2026/05/14 16:09:08.567, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.22, 65 +2026-05-14T16:09:13+08:00 +2026/05/14 16:09:13.592, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.81, 65 +2026-05-14T16:09:18+08:00 +2026/05/14 16:09:18.615, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.63, 66 +2026-05-14T16:09:23+08:00 +2026/05/14 16:09:23.639, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.75, 66 +2026-05-14T16:09:28+08:00 +2026/05/14 16:09:28.661, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.23, 66 +2026-05-14T16:09:33+08:00 +2026/05/14 16:09:33.685, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.32, 66 +2026-05-14T16:09:38+08:00 +2026/05/14 16:09:38.710, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.60, 66 +2026-05-14T16:09:43+08:00 +2026/05/14 16:09:43.733, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.82, 66 +2026-05-14T16:09:48+08:00 +2026/05/14 16:09:48.758, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 365.77, 66 +2026-05-14T16:09:53+08:00 +2026/05/14 16:09:53.781, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.40, 66 +2026-05-14T16:09:58+08:00 +2026/05/14 16:09:58.805, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.74, 66 +2026-05-14T16:10:03+08:00 +2026/05/14 16:10:03.829, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.35, 66 +2026-05-14T16:10:08+08:00 +2026/05/14 16:10:08.854, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 345.89, 60 +2026-05-14T16:10:13+08:00 +2026/05/14 16:10:13.878, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.17, 67 +2026-05-14T16:10:18+08:00 +2026/05/14 16:10:18.905, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.98, 66 +2026-05-14T16:10:23+08:00 +2026/05/14 16:10:23.929, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 369.07, 67 +2026-05-14T16:10:28+08:00 +2026/05/14 16:10:28.952, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.26, 66 +2026-05-14T16:10:33+08:00 +2026/05/14 16:10:33.977, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.56, 66 +2026-05-14T16:10:38+08:00 +2026/05/14 16:10:39.001, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.04, 67 +2026-05-14T16:10:44+08:00 +2026/05/14 16:10:44.025, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.85, 66 +2026-05-14T16:10:49+08:00 +2026/05/14 16:10:49.051, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.18, 66 +2026-05-14T16:10:54+08:00 +2026/05/14 16:10:54.075, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 367.43, 66 +2026-05-14T16:10:59+08:00 +2026/05/14 16:10:59.103, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.61, 66 +2026-05-14T16:11:04+08:00 +2026/05/14 16:11:04.133, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.95, 66 +2026-05-14T16:11:09+08:00 +2026/05/14 16:11:09.158, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.72, 66 +2026-05-14T16:11:14+08:00 +2026/05/14 16:11:14.181, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.50, 67 +2026-05-14T16:11:19+08:00 +2026/05/14 16:11:19.203, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 366.58, 66 +2026-05-14T16:11:24+08:00 +2026/05/14 16:11:24.229, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 323.24, 66 +2026-05-14T16:11:29+08:00 +2026/05/14 16:11:29.252, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.83, 66 +2026-05-14T16:11:34+08:00 +2026/05/14 16:11:34.276, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.69, 66 +2026-05-14T16:11:39+08:00 +2026/05/14 16:11:39.298, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.64, 66 +2026-05-14T16:11:44+08:00 +2026/05/14 16:11:44.328, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.38, 65 +2026-05-14T16:11:49+08:00 +2026/05/14 16:11:49.355, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.72, 65 +2026-05-14T16:11:54+08:00 +2026/05/14 16:11:54.379, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.81, 66 +2026-05-14T16:11:59+08:00 +2026/05/14 16:11:59.402, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.63, 66 +2026-05-14T16:12:04+08:00 +2026/05/14 16:12:04.428, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 333.73, 66 +2026-05-14T16:12:09+08:00 +2026/05/14 16:12:09.454, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 65 +2026-05-14T16:12:14+08:00 +2026/05/14 16:12:14.477, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.39, 65 +2026-05-14T16:12:19+08:00 +2026/05/14 16:12:19.500, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.88, 65 +2026-05-14T16:12:24+08:00 +2026/05/14 16:12:24.525, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.65, 66 +2026-05-14T16:12:29+08:00 +2026/05/14 16:12:29.549, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.64, 66 +2026-05-14T16:12:34+08:00 +2026/05/14 16:12:34.572, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.93, 66 +2026-05-14T16:12:39+08:00 +2026/05/14 16:12:39.596, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.53, 66 +2026-05-14T16:12:44+08:00 +2026/05/14 16:12:44.619, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 254.72, 66 +2026-05-14T16:12:49+08:00 +2026/05/14 16:12:49.642, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.60, 65 +2026-05-14T16:12:54+08:00 +2026/05/14 16:12:54.665, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.68, 66 +2026-05-14T16:12:59+08:00 +2026/05/14 16:12:59.694, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.08, 66 +2026-05-14T16:13:04+08:00 +2026/05/14 16:13:04.720, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.76, 65 +2026-05-14T16:13:09+08:00 +2026/05/14 16:13:09.745, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.17, 66 +2026-05-14T16:13:14+08:00 +2026/05/14 16:13:14.770, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.88, 66 +2026-05-14T16:13:19+08:00 +2026/05/14 16:13:19.792, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.41, 65 +2026-05-14T16:13:24+08:00 +2026/05/14 16:13:24.816, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 357.12, 65 +2026-05-14T16:13:29+08:00 +2026/05/14 16:13:29.840, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.19, 65 +2026-05-14T16:13:34+08:00 +2026/05/14 16:13:34.863, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.28, 66 +2026-05-14T16:13:39+08:00 +2026/05/14 16:13:39.887, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.92, 64 +2026-05-14T16:13:44+08:00 +2026/05/14 16:13:44.915, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.24, 66 +2026-05-14T16:13:49+08:00 +2026/05/14 16:13:49.938, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 368.53, 67 +2026-05-14T16:13:54+08:00 +2026/05/14 16:13:54.963, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.76, 66 +2026-05-14T16:13:59+08:00 +2026/05/14 16:13:59.987, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 367.11, 65 +2026-05-14T16:14:04+08:00 +2026/05/14 16:14:05.011, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.64, 66 +2026-05-14T16:14:10+08:00 +2026/05/14 16:14:10.034, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.54, 65 +2026-05-14T16:14:15+08:00 +2026/05/14 16:14:15.058, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.37, 66 +2026-05-14T16:14:20+08:00 +2026/05/14 16:14:20.082, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.37, 67 +2026-05-14T16:14:25+08:00 +2026/05/14 16:14:25.109, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 368.24, 66 +2026-05-14T16:14:30+08:00 +2026/05/14 16:14:30.152, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.12, 66 +2026-05-14T16:14:35+08:00 +2026/05/14 16:14:35.193, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.11, 66 +2026-05-14T16:14:40+08:00 +2026/05/14 16:14:40.220, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 353.20, 66 +2026-05-14T16:14:45+08:00 +2026/05/14 16:14:45.244, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.18, 66 +2026-05-14T16:14:50+08:00 +2026/05/14 16:14:50.285, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.28, 66 +2026-05-14T16:14:55+08:00 +2026/05/14 16:14:55.308, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 368.75, 66 +2026-05-14T16:15:00+08:00 +2026/05/14 16:15:00.359, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.52, 66 +2026-05-14T16:15:05+08:00 +2026/05/14 16:15:05.382, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 368.69, 66 +2026-05-14T16:15:10+08:00 +2026/05/14 16:15:10.441, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.48, 66 +2026-05-14T16:15:15+08:00 +2026/05/14 16:15:15.465, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 367.57, 66 +2026-05-14T16:15:20+08:00 +2026/05/14 16:15:20.510, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.89, 65 +2026-05-14T16:15:25+08:00 +2026/05/14 16:15:25.563, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 369.00, 66 +2026-05-14T16:15:30+08:00 +2026/05/14 16:15:30.588, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.49, 66 +2026-05-14T16:15:35+08:00 +2026/05/14 16:15:35.635, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.58, 67 +2026-05-14T16:15:40+08:00 +2026/05/14 16:15:40.663, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 367.62, 67 +2026-05-14T16:15:45+08:00 +2026/05/14 16:15:45.702, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 367.69, 67 +2026-05-14T16:15:50+08:00 +2026/05/14 16:15:50.763, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.35, 65 +2026-05-14T16:15:55+08:00 +2026/05/14 16:15:55.819, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.96, 66 +2026-05-14T16:16:00+08:00 +2026/05/14 16:16:00.843, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 367.27, 66 +2026-05-14T16:16:05+08:00 +2026/05/14 16:16:05.885, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.70, 66 +2026-05-14T16:16:10+08:00 +2026/05/14 16:16:10.962, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.42, 66 +2026-05-14T16:16:15+08:00 +2026/05/14 16:16:15.986, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 368.33, 67 +2026-05-14T16:16:20+08:00 +2026/05/14 16:16:21.009, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.84, 66 +2026-05-14T16:16:26+08:00 +2026/05/14 16:16:26.034, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 308.20, 64 +2026-05-14T16:16:31+08:00 +2026/05/14 16:16:31.055, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.43, 66 +2026-05-14T16:16:36+08:00 +2026/05/14 16:16:36.078, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.97, 66 +2026-05-14T16:16:41+08:00 +2026/05/14 16:16:41.102, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.81, 65 +2026-05-14T16:16:46+08:00 +2026/05/14 16:16:46.124, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.00, 66 +2026-05-14T16:16:51+08:00 +2026/05/14 16:16:51.147, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.74, 66 +2026-05-14T16:16:56+08:00 +2026/05/14 16:16:56.173, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.31, 67 +2026-05-14T16:17:01+08:00 +2026/05/14 16:17:01.197, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 367.54, 65 +2026-05-14T16:17:06+08:00 +2026/05/14 16:17:06.219, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.82, 66 +2026-05-14T16:17:11+08:00 +2026/05/14 16:17:11.242, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 368.10, 66 +2026-05-14T16:17:16+08:00 +2026/05/14 16:17:16.265, NVIDIA GeForce RTX 5090, 14, 5, 9607, 32607, 347.86, 62 +2026-05-14T16:17:21+08:00 +2026/05/14 16:17:21.287, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.67, 65 +2026-05-14T16:17:26+08:00 +2026/05/14 16:17:26.311, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 367.25, 66 +2026-05-14T16:17:31+08:00 +2026/05/14 16:17:31.335, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.15, 66 +2026-05-14T16:17:36+08:00 +2026/05/14 16:17:36.358, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.67, 66 +2026-05-14T16:17:41+08:00 +2026/05/14 16:17:41.383, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.86, 67 +2026-05-14T16:17:46+08:00 +2026/05/14 16:17:46.410, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.96, 66 +2026-05-14T16:17:51+08:00 +2026/05/14 16:17:51.432, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.38, 65 +2026-05-14T16:17:56+08:00 +2026/05/14 16:17:56.456, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.38, 65 +2026-05-14T16:18:01+08:00 +2026/05/14 16:18:01.480, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.58, 65 +2026-05-14T16:18:06+08:00 +2026/05/14 16:18:06.505, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.06, 66 +2026-05-14T16:18:11+08:00 +2026/05/14 16:18:11.530, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.66, 65 +2026-05-14T16:18:16+08:00 +2026/05/14 16:18:16.553, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.82, 66 +2026-05-14T16:18:21+08:00 +2026/05/14 16:18:21.577, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 367.06, 66 +2026-05-14T16:18:26+08:00 +2026/05/14 16:18:26.608, NVIDIA GeForce RTX 5090, 3, 2, 9607, 32607, 254.44, 64 +2026-05-14T16:18:31+08:00 +2026/05/14 16:18:31.633, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 367.10, 66 +2026-05-14T16:18:36+08:00 +2026/05/14 16:18:36.657, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.14, 67 +2026-05-14T16:18:41+08:00 +2026/05/14 16:18:41.684, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.45, 66 +2026-05-14T16:18:46+08:00 +2026/05/14 16:18:46.708, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.25, 66 +2026-05-14T16:18:51+08:00 +2026/05/14 16:18:51.732, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.60, 66 +2026-05-14T16:18:56+08:00 +2026/05/14 16:18:56.757, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.24, 66 +2026-05-14T16:19:01+08:00 +2026/05/14 16:19:01.781, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.74, 67 +2026-05-14T16:19:06+08:00 +2026/05/14 16:19:06.805, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.73, 65 +2026-05-14T16:19:11+08:00 +2026/05/14 16:19:11.830, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.99, 66 +2026-05-14T16:19:16+08:00 +2026/05/14 16:19:16.854, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.59, 65 +2026-05-14T16:19:21+08:00 +2026/05/14 16:19:21.878, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.95, 66 +2026-05-14T16:19:26+08:00 +2026/05/14 16:19:26.904, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 66 +2026-05-14T16:19:31+08:00 +2026/05/14 16:19:31.928, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.20, 67 +2026-05-14T16:19:36+08:00 +2026/05/14 16:19:36.952, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.73, 66 +2026-05-14T16:19:41+08:00 +2026/05/14 16:19:41.974, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 186.32, 63 +2026-05-14T16:19:46+08:00 +2026/05/14 16:19:46.998, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.00, 66 +2026-05-14T16:19:52+08:00 +2026/05/14 16:19:52.023, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.12, 66 +2026-05-14T16:19:57+08:00 +2026/05/14 16:19:57.047, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.88, 66 +2026-05-14T16:20:02+08:00 +2026/05/14 16:20:02.074, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.26, 65 +2026-05-14T16:20:07+08:00 +2026/05/14 16:20:07.097, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.80, 66 +2026-05-14T16:20:12+08:00 +2026/05/14 16:20:12.123, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.83, 66 +2026-05-14T16:20:17+08:00 +2026/05/14 16:20:17.145, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.83, 66 +2026-05-14T16:20:22+08:00 +2026/05/14 16:20:22.167, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.19, 65 +2026-05-14T16:20:27+08:00 +2026/05/14 16:20:27.190, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.38, 65 +2026-05-14T16:20:32+08:00 +2026/05/14 16:20:32.216, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.18, 65 +2026-05-14T16:20:37+08:00 +2026/05/14 16:20:37.239, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.16, 65 +2026-05-14T16:20:42+08:00 +2026/05/14 16:20:42.262, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.76, 67 +2026-05-14T16:20:47+08:00 +2026/05/14 16:20:47.285, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 367.61, 66 +2026-05-14T16:20:52+08:00 +2026/05/14 16:20:52.311, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 367.77, 66 +2026-05-14T16:20:57+08:00 +2026/05/14 16:20:57.341, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.57, 66 +2026-05-14T16:21:02+08:00 +2026/05/14 16:21:02.362, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 367.67, 67 +2026-05-14T16:21:07+08:00 +2026/05/14 16:21:07.386, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.89, 66 +2026-05-14T16:21:12+08:00 +2026/05/14 16:21:12.409, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.20, 66 +2026-05-14T16:21:17+08:00 +2026/05/14 16:21:17.434, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.29, 67 +2026-05-14T16:21:22+08:00 +2026/05/14 16:21:22.458, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.77, 66 +2026-05-14T16:21:27+08:00 +2026/05/14 16:21:27.482, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.17, 66 +2026-05-14T16:21:32+08:00 +2026/05/14 16:21:32.506, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.74, 66 +2026-05-14T16:21:37+08:00 +2026/05/14 16:21:37.531, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.28, 66 +2026-05-14T16:21:42+08:00 +2026/05/14 16:21:42.556, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.52, 66 +2026-05-14T16:21:47+08:00 +2026/05/14 16:21:47.583, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.90, 66 +2026-05-14T16:21:52+08:00 +2026/05/14 16:21:52.612, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.00, 66 +2026-05-14T16:21:57+08:00 +2026/05/14 16:21:57.638, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.64, 65 +2026-05-14T16:22:02+08:00 +2026/05/14 16:22:02.661, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.13, 65 +2026-05-14T16:22:07+08:00 +2026/05/14 16:22:07.686, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.33, 65 +2026-05-14T16:22:12+08:00 +2026/05/14 16:22:12.709, NVIDIA GeForce RTX 5090, 10, 4, 9607, 32607, 257.88, 64 +2026-05-14T16:22:17+08:00 +2026/05/14 16:22:17.733, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.69, 66 +2026-05-14T16:22:22+08:00 +2026/05/14 16:22:22.758, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.11, 66 +2026-05-14T16:22:27+08:00 +2026/05/14 16:22:27.782, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.45, 66 +2026-05-14T16:22:32+08:00 +2026/05/14 16:22:32.807, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.91, 66 +2026-05-14T16:22:37+08:00 +2026/05/14 16:22:37.830, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.29, 65 +2026-05-14T16:22:42+08:00 +2026/05/14 16:22:42.856, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.20, 66 +2026-05-14T16:22:47+08:00 +2026/05/14 16:22:47.880, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 66 +2026-05-14T16:22:52+08:00 +2026/05/14 16:22:52.908, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.51, 65 +2026-05-14T16:22:57+08:00 +2026/05/14 16:22:57.932, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.19, 66 +2026-05-14T16:23:02+08:00 +2026/05/14 16:23:02.955, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.92, 66 +2026-05-14T16:23:07+08:00 +2026/05/14 16:23:07.981, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.66, 66 +2026-05-14T16:23:12+08:00 +2026/05/14 16:23:13.005, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.13, 66 +2026-05-14T16:23:18+08:00 +2026/05/14 16:23:18.028, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.34, 65 +2026-05-14T16:23:23+08:00 +2026/05/14 16:23:23.052, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.18, 66 +2026-05-14T16:23:28+08:00 +2026/05/14 16:23:28.082, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.52, 66 +2026-05-14T16:23:33+08:00 +2026/05/14 16:23:33.105, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.89, 64 +2026-05-14T16:23:38+08:00 +2026/05/14 16:23:38.128, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.55, 67 +2026-05-14T16:23:43+08:00 +2026/05/14 16:23:43.152, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.18, 66 +2026-05-14T16:23:48+08:00 +2026/05/14 16:23:48.176, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.41, 66 +2026-05-14T16:23:53+08:00 +2026/05/14 16:23:53.200, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 366.61, 66 +2026-05-14T16:23:58+08:00 +2026/05/14 16:23:58.223, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 365.46, 67 +2026-05-14T16:24:03+08:00 +2026/05/14 16:24:03.246, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.20, 66 +2026-05-14T16:24:08+08:00 +2026/05/14 16:24:08.268, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 261.02, 61 +2026-05-14T16:24:13+08:00 +2026/05/14 16:24:13.294, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.45, 66 +2026-05-14T16:24:18+08:00 +2026/05/14 16:24:18.316, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.72, 65 +2026-05-14T16:24:23+08:00 +2026/05/14 16:24:23.341, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.50, 65 +2026-05-14T16:24:28+08:00 +2026/05/14 16:24:28.363, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.05, 66 +2026-05-14T16:24:33+08:00 +2026/05/14 16:24:33.387, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 367.14, 66 +2026-05-14T16:24:38+08:00 +2026/05/14 16:24:38.409, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.82, 67 +2026-05-14T16:24:43+08:00 +2026/05/14 16:24:43.432, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.29, 66 +2026-05-14T16:24:48+08:00 +2026/05/14 16:24:48.456, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.56, 66 +2026-05-14T16:24:53+08:00 +2026/05/14 16:24:53.480, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.74, 65 +2026-05-14T16:24:58+08:00 +2026/05/14 16:24:58.502, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.65, 66 +2026-05-14T16:25:03+08:00 +2026/05/14 16:25:03.526, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.82, 66 +2026-05-14T16:25:08+08:00 +2026/05/14 16:25:08.548, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.94, 66 +2026-05-14T16:25:13+08:00 +2026/05/14 16:25:13.572, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.84, 65 +2026-05-14T16:25:18+08:00 +2026/05/14 16:25:18.596, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.28, 66 +2026-05-14T16:25:23+08:00 +2026/05/14 16:25:23.618, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.78, 65 +2026-05-14T16:25:28+08:00 +2026/05/14 16:25:28.639, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.93, 66 +2026-05-14T16:25:33+08:00 +2026/05/14 16:25:33.662, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.32, 66 +2026-05-14T16:25:38+08:00 +2026/05/14 16:25:38.686, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.00, 66 +2026-05-14T16:25:43+08:00 +2026/05/14 16:25:43.708, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.95, 66 +2026-05-14T16:25:48+08:00 +2026/05/14 16:25:48.732, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 217.17, 63 +2026-05-14T16:25:53+08:00 +2026/05/14 16:25:53.753, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.72, 66 +2026-05-14T16:25:58+08:00 +2026/05/14 16:25:58.776, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.20, 66 +2026-05-14T16:26:03+08:00 +2026/05/14 16:26:03.805, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.48, 66 +2026-05-14T16:26:08+08:00 +2026/05/14 16:26:08.828, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.09, 66 +2026-05-14T16:26:13+08:00 +2026/05/14 16:26:13.852, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 366.67, 66 +2026-05-14T16:26:18+08:00 +2026/05/14 16:26:18.877, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.33, 65 +2026-05-14T16:26:23+08:00 +2026/05/14 16:26:23.899, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.45, 65 +2026-05-14T16:26:28+08:00 +2026/05/14 16:26:28.925, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.37, 64 +2026-05-14T16:26:33+08:00 +2026/05/14 16:26:33.949, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.86, 66 +2026-05-14T16:26:38+08:00 +2026/05/14 16:26:38.971, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.98, 66 +2026-05-14T16:26:43+08:00 +2026/05/14 16:26:43.998, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.95, 66 +2026-05-14T16:26:49+08:00 +2026/05/14 16:26:49.022, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 367.44, 67 +2026-05-14T16:26:54+08:00 +2026/05/14 16:26:54.045, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.81, 66 +2026-05-14T16:26:59+08:00 +2026/05/14 16:26:59.068, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.64, 66 +2026-05-14T16:27:04+08:00 +2026/05/14 16:27:04.095, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.87, 66 +2026-05-14T16:27:09+08:00 +2026/05/14 16:27:09.124, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.94, 66 +2026-05-14T16:27:14+08:00 +2026/05/14 16:27:14.148, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 266.30, 64 +2026-05-14T16:27:19+08:00 +2026/05/14 16:27:19.171, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.30, 66 +2026-05-14T16:27:24+08:00 +2026/05/14 16:27:24.195, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.80, 66 +2026-05-14T16:27:29+08:00 +2026/05/14 16:27:29.219, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.07, 67 +2026-05-14T16:27:34+08:00 +2026/05/14 16:27:34.242, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 367.02, 66 +2026-05-14T16:27:39+08:00 +2026/05/14 16:27:39.265, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.55, 66 +2026-05-14T16:27:44+08:00 +2026/05/14 16:27:44.288, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.03, 65 +2026-05-14T16:27:49+08:00 +2026/05/14 16:27:49.311, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.42, 65 +2026-05-14T16:27:54+08:00 +2026/05/14 16:27:54.338, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.37, 65 +2026-05-14T16:27:59+08:00 +2026/05/14 16:27:59.365, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.90, 66 +2026-05-14T16:28:04+08:00 +2026/05/14 16:28:04.389, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.18, 66 +2026-05-14T16:28:09+08:00 +2026/05/14 16:28:09.412, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 366.52, 65 +2026-05-14T16:28:14+08:00 +2026/05/14 16:28:14.438, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 365.46, 66 +2026-05-14T16:28:19+08:00 +2026/05/14 16:28:19.461, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.61, 66 +2026-05-14T16:28:24+08:00 +2026/05/14 16:28:24.485, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.59, 66 +2026-05-14T16:28:29+08:00 +2026/05/14 16:28:29.508, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.19, 66 +2026-05-14T16:28:34+08:00 +2026/05/14 16:28:34.532, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 64 +2026-05-14T16:28:39+08:00 +2026/05/14 16:28:39.557, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.16, 66 +2026-05-14T16:28:44+08:00 +2026/05/14 16:28:44.582, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.73, 66 +2026-05-14T16:28:49+08:00 +2026/05/14 16:28:49.606, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.75, 66 +2026-05-14T16:28:54+08:00 +2026/05/14 16:28:54.630, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 230.68, 65 +2026-05-14T16:28:59+08:00 +2026/05/14 16:28:59.676, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.20, 66 +2026-05-14T16:29:04+08:00 +2026/05/14 16:29:04.702, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.89, 66 +2026-05-14T16:29:09+08:00 +2026/05/14 16:29:09.754, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.23, 66 +2026-05-14T16:29:14+08:00 +2026/05/14 16:29:14.778, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.75, 66 +2026-05-14T16:29:19+08:00 +2026/05/14 16:29:19.822, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.48, 67 +2026-05-14T16:29:24+08:00 +2026/05/14 16:29:24.867, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.95, 66 +2026-05-14T16:29:29+08:00 +2026/05/14 16:29:29.890, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.88, 66 +2026-05-14T16:29:34+08:00 +2026/05/14 16:29:34.952, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.92, 66 +2026-05-14T16:29:39+08:00 +2026/05/14 16:29:39.979, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 365.45, 66 +2026-05-14T16:29:45+08:00 +2026/05/14 16:29:45.017, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.30, 66 +2026-05-14T16:29:50+08:00 +2026/05/14 16:29:50.060, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 257.60, 64 +2026-05-14T16:29:55+08:00 +2026/05/14 16:29:55.135, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.85, 66 +2026-05-14T16:30:00+08:00 +2026/05/14 16:30:00.160, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.98, 65 +2026-05-14T16:30:05+08:00 +2026/05/14 16:30:05.202, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.86, 66 +2026-05-14T16:30:10+08:00 +2026/05/14 16:30:10.228, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.19, 65 +2026-05-14T16:30:15+08:00 +2026/05/14 16:30:15.258, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.89, 66 +2026-05-14T16:30:20+08:00 +2026/05/14 16:30:20.287, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.27, 66 +2026-05-14T16:30:25+08:00 +2026/05/14 16:30:25.310, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.96, 66 +2026-05-14T16:30:30+08:00 +2026/05/14 16:30:30.333, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.38, 66 +2026-05-14T16:30:35+08:00 +2026/05/14 16:30:35.359, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.91, 66 +2026-05-14T16:30:40+08:00 +2026/05/14 16:30:40.384, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.58, 65 +2026-05-14T16:30:45+08:00 +2026/05/14 16:30:45.408, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.26, 66 +2026-05-14T16:30:50+08:00 +2026/05/14 16:30:50.437, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.67, 66 +2026-05-14T16:30:55+08:00 +2026/05/14 16:30:55.460, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.76, 67 +2026-05-14T16:31:00+08:00 +2026/05/14 16:31:00.485, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.73, 66 +2026-05-14T16:31:05+08:00 +2026/05/14 16:31:05.507, NVIDIA GeForce RTX 5090, 81, 35, 9607, 32607, 284.74, 66 +2026-05-14T16:31:10+08:00 +2026/05/14 16:31:10.530, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.96, 66 +2026-05-14T16:31:15+08:00 +2026/05/14 16:31:15.554, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.16, 66 +2026-05-14T16:31:20+08:00 +2026/05/14 16:31:20.583, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.21, 66 +2026-05-14T16:31:25+08:00 +2026/05/14 16:31:25.606, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.90, 66 +2026-05-14T16:31:30+08:00 +2026/05/14 16:31:30.631, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.15, 66 +2026-05-14T16:31:35+08:00 +2026/05/14 16:31:35.657, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.38, 65 +2026-05-14T16:31:40+08:00 +2026/05/14 16:31:40.681, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.16, 66 +2026-05-14T16:31:45+08:00 +2026/05/14 16:31:45.705, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.02, 66 +2026-05-14T16:31:50+08:00 +2026/05/14 16:31:50.730, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.88, 66 +2026-05-14T16:31:55+08:00 +2026/05/14 16:31:55.754, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 363.20, 65 +2026-05-14T16:32:00+08:00 +2026/05/14 16:32:00.782, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.02, 65 +2026-05-14T16:32:05+08:00 +2026/05/14 16:32:05.803, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.89, 65 +2026-05-14T16:32:10+08:00 +2026/05/14 16:32:10.828, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.87, 65 +2026-05-14T16:32:15+08:00 +2026/05/14 16:32:15.851, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.92, 65 +2026-05-14T16:32:20+08:00 +2026/05/14 16:32:20.875, NVIDIA GeForce RTX 5090, 67, 31, 9607, 32607, 258.84, 62 +2026-05-14T16:32:25+08:00 +2026/05/14 16:32:25.899, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.71, 65 +2026-05-14T16:32:30+08:00 +2026/05/14 16:32:30.922, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.05, 66 +2026-05-14T16:32:35+08:00 +2026/05/14 16:32:35.946, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.80, 66 +2026-05-14T16:32:40+08:00 +2026/05/14 16:32:40.969, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.64, 66 +2026-05-14T16:32:45+08:00 +2026/05/14 16:32:45.998, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.87, 66 +2026-05-14T16:32:51+08:00 +2026/05/14 16:32:51.024, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.19, 66 +2026-05-14T16:32:56+08:00 +2026/05/14 16:32:56.047, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.79, 66 +2026-05-14T16:33:01+08:00 +2026/05/14 16:33:01.071, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 354.29, 65 +2026-05-14T16:33:06+08:00 +2026/05/14 16:33:06.096, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.97, 66 +2026-05-14T16:33:11+08:00 +2026/05/14 16:33:11.119, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.57, 66 +2026-05-14T16:33:16+08:00 +2026/05/14 16:33:16.142, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.04, 66 +2026-05-14T16:33:21+08:00 +2026/05/14 16:33:21.165, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.77, 66 +2026-05-14T16:33:26+08:00 +2026/05/14 16:33:26.190, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.18, 66 +2026-05-14T16:33:31+08:00 +2026/05/14 16:33:31.212, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.08, 66 +2026-05-14T16:33:36+08:00 +2026/05/14 16:33:36.240, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.59, 66 +2026-05-14T16:33:41+08:00 +2026/05/14 16:33:41.264, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.83, 65 +2026-05-14T16:33:46+08:00 +2026/05/14 16:33:46.289, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 66 +2026-05-14T16:33:51+08:00 +2026/05/14 16:33:51.315, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 367.42, 66 +2026-05-14T16:33:56+08:00 +2026/05/14 16:33:56.338, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.41, 66 +2026-05-14T16:34:01+08:00 +2026/05/14 16:34:01.362, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.23, 66 +2026-05-14T16:34:06+08:00 +2026/05/14 16:34:06.386, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.45, 66 +2026-05-14T16:34:11+08:00 +2026/05/14 16:34:11.410, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.29, 66 +2026-05-14T16:34:16+08:00 +2026/05/14 16:34:16.435, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 320.76, 65 +2026-05-14T16:34:21+08:00 +2026/05/14 16:34:21.459, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.14, 65 +2026-05-14T16:34:26+08:00 +2026/05/14 16:34:26.483, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 258.07, 66 +2026-05-14T16:34:31+08:00 +2026/05/14 16:34:31.507, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.85, 66 +2026-05-14T16:34:36+08:00 +2026/05/14 16:34:36.531, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.06, 66 +2026-05-14T16:34:41+08:00 +2026/05/14 16:34:41.554, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.54, 65 +2026-05-14T16:34:46+08:00 +2026/05/14 16:34:46.579, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.99, 66 +2026-05-14T16:34:51+08:00 +2026/05/14 16:34:51.610, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.58, 66 +2026-05-14T16:34:56+08:00 +2026/05/14 16:34:56.634, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 266.75, 65 +2026-05-14T16:35:01+08:00 +2026/05/14 16:35:01.657, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.60, 66 +2026-05-14T16:35:06+08:00 +2026/05/14 16:35:06.700, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.78, 65 +2026-05-14T16:35:11+08:00 +2026/05/14 16:35:11.724, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.08, 66 +2026-05-14T16:35:16+08:00 +2026/05/14 16:35:16.748, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.83, 66 +2026-05-14T16:35:21+08:00 +2026/05/14 16:35:21.771, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 365.97, 67 +2026-05-14T16:35:26+08:00 +2026/05/14 16:35:26.795, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.05, 65 +2026-05-14T16:35:31+08:00 +2026/05/14 16:35:31.821, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 218.74, 63 +2026-05-14T16:35:36+08:00 +2026/05/14 16:35:36.846, NVIDIA GeForce RTX 5090, 14, 5, 9607, 32607, 258.87, 64 +2026-05-14T16:35:41+08:00 +2026/05/14 16:35:41.869, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.99, 66 +2026-05-14T16:35:46+08:00 +2026/05/14 16:35:46.893, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.94, 66 +2026-05-14T16:35:51+08:00 +2026/05/14 16:35:51.916, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.24, 66 +2026-05-14T16:35:56+08:00 +2026/05/14 16:35:56.940, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.48, 66 +2026-05-14T16:36:01+08:00 +2026/05/14 16:36:01.970, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.37, 65 +2026-05-14T16:36:06+08:00 +2026/05/14 16:36:06.995, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.51, 66 +2026-05-14T16:36:12+08:00 +2026/05/14 16:36:12.019, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.31, 67 +2026-05-14T16:36:17+08:00 +2026/05/14 16:36:17.043, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.41, 66 +2026-05-14T16:36:22+08:00 +2026/05/14 16:36:22.066, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.48, 67 +2026-05-14T16:36:27+08:00 +2026/05/14 16:36:27.091, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.39, 66 +2026-05-14T16:36:32+08:00 +2026/05/14 16:36:32.116, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 225.52, 65 +2026-05-14T16:36:37+08:00 +2026/05/14 16:36:37.141, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.38, 65 +2026-05-14T16:36:42+08:00 +2026/05/14 16:36:42.166, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.76, 66 +2026-05-14T16:36:47+08:00 +2026/05/14 16:36:47.191, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.63, 66 +2026-05-14T16:36:52+08:00 +2026/05/14 16:36:52.215, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.33, 65 +2026-05-14T16:36:57+08:00 +2026/05/14 16:36:57.239, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.79, 66 +2026-05-14T16:37:02+08:00 +2026/05/14 16:37:02.264, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.81, 66 +2026-05-14T16:37:07+08:00 +2026/05/14 16:37:07.288, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 366.62, 66 +2026-05-14T16:37:12+08:00 +2026/05/14 16:37:12.311, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.71, 65 +2026-05-14T16:37:17+08:00 +2026/05/14 16:37:17.333, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.19, 65 +2026-05-14T16:37:22+08:00 +2026/05/14 16:37:22.358, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.33, 65 +2026-05-14T16:37:27+08:00 +2026/05/14 16:37:27.381, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 285.25, 59 +2026-05-14T16:37:32+08:00 +2026/05/14 16:37:32.409, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.44, 66 +2026-05-14T16:37:37+08:00 +2026/05/14 16:37:37.434, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.39, 66 +2026-05-14T16:37:42+08:00 +2026/05/14 16:37:42.461, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.90, 66 +2026-05-14T16:37:47+08:00 +2026/05/14 16:37:47.486, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 349.57, 62 +2026-05-14T16:37:52+08:00 +2026/05/14 16:37:52.529, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.67, 66 +2026-05-14T16:37:57+08:00 +2026/05/14 16:37:57.570, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.26, 65 +2026-05-14T16:38:02+08:00 +2026/05/14 16:38:02.641, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.14, 66 +2026-05-14T16:38:07+08:00 +2026/05/14 16:38:07.673, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.86, 66 +2026-05-14T16:38:12+08:00 +2026/05/14 16:38:12.697, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.98, 66 +2026-05-14T16:38:17+08:00 +2026/05/14 16:38:17.741, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.43, 66 +2026-05-14T16:38:22+08:00 +2026/05/14 16:38:22.769, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.94, 66 +2026-05-14T16:38:27+08:00 +2026/05/14 16:38:27.796, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 66 +2026-05-14T16:38:32+08:00 +2026/05/14 16:38:32.818, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.75, 66 +2026-05-14T16:38:37+08:00 +2026/05/14 16:38:37.845, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.99, 66 +2026-05-14T16:38:42+08:00 +2026/05/14 16:38:42.868, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.09, 65 +2026-05-14T16:38:47+08:00 +2026/05/14 16:38:47.891, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.05, 66 +2026-05-14T16:38:52+08:00 +2026/05/14 16:38:52.917, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.21, 66 +2026-05-14T16:38:57+08:00 +2026/05/14 16:38:57.940, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.97, 66 +2026-05-14T16:39:02+08:00 +2026/05/14 16:39:02.965, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.32, 66 +2026-05-14T16:39:07+08:00 +2026/05/14 16:39:07.987, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.68, 66 +2026-05-14T16:39:12+08:00 +2026/05/14 16:39:13.011, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.82, 66 +2026-05-14T16:39:18+08:00 +2026/05/14 16:39:18.037, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 357.46, 66 +2026-05-14T16:39:23+08:00 +2026/05/14 16:39:23.059, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 187.34, 58 +2026-05-14T16:39:28+08:00 +2026/05/14 16:39:28.079, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.57, 66 +2026-05-14T16:39:33+08:00 +2026/05/14 16:39:33.104, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.66, 66 +2026-05-14T16:39:38+08:00 +2026/05/14 16:39:38.154, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 365.98, 66 +2026-05-14T16:39:43+08:00 +2026/05/14 16:39:43.179, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.46, 66 +2026-05-14T16:39:48+08:00 +2026/05/14 16:39:48.232, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.75, 66 +2026-05-14T16:39:53+08:00 +2026/05/14 16:39:53.257, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.22, 66 +2026-05-14T16:39:58+08:00 +2026/05/14 16:39:58.296, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.97, 66 +2026-05-14T16:40:03+08:00 +2026/05/14 16:40:03.320, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 66 +2026-05-14T16:40:08+08:00 +2026/05/14 16:40:08.344, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.06, 65 +2026-05-14T16:40:13+08:00 +2026/05/14 16:40:13.370, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.62, 65 +2026-05-14T16:40:18+08:00 +2026/05/14 16:40:18.392, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.83, 67 +2026-05-14T16:40:23+08:00 +2026/05/14 16:40:23.434, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.86, 66 +2026-05-14T16:40:28+08:00 +2026/05/14 16:40:28.458, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 66 +2026-05-14T16:40:33+08:00 +2026/05/14 16:40:33.499, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.95, 65 +2026-05-14T16:40:38+08:00 +2026/05/14 16:40:38.541, NVIDIA GeForce RTX 5090, 38, 20, 9607, 32607, 257.25, 62 +2026-05-14T16:40:43+08:00 +2026/05/14 16:40:43.583, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 364.84, 66 +2026-05-14T16:40:48+08:00 +2026/05/14 16:40:48.623, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.26, 66 +2026-05-14T16:40:53+08:00 +2026/05/14 16:40:53.674, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.62, 65 +2026-05-14T16:40:58+08:00 +2026/05/14 16:40:58.696, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.01, 65 +2026-05-14T16:41:03+08:00 +2026/05/14 16:41:03.721, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.08, 66 +2026-05-14T16:41:08+08:00 +2026/05/14 16:41:08.748, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.90, 66 +2026-05-14T16:41:13+08:00 +2026/05/14 16:41:13.790, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.32, 66 +2026-05-14T16:41:18+08:00 +2026/05/14 16:41:18.815, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.94, 65 +2026-05-14T16:41:23+08:00 +2026/05/14 16:41:23.838, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.48, 66 +2026-05-14T16:41:28+08:00 +2026/05/14 16:41:28.863, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.77, 66 +2026-05-14T16:41:33+08:00 +2026/05/14 16:41:33.903, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.05, 66 +2026-05-14T16:41:38+08:00 +2026/05/14 16:41:38.936, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.04, 66 +2026-05-14T16:41:43+08:00 +2026/05/14 16:41:43.958, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.93, 66 +2026-05-14T16:41:48+08:00 +2026/05/14 16:41:49.003, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.64, 66 +2026-05-14T16:41:54+08:00 +2026/05/14 16:41:54.024, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.40, 66 +2026-05-14T16:41:59+08:00 +2026/05/14 16:41:59.067, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.42, 65 +2026-05-14T16:42:04+08:00 +2026/05/14 16:42:04.090, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.77, 66 +2026-05-14T16:42:09+08:00 +2026/05/14 16:42:09.137, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.90, 66 +2026-05-14T16:42:14+08:00 +2026/05/14 16:42:14.158, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 66 +2026-05-14T16:42:19+08:00 +2026/05/14 16:42:19.203, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.32, 66 +2026-05-14T16:42:24+08:00 +2026/05/14 16:42:24.225, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.38, 67 +2026-05-14T16:42:29+08:00 +2026/05/14 16:42:29.248, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.99, 65 +2026-05-14T16:42:34+08:00 +2026/05/14 16:42:34.271, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.41, 67 +2026-05-14T16:42:39+08:00 +2026/05/14 16:42:39.295, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.29, 66 +2026-05-14T16:42:44+08:00 +2026/05/14 16:42:44.318, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.37, 66 +2026-05-14T16:42:49+08:00 +2026/05/14 16:42:49.340, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.73, 66 +2026-05-14T16:42:54+08:00 +2026/05/14 16:42:54.362, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.94, 65 +2026-05-14T16:42:59+08:00 +2026/05/14 16:42:59.385, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.08, 65 +2026-05-14T16:43:04+08:00 +2026/05/14 16:43:04.407, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.71, 65 +2026-05-14T16:43:09+08:00 +2026/05/14 16:43:09.428, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.14, 66 +2026-05-14T16:43:14+08:00 +2026/05/14 16:43:14.451, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.29, 65 +2026-05-14T16:43:19+08:00 +2026/05/14 16:43:19.474, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.78, 66 +2026-05-14T16:43:24+08:00 +2026/05/14 16:43:24.497, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.86, 66 +2026-05-14T16:43:29+08:00 +2026/05/14 16:43:29.521, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.72, 66 +2026-05-14T16:43:34+08:00 +2026/05/14 16:43:34.545, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.08, 65 +2026-05-14T16:43:39+08:00 +2026/05/14 16:43:39.571, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 368.45, 66 +2026-05-14T16:43:44+08:00 +2026/05/14 16:43:44.596, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.21, 66 +2026-05-14T16:43:49+08:00 +2026/05/14 16:43:49.624, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.15, 66 +2026-05-14T16:43:54+08:00 +2026/05/14 16:43:54.648, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.66, 65 +2026-05-14T16:43:59+08:00 +2026/05/14 16:43:59.671, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.27, 65 +2026-05-14T16:44:04+08:00 +2026/05/14 16:44:04.694, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.70, 65 +2026-05-14T16:44:09+08:00 +2026/05/14 16:44:09.716, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 230.68, 63 +2026-05-14T16:44:14+08:00 +2026/05/14 16:44:14.742, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.55, 66 +2026-05-14T16:44:19+08:00 +2026/05/14 16:44:19.766, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.81, 65 +2026-05-14T16:44:24+08:00 +2026/05/14 16:44:24.791, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.52, 66 +2026-05-14T16:44:29+08:00 +2026/05/14 16:44:29.813, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 258.88, 63 +2026-05-14T16:44:34+08:00 +2026/05/14 16:44:34.838, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 367.27, 66 +2026-05-14T16:44:39+08:00 +2026/05/14 16:44:39.862, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.23, 66 +2026-05-14T16:44:44+08:00 +2026/05/14 16:44:44.885, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.61, 66 +2026-05-14T16:44:49+08:00 +2026/05/14 16:44:49.909, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.01, 64 +2026-05-14T16:44:54+08:00 +2026/05/14 16:44:54.933, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 367.13, 66 +2026-05-14T16:44:59+08:00 +2026/05/14 16:44:59.958, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.65, 66 +2026-05-14T16:45:04+08:00 +2026/05/14 16:45:04.981, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.34, 66 +2026-05-14T16:45:09+08:00 +2026/05/14 16:45:10.003, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.18, 66 +2026-05-14T16:45:15+08:00 +2026/05/14 16:45:15.027, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.46, 65 +2026-05-14T16:45:20+08:00 +2026/05/14 16:45:20.057, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.84, 66 +2026-05-14T16:45:25+08:00 +2026/05/14 16:45:25.080, NVIDIA GeForce RTX 5090, 83, 37, 9607, 32607, 364.83, 66 +2026-05-14T16:45:30+08:00 +2026/05/14 16:45:30.108, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.16, 65 +2026-05-14T16:45:35+08:00 +2026/05/14 16:45:35.132, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.05, 65 +2026-05-14T16:45:40+08:00 +2026/05/14 16:45:40.159, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.49, 65 +2026-05-14T16:45:45+08:00 +2026/05/14 16:45:45.200, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.70, 66 +2026-05-14T16:45:50+08:00 +2026/05/14 16:45:50.225, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.81, 66 +2026-05-14T16:45:55+08:00 +2026/05/14 16:45:55.248, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 367.11, 66 +2026-05-14T16:46:00+08:00 +2026/05/14 16:46:00.272, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.45, 66 +2026-05-14T16:46:05+08:00 +2026/05/14 16:46:05.299, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.35, 65 +2026-05-14T16:46:10+08:00 +2026/05/14 16:46:10.324, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 66 +2026-05-14T16:46:15+08:00 +2026/05/14 16:46:15.348, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.75, 64 +2026-05-14T16:46:20+08:00 +2026/05/14 16:46:20.390, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.53, 65 +2026-05-14T16:46:25+08:00 +2026/05/14 16:46:25.416, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.55, 65 +2026-05-14T16:46:30+08:00 +2026/05/14 16:46:30.441, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.16, 65 +2026-05-14T16:46:35+08:00 +2026/05/14 16:46:35.466, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.69, 65 +2026-05-14T16:46:40+08:00 +2026/05/14 16:46:40.509, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.25, 66 +2026-05-14T16:46:45+08:00 +2026/05/14 16:46:45.552, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.46, 66 +2026-05-14T16:46:50+08:00 +2026/05/14 16:46:50.578, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.19, 66 +2026-05-14T16:46:55+08:00 +2026/05/14 16:46:55.601, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.19, 65 +2026-05-14T16:47:00+08:00 +2026/05/14 16:47:00.624, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.95, 66 +2026-05-14T16:47:05+08:00 +2026/05/14 16:47:05.649, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.82, 65 +2026-05-14T16:47:10+08:00 +2026/05/14 16:47:10.707, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.42, 65 +2026-05-14T16:47:15+08:00 +2026/05/14 16:47:15.732, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.97, 66 +2026-05-14T16:47:20+08:00 +2026/05/14 16:47:20.774, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.66, 66 +2026-05-14T16:47:25+08:00 +2026/05/14 16:47:25.800, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.73, 66 +2026-05-14T16:47:30+08:00 +2026/05/14 16:47:30.827, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.66, 66 +2026-05-14T16:47:35+08:00 +2026/05/14 16:47:35.850, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.79, 66 +2026-05-14T16:47:40+08:00 +2026/05/14 16:47:40.875, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 345.93, 66 +2026-05-14T16:47:45+08:00 +2026/05/14 16:47:45.897, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.86, 66 +2026-05-14T16:47:50+08:00 +2026/05/14 16:47:50.919, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.08, 66 +2026-05-14T16:47:55+08:00 +2026/05/14 16:47:55.942, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.26, 65 +2026-05-14T16:48:00+08:00 +2026/05/14 16:48:00.962, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.08, 66 +2026-05-14T16:48:05+08:00 +2026/05/14 16:48:05.985, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.60, 66 +2026-05-14T16:48:10+08:00 +2026/05/14 16:48:11.035, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.37, 66 +2026-05-14T16:48:16+08:00 +2026/05/14 16:48:16.057, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.97, 65 +2026-05-14T16:48:21+08:00 +2026/05/14 16:48:21.127, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.89, 65 +2026-05-14T16:48:26+08:00 +2026/05/14 16:48:26.150, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.39, 66 +2026-05-14T16:48:31+08:00 +2026/05/14 16:48:31.206, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.01, 66 +2026-05-14T16:48:36+08:00 +2026/05/14 16:48:36.229, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 367.42, 66 +2026-05-14T16:48:41+08:00 +2026/05/14 16:48:41.272, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.97, 66 +2026-05-14T16:48:46+08:00 +2026/05/14 16:48:46.295, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.17, 67 +2026-05-14T16:48:51+08:00 +2026/05/14 16:48:51.324, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.17, 67 +2026-05-14T16:48:56+08:00 +2026/05/14 16:48:56.347, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.47, 65 +2026-05-14T16:49:01+08:00 +2026/05/14 16:49:01.374, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.38, 65 +2026-05-14T16:49:06+08:00 +2026/05/14 16:49:06.398, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.12, 65 +2026-05-14T16:49:11+08:00 +2026/05/14 16:49:11.421, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.48, 65 +2026-05-14T16:49:16+08:00 +2026/05/14 16:49:16.444, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.14, 66 +2026-05-14T16:49:21+08:00 +2026/05/14 16:49:21.466, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.93, 66 +2026-05-14T16:49:26+08:00 +2026/05/14 16:49:26.491, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.30, 66 +2026-05-14T16:49:31+08:00 +2026/05/14 16:49:31.516, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.62, 66 +2026-05-14T16:49:36+08:00 +2026/05/14 16:49:36.540, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.28, 66 +2026-05-14T16:49:41+08:00 +2026/05/14 16:49:41.564, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.61, 66 +2026-05-14T16:49:46+08:00 +2026/05/14 16:49:46.587, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.05, 66 +2026-05-14T16:49:51+08:00 +2026/05/14 16:49:51.611, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.71, 66 +2026-05-14T16:49:56+08:00 +2026/05/14 16:49:56.637, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.39, 67 +2026-05-14T16:50:01+08:00 +2026/05/14 16:50:01.659, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.29, 67 +2026-05-14T16:50:06+08:00 +2026/05/14 16:50:06.683, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 66 +2026-05-14T16:50:11+08:00 +2026/05/14 16:50:11.706, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.84, 66 +2026-05-14T16:50:16+08:00 +2026/05/14 16:50:16.729, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.26, 64 +2026-05-14T16:50:21+08:00 +2026/05/14 16:50:21.752, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.69, 66 +2026-05-14T16:50:26+08:00 +2026/05/14 16:50:26.776, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.93, 66 +2026-05-14T16:50:31+08:00 +2026/05/14 16:50:31.800, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.33, 66 +2026-05-14T16:50:36+08:00 +2026/05/14 16:50:36.825, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 364.72, 66 +2026-05-14T16:50:41+08:00 +2026/05/14 16:50:41.850, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.51, 65 +2026-05-14T16:50:46+08:00 +2026/05/14 16:50:46.879, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 367.61, 66 +2026-05-14T16:50:51+08:00 +2026/05/14 16:50:51.902, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.46, 66 +2026-05-14T16:50:56+08:00 +2026/05/14 16:50:56.928, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.03, 65 +2026-05-14T16:51:01+08:00 +2026/05/14 16:51:01.950, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 311.99, 59 +2026-05-14T16:51:06+08:00 +2026/05/14 16:51:06.977, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.55, 65 +2026-05-14T16:51:11+08:00 +2026/05/14 16:51:12.001, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.33, 65 +2026-05-14T16:51:17+08:00 +2026/05/14 16:51:17.024, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.68, 65 +2026-05-14T16:51:22+08:00 +2026/05/14 16:51:22.046, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.71, 65 +2026-05-14T16:51:27+08:00 +2026/05/14 16:51:27.070, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.83, 65 +2026-05-14T16:51:32+08:00 +2026/05/14 16:51:32.112, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 311.20, 59 +2026-05-14T16:51:37+08:00 +2026/05/14 16:51:37.138, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.43, 65 +2026-05-14T16:51:42+08:00 +2026/05/14 16:51:42.161, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.09, 65 +2026-05-14T16:51:47+08:00 +2026/05/14 16:51:47.186, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.98, 67 +2026-05-14T16:51:52+08:00 +2026/05/14 16:51:52.258, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 366.05, 66 +2026-05-14T16:51:57+08:00 +2026/05/14 16:51:57.281, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.88, 66 +2026-05-14T16:52:02+08:00 +2026/05/14 16:52:02.324, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.98, 65 +2026-05-14T16:52:07+08:00 +2026/05/14 16:52:07.347, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 65 +2026-05-14T16:52:12+08:00 +2026/05/14 16:52:12.388, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.40, 66 +2026-05-14T16:52:17+08:00 +2026/05/14 16:52:17.412, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.05, 66 +2026-05-14T16:52:22+08:00 +2026/05/14 16:52:22.435, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 65 +2026-05-14T16:52:27+08:00 +2026/05/14 16:52:27.458, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 66 +2026-05-14T16:52:32+08:00 +2026/05/14 16:52:32.483, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.32, 66 +2026-05-14T16:52:37+08:00 +2026/05/14 16:52:37.540, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 296.40, 58 +2026-05-14T16:52:42+08:00 +2026/05/14 16:52:42.597, NVIDIA GeForce RTX 5090, 83, 36, 9607, 32607, 364.59, 67 +2026-05-14T16:52:47+08:00 +2026/05/14 16:52:47.621, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.73, 66 +2026-05-14T16:52:52+08:00 +2026/05/14 16:52:52.662, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 64 +2026-05-14T16:52:57+08:00 +2026/05/14 16:52:57.705, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.38, 65 +2026-05-14T16:53:02+08:00 +2026/05/14 16:53:02.745, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.22, 66 +2026-05-14T16:53:07+08:00 +2026/05/14 16:53:07.785, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.08, 66 +2026-05-14T16:53:12+08:00 +2026/05/14 16:53:12.861, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.21, 66 +2026-05-14T16:53:17+08:00 +2026/05/14 16:53:17.885, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.37, 65 +2026-05-14T16:53:22+08:00 +2026/05/14 16:53:22.932, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.98, 66 +2026-05-14T16:53:27+08:00 +2026/05/14 16:53:27.955, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.55, 65 +2026-05-14T16:53:32+08:00 +2026/05/14 16:53:32.997, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.85, 66 +2026-05-14T16:53:38+08:00 +2026/05/14 16:53:38.065, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.26, 66 +2026-05-14T16:53:43+08:00 +2026/05/14 16:53:43.089, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.97, 66 +2026-05-14T16:53:48+08:00 +2026/05/14 16:53:48.140, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.88, 65 +2026-05-14T16:53:53+08:00 +2026/05/14 16:53:53.169, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.41, 66 +2026-05-14T16:53:58+08:00 +2026/05/14 16:53:58.217, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.31, 65 +2026-05-14T16:54:03+08:00 +2026/05/14 16:54:03.269, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.05, 66 +2026-05-14T16:54:08+08:00 +2026/05/14 16:54:08.293, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.97, 66 +2026-05-14T16:54:13+08:00 +2026/05/14 16:54:13.337, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.81, 66 +2026-05-14T16:54:18+08:00 +2026/05/14 16:54:18.397, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.79, 66 +2026-05-14T16:54:23+08:00 +2026/05/14 16:54:23.422, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.21, 66 +2026-05-14T16:54:28+08:00 +2026/05/14 16:54:28.462, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.34, 66 +2026-05-14T16:54:33+08:00 +2026/05/14 16:54:33.484, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.09, 65 +2026-05-14T16:54:38+08:00 +2026/05/14 16:54:38.507, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 65 +2026-05-14T16:54:43+08:00 +2026/05/14 16:54:43.531, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 366.49, 65 +2026-05-14T16:54:48+08:00 +2026/05/14 16:54:48.554, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.55, 65 +2026-05-14T16:54:53+08:00 +2026/05/14 16:54:53.584, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.48, 66 +2026-05-14T16:54:58+08:00 +2026/05/14 16:54:58.606, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.20, 66 +2026-05-14T16:55:03+08:00 +2026/05/14 16:55:03.629, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.23, 66 +2026-05-14T16:55:08+08:00 +2026/05/14 16:55:08.653, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.44, 66 +2026-05-14T16:55:13+08:00 +2026/05/14 16:55:13.677, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.41, 66 +2026-05-14T16:55:18+08:00 +2026/05/14 16:55:18.700, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 292.26, 65 +2026-05-14T16:55:23+08:00 +2026/05/14 16:55:23.724, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.44, 65 +2026-05-14T16:55:28+08:00 +2026/05/14 16:55:28.753, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.92, 66 +2026-05-14T16:55:33+08:00 +2026/05/14 16:55:33.776, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.18, 66 +2026-05-14T16:55:38+08:00 +2026/05/14 16:55:38.800, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.14, 66 +2026-05-14T16:55:43+08:00 +2026/05/14 16:55:43.823, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.64, 65 +2026-05-14T16:55:48+08:00 +2026/05/14 16:55:48.847, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 367.84, 66 +2026-05-14T16:55:53+08:00 +2026/05/14 16:55:53.873, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.07, 66 +2026-05-14T16:55:58+08:00 +2026/05/14 16:55:58.898, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 254.70, 65 +2026-05-14T16:56:03+08:00 +2026/05/14 16:56:03.923, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.71, 65 +2026-05-14T16:56:08+08:00 +2026/05/14 16:56:08.945, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.93, 65 +2026-05-14T16:56:13+08:00 +2026/05/14 16:56:13.968, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.19, 65 +2026-05-14T16:56:18+08:00 +2026/05/14 16:56:18.995, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.71, 67 +2026-05-14T16:56:24+08:00 +2026/05/14 16:56:24.019, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.63, 65 +2026-05-14T16:56:29+08:00 +2026/05/14 16:56:29.042, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.96, 66 +2026-05-14T16:56:34+08:00 +2026/05/14 16:56:34.067, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.83, 66 +2026-05-14T16:56:39+08:00 +2026/05/14 16:56:39.091, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.40, 65 +2026-05-14T16:56:44+08:00 +2026/05/14 16:56:44.115, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.97, 66 +2026-05-14T16:56:49+08:00 +2026/05/14 16:56:49.139, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.85, 66 +2026-05-14T16:56:54+08:00 +2026/05/14 16:56:54.166, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 356.09, 65 +2026-05-14T16:56:59+08:00 +2026/05/14 16:56:59.189, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.66, 67 +2026-05-14T16:57:04+08:00 +2026/05/14 16:57:04.212, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.45, 66 +2026-05-14T16:57:09+08:00 +2026/05/14 16:57:09.239, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.05, 66 +2026-05-14T16:57:14+08:00 +2026/05/14 16:57:14.264, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.37, 65 +2026-05-14T16:57:19+08:00 +2026/05/14 16:57:19.288, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 364.31, 65 +2026-05-14T16:57:24+08:00 +2026/05/14 16:57:24.312, NVIDIA GeForce RTX 5090, 67, 26, 9607, 32607, 359.76, 66 +2026-05-14T16:57:29+08:00 +2026/05/14 16:57:29.336, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 66 +2026-05-14T16:57:34+08:00 +2026/05/14 16:57:34.358, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.92, 66 +2026-05-14T16:57:39+08:00 +2026/05/14 16:57:39.384, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 66 +2026-05-14T16:57:44+08:00 +2026/05/14 16:57:44.407, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.84, 66 +2026-05-14T16:57:49+08:00 +2026/05/14 16:57:49.431, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.48, 65 +2026-05-14T16:57:54+08:00 +2026/05/14 16:57:54.454, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.22, 65 +2026-05-14T16:57:59+08:00 +2026/05/14 16:57:59.479, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.16, 65 +2026-05-14T16:58:04+08:00 +2026/05/14 16:58:04.539, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.58, 65 +2026-05-14T16:58:09+08:00 +2026/05/14 16:58:09.564, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.57, 65 +2026-05-14T16:58:14+08:00 +2026/05/14 16:58:14.604, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.64, 66 +2026-05-14T16:58:19+08:00 +2026/05/14 16:58:19.661, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 65 +2026-05-14T16:58:24+08:00 +2026/05/14 16:58:24.686, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.46, 65 +2026-05-14T16:58:29+08:00 +2026/05/14 16:58:29.725, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 244.35, 64 +2026-05-14T16:58:34+08:00 +2026/05/14 16:58:34.799, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.66, 67 +2026-05-14T16:58:39+08:00 +2026/05/14 16:58:39.823, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.94, 66 +2026-05-14T16:58:44+08:00 +2026/05/14 16:58:44.884, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.85, 66 +2026-05-14T16:58:49+08:00 +2026/05/14 16:58:49.910, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.41, 66 +2026-05-14T16:58:54+08:00 +2026/05/14 16:58:54.971, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.03, 66 +2026-05-14T16:58:59+08:00 +2026/05/14 16:58:59.995, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.27, 66 +2026-05-14T16:59:05+08:00 +2026/05/14 16:59:05.069, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.74, 66 +2026-05-14T16:59:10+08:00 +2026/05/14 16:59:10.092, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.35, 66 +2026-05-14T16:59:15+08:00 +2026/05/14 16:59:15.134, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.83, 66 +2026-05-14T16:59:20+08:00 +2026/05/14 16:59:20.176, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.95, 65 +2026-05-14T16:59:25+08:00 +2026/05/14 16:59:25.217, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.53, 66 +2026-05-14T16:59:30+08:00 +2026/05/14 16:59:30.291, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.18, 65 +2026-05-14T16:59:35+08:00 +2026/05/14 16:59:35.337, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.21, 65 +2026-05-14T16:59:40+08:00 +2026/05/14 16:59:40.360, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.52, 66 +2026-05-14T16:59:45+08:00 +2026/05/14 16:59:45.428, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.91, 64 +2026-05-14T16:59:50+08:00 +2026/05/14 16:59:50.453, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.83, 66 +2026-05-14T16:59:55+08:00 +2026/05/14 16:59:55.494, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.29, 65 +2026-05-14T17:00:00+08:00 +2026/05/14 17:00:00.517, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.41, 65 +2026-05-14T17:00:05+08:00 +2026/05/14 17:00:05.560, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.11, 65 +2026-05-14T17:00:10+08:00 +2026/05/14 17:00:10.600, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.64, 64 +2026-05-14T17:00:15+08:00 +2026/05/14 17:00:15.624, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.61, 65 +2026-05-14T17:00:20+08:00 +2026/05/14 17:00:20.652, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.53, 66 +2026-05-14T17:00:25+08:00 +2026/05/14 17:00:25.677, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 65 +2026-05-14T17:00:30+08:00 +2026/05/14 17:00:30.700, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 294.40, 65 +2026-05-14T17:00:35+08:00 +2026/05/14 17:00:35.724, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.34, 66 +2026-05-14T17:00:40+08:00 +2026/05/14 17:00:40.750, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.11, 66 +2026-05-14T17:00:45+08:00 +2026/05/14 17:00:45.776, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 65 +2026-05-14T17:00:50+08:00 +2026/05/14 17:00:50.806, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.32, 65 +2026-05-14T17:00:55+08:00 +2026/05/14 17:00:55.834, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.55, 66 +2026-05-14T17:01:00+08:00 +2026/05/14 17:01:00.860, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.26, 66 +2026-05-14T17:01:05+08:00 +2026/05/14 17:01:05.883, NVIDIA GeForce RTX 5090, 9, 3, 9607, 32607, 246.07, 64 +2026-05-14T17:01:10+08:00 +2026/05/14 17:01:10.908, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.48, 66 +2026-05-14T17:01:15+08:00 +2026/05/14 17:01:15.934, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.71, 66 +2026-05-14T17:01:20+08:00 +2026/05/14 17:01:20.958, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 273.15, 58 +2026-05-14T17:01:25+08:00 +2026/05/14 17:01:25.983, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.17, 65 +2026-05-14T17:01:30+08:00 +2026/05/14 17:01:31.005, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.09, 66 +2026-05-14T17:01:36+08:00 +2026/05/14 17:01:36.030, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.11, 65 +2026-05-14T17:01:41+08:00 +2026/05/14 17:01:41.056, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.36, 66 +2026-05-14T17:01:46+08:00 +2026/05/14 17:01:46.079, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.08, 65 +2026-05-14T17:01:51+08:00 +2026/05/14 17:01:51.108, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.35, 66 +2026-05-14T17:01:56+08:00 +2026/05/14 17:01:56.131, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.70, 65 +2026-05-14T17:02:01+08:00 +2026/05/14 17:02:01.158, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.54, 66 +2026-05-14T17:02:06+08:00 +2026/05/14 17:02:06.187, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.59, 66 +2026-05-14T17:02:11+08:00 +2026/05/14 17:02:11.213, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.66, 66 +2026-05-14T17:02:16+08:00 +2026/05/14 17:02:16.236, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.12, 66 +2026-05-14T17:02:21+08:00 +2026/05/14 17:02:21.261, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 271.92, 58 +2026-05-14T17:02:26+08:00 +2026/05/14 17:02:26.286, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.96, 66 +2026-05-14T17:02:31+08:00 +2026/05/14 17:02:31.309, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.32, 66 +2026-05-14T17:02:36+08:00 +2026/05/14 17:02:36.332, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.15, 64 +2026-05-14T17:02:41+08:00 +2026/05/14 17:02:41.356, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.87, 65 +2026-05-14T17:02:46+08:00 +2026/05/14 17:02:46.378, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.50, 65 +2026-05-14T17:02:51+08:00 +2026/05/14 17:02:51.401, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.46, 66 +2026-05-14T17:02:56+08:00 +2026/05/14 17:02:56.424, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.07, 66 +2026-05-14T17:03:01+08:00 +2026/05/14 17:03:01.448, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.97, 66 +2026-05-14T17:03:06+08:00 +2026/05/14 17:03:06.471, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.14, 65 +2026-05-14T17:03:11+08:00 +2026/05/14 17:03:11.497, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.24, 66 +2026-05-14T17:03:16+08:00 +2026/05/14 17:03:16.521, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.91, 65 +2026-05-14T17:03:21+08:00 +2026/05/14 17:03:21.544, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.18, 66 +2026-05-14T17:03:26+08:00 +2026/05/14 17:03:26.568, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.83, 66 +2026-05-14T17:03:31+08:00 +2026/05/14 17:03:31.610, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.24, 66 +2026-05-14T17:03:36+08:00 +2026/05/14 17:03:36.666, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.94, 65 +2026-05-14T17:03:41+08:00 +2026/05/14 17:03:41.689, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 65 +2026-05-14T17:03:46+08:00 +2026/05/14 17:03:46.717, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.99, 66 +2026-05-14T17:03:51+08:00 +2026/05/14 17:03:51.759, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.41, 66 +2026-05-14T17:03:56+08:00 +2026/05/14 17:03:56.782, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.98, 66 +2026-05-14T17:04:01+08:00 +2026/05/14 17:04:01.805, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.04, 65 +2026-05-14T17:04:06+08:00 +2026/05/14 17:04:06.845, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.82, 66 +2026-05-14T17:04:11+08:00 +2026/05/14 17:04:11.877, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.83, 66 +2026-05-14T17:04:16+08:00 +2026/05/14 17:04:16.900, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.62, 65 +2026-05-14T17:04:21+08:00 +2026/05/14 17:04:21.950, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.43, 66 +2026-05-14T17:04:26+08:00 +2026/05/14 17:04:26.974, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.85, 64 +2026-05-14T17:04:32+08:00 +2026/05/14 17:04:32.022, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.05, 65 +2026-05-14T17:04:37+08:00 +2026/05/14 17:04:37.047, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 65 +2026-05-14T17:04:42+08:00 +2026/05/14 17:04:42.087, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 66 +2026-05-14T17:04:47+08:00 +2026/05/14 17:04:47.130, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.33, 66 +2026-05-14T17:04:52+08:00 +2026/05/14 17:04:52.155, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.50, 65 +2026-05-14T17:04:57+08:00 +2026/05/14 17:04:57.179, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.95, 65 +2026-05-14T17:05:02+08:00 +2026/05/14 17:05:02.203, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.92, 65 +2026-05-14T17:05:07+08:00 +2026/05/14 17:05:07.245, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.16, 65 +2026-05-14T17:05:12+08:00 +2026/05/14 17:05:12.270, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.41, 64 +2026-05-14T17:05:17+08:00 +2026/05/14 17:05:17.323, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 65 +2026-05-14T17:05:22+08:00 +2026/05/14 17:05:22.347, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.12, 66 +2026-05-14T17:05:27+08:00 +2026/05/14 17:05:27.370, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.37, 66 +2026-05-14T17:05:32+08:00 +2026/05/14 17:05:32.413, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.04, 66 +2026-05-14T17:05:37+08:00 +2026/05/14 17:05:37.455, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.05, 66 +2026-05-14T17:05:42+08:00 +2026/05/14 17:05:42.498, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.10, 64 +2026-05-14T17:05:47+08:00 +2026/05/14 17:05:47.522, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.95, 65 +2026-05-14T17:05:52+08:00 +2026/05/14 17:05:52.545, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.11, 65 +2026-05-14T17:05:57+08:00 +2026/05/14 17:05:57.572, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 66 +2026-05-14T17:06:02+08:00 +2026/05/14 17:06:02.595, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.97, 65 +2026-05-14T17:06:07+08:00 +2026/05/14 17:06:07.619, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.70, 66 +2026-05-14T17:06:12+08:00 +2026/05/14 17:06:12.643, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.98, 65 +2026-05-14T17:06:17+08:00 +2026/05/14 17:06:17.667, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.59, 64 +2026-05-14T17:06:22+08:00 +2026/05/14 17:06:22.692, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 226.56, 62 +2026-05-14T17:06:27+08:00 +2026/05/14 17:06:27.715, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.78, 65 +2026-05-14T17:06:32+08:00 +2026/05/14 17:06:32.738, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.14, 66 +2026-05-14T17:06:37+08:00 +2026/05/14 17:06:37.762, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.04, 65 +2026-05-14T17:06:42+08:00 +2026/05/14 17:06:42.785, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 65 +2026-05-14T17:06:47+08:00 +2026/05/14 17:06:47.811, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.40, 66 +2026-05-14T17:06:52+08:00 +2026/05/14 17:06:52.834, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 65 +2026-05-14T17:06:57+08:00 +2026/05/14 17:06:57.858, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.54, 65 +2026-05-14T17:07:02+08:00 +2026/05/14 17:07:02.883, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.70, 66 +2026-05-14T17:07:07+08:00 +2026/05/14 17:07:07.907, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.87, 65 +2026-05-14T17:07:12+08:00 +2026/05/14 17:07:12.931, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.74, 65 +2026-05-14T17:07:17+08:00 +2026/05/14 17:07:17.957, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.77, 66 +2026-05-14T17:07:22+08:00 +2026/05/14 17:07:22.982, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.88, 66 +2026-05-14T17:07:27+08:00 +2026/05/14 17:07:28.005, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.75, 66 +2026-05-14T17:07:33+08:00 +2026/05/14 17:07:33.027, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.50, 65 +2026-05-14T17:07:38+08:00 +2026/05/14 17:07:38.053, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 65 +2026-05-14T17:07:43+08:00 +2026/05/14 17:07:43.084, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 65 +2026-05-14T17:07:48+08:00 +2026/05/14 17:07:48.109, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.97, 66 +2026-05-14T17:07:53+08:00 +2026/05/14 17:07:53.133, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.45, 65 +2026-05-14T17:07:58+08:00 +2026/05/14 17:07:58.190, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.46, 66 +2026-05-14T17:08:03+08:00 +2026/05/14 17:08:03.214, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.71, 66 +2026-05-14T17:08:08+08:00 +2026/05/14 17:08:08.255, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.64, 66 +2026-05-14T17:08:13+08:00 +2026/05/14 17:08:13.318, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.26, 65 +2026-05-14T17:08:18+08:00 +2026/05/14 17:08:18.341, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.59, 65 +2026-05-14T17:08:23+08:00 +2026/05/14 17:08:23.366, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.00, 65 +2026-05-14T17:08:28+08:00 +2026/05/14 17:08:28.390, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.88, 66 +2026-05-14T17:08:33+08:00 +2026/05/14 17:08:33.413, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.90, 66 +2026-05-14T17:08:38+08:00 +2026/05/14 17:08:38.437, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 65 +2026-05-14T17:08:43+08:00 +2026/05/14 17:08:43.480, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.78, 66 +2026-05-14T17:08:48+08:00 +2026/05/14 17:08:48.521, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.59, 66 +2026-05-14T17:08:53+08:00 +2026/05/14 17:08:53.563, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.08, 66 +2026-05-14T17:08:58+08:00 +2026/05/14 17:08:58.586, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 229.52, 64 +2026-05-14T17:09:03+08:00 +2026/05/14 17:09:03.610, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.29, 65 +2026-05-14T17:09:08+08:00 +2026/05/14 17:09:08.636, NVIDIA GeForce RTX 5090, 52, 26, 9607, 32607, 351.52, 63 +2026-05-14T17:09:13+08:00 +2026/05/14 17:09:13.661, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.99, 65 +2026-05-14T17:09:18+08:00 +2026/05/14 17:09:18.684, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.02, 66 +2026-05-14T17:09:23+08:00 +2026/05/14 17:09:23.707, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 66 +2026-05-14T17:09:28+08:00 +2026/05/14 17:09:28.731, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.33, 66 +2026-05-14T17:09:33+08:00 +2026/05/14 17:09:33.757, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.24, 66 +2026-05-14T17:09:38+08:00 +2026/05/14 17:09:38.782, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.52, 65 +2026-05-14T17:09:43+08:00 +2026/05/14 17:09:43.809, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.91, 65 +2026-05-14T17:09:48+08:00 +2026/05/14 17:09:48.837, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.06, 66 +2026-05-14T17:09:53+08:00 +2026/05/14 17:09:53.862, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.96, 65 +2026-05-14T17:09:58+08:00 +2026/05/14 17:09:58.905, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.65, 65 +2026-05-14T17:10:03+08:00 +2026/05/14 17:10:03.949, NVIDIA GeForce RTX 5090, 5, 5, 9607, 32607, 269.34, 64 +2026-05-14T17:10:08+08:00 +2026/05/14 17:10:08.973, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 66 +2026-05-14T17:10:14+08:00 +2026/05/14 17:10:14.016, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.93, 66 +2026-05-14T17:10:19+08:00 +2026/05/14 17:10:19.039, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.49, 66 +2026-05-14T17:10:24+08:00 +2026/05/14 17:10:24.062, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.87, 65 +2026-05-14T17:10:29+08:00 +2026/05/14 17:10:29.084, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.96, 66 +2026-05-14T17:10:34+08:00 +2026/05/14 17:10:34.108, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.23, 66 +2026-05-14T17:10:39+08:00 +2026/05/14 17:10:39.160, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.45, 66 +2026-05-14T17:10:44+08:00 +2026/05/14 17:10:44.183, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.03, 66 +2026-05-14T17:10:49+08:00 +2026/05/14 17:10:49.208, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 366.49, 65 +2026-05-14T17:10:54+08:00 +2026/05/14 17:10:54.233, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.75, 66 +2026-05-14T17:10:59+08:00 +2026/05/14 17:10:59.257, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.21, 65 +2026-05-14T17:11:04+08:00 +2026/05/14 17:11:04.281, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.73, 65 +2026-05-14T17:11:09+08:00 +2026/05/14 17:11:09.304, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.85, 66 +2026-05-14T17:11:14+08:00 +2026/05/14 17:11:14.327, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.87, 66 +2026-05-14T17:11:19+08:00 +2026/05/14 17:11:19.351, NVIDIA GeForce RTX 5090, 79, 35, 9607, 32607, 258.40, 61 +2026-05-14T17:11:24+08:00 +2026/05/14 17:11:24.400, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.56, 66 +2026-05-14T17:11:29+08:00 +2026/05/14 17:11:29.423, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.62, 67 +2026-05-14T17:11:34+08:00 +2026/05/14 17:11:34.499, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.05, 65 +2026-05-14T17:11:39+08:00 +2026/05/14 17:11:39.522, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.92, 65 +2026-05-14T17:11:44+08:00 +2026/05/14 17:11:44.545, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 65 +2026-05-14T17:11:49+08:00 +2026/05/14 17:11:49.588, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.61, 65 +2026-05-14T17:11:54+08:00 +2026/05/14 17:11:54.612, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.29, 65 +2026-05-14T17:11:59+08:00 +2026/05/14 17:11:59.636, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.53, 66 +2026-05-14T17:12:04+08:00 +2026/05/14 17:12:04.661, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.72, 65 +2026-05-14T17:12:09+08:00 +2026/05/14 17:12:09.687, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.27, 66 +2026-05-14T17:12:14+08:00 +2026/05/14 17:12:14.710, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.19, 66 +2026-05-14T17:12:19+08:00 +2026/05/14 17:12:19.741, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 365.24, 66 +2026-05-14T17:12:24+08:00 +2026/05/14 17:12:24.767, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.87, 65 +2026-05-14T17:12:29+08:00 +2026/05/14 17:12:29.793, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.57, 66 +2026-05-14T17:12:34+08:00 +2026/05/14 17:12:34.816, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 321.07, 60 +2026-05-14T17:12:39+08:00 +2026/05/14 17:12:39.837, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.36, 65 +2026-05-14T17:12:44+08:00 +2026/05/14 17:12:44.859, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.05, 65 +2026-05-14T17:12:49+08:00 +2026/05/14 17:12:49.883, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.98, 66 +2026-05-14T17:12:54+08:00 +2026/05/14 17:12:54.907, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.49, 66 +2026-05-14T17:12:59+08:00 +2026/05/14 17:12:59.932, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.76, 66 +2026-05-14T17:13:04+08:00 +2026/05/14 17:13:04.958, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.96, 64 +2026-05-14T17:13:09+08:00 +2026/05/14 17:13:09.989, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.67, 66 +2026-05-14T17:13:14+08:00 +2026/05/14 17:13:15.012, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.77, 66 +2026-05-14T17:13:20+08:00 +2026/05/14 17:13:20.035, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.52, 66 +2026-05-14T17:13:25+08:00 +2026/05/14 17:13:25.059, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.60, 66 +2026-05-14T17:13:30+08:00 +2026/05/14 17:13:30.083, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.12, 66 +2026-05-14T17:13:35+08:00 +2026/05/14 17:13:35.106, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.61, 66 +2026-05-14T17:13:40+08:00 +2026/05/14 17:13:40.129, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.84, 66 +2026-05-14T17:13:45+08:00 +2026/05/14 17:13:45.152, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.86, 66 +2026-05-14T17:13:50+08:00 +2026/05/14 17:13:50.177, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.71, 66 +2026-05-14T17:13:55+08:00 +2026/05/14 17:13:55.198, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.88, 66 +2026-05-14T17:14:00+08:00 +2026/05/14 17:14:00.222, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.54, 66 +2026-05-14T17:14:05+08:00 +2026/05/14 17:14:05.246, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.43, 66 +2026-05-14T17:14:10+08:00 +2026/05/14 17:14:10.270, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.51, 65 +2026-05-14T17:14:15+08:00 +2026/05/14 17:14:15.293, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.26, 66 +2026-05-14T17:14:20+08:00 +2026/05/14 17:14:20.319, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.78, 66 +2026-05-14T17:14:25+08:00 +2026/05/14 17:14:25.343, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.27, 66 +2026-05-14T17:14:30+08:00 +2026/05/14 17:14:30.367, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.26, 64 +2026-05-14T17:14:35+08:00 +2026/05/14 17:14:35.394, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.56, 65 +2026-05-14T17:14:40+08:00 +2026/05/14 17:14:40.417, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.95, 65 +2026-05-14T17:14:45+08:00 +2026/05/14 17:14:45.442, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.52, 66 +2026-05-14T17:14:50+08:00 +2026/05/14 17:14:50.471, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.98, 66 +2026-05-14T17:14:55+08:00 +2026/05/14 17:14:55.495, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.03, 66 +2026-05-14T17:15:00+08:00 +2026/05/14 17:15:00.519, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.82, 66 +2026-05-14T17:15:05+08:00 +2026/05/14 17:15:05.574, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.92, 65 +2026-05-14T17:15:10+08:00 +2026/05/14 17:15:10.599, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.04, 66 +2026-05-14T17:15:15+08:00 +2026/05/14 17:15:15.623, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.72, 66 +2026-05-14T17:15:20+08:00 +2026/05/14 17:15:20.646, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.48, 66 +2026-05-14T17:15:25+08:00 +2026/05/14 17:15:25.714, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.25, 66 +2026-05-14T17:15:30+08:00 +2026/05/14 17:15:30.738, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.87, 66 +2026-05-14T17:15:35+08:00 +2026/05/14 17:15:35.791, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.99, 66 +2026-05-14T17:15:40+08:00 +2026/05/14 17:15:40.836, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.89, 66 +2026-05-14T17:15:45+08:00 +2026/05/14 17:15:45.893, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.14, 66 +2026-05-14T17:15:50+08:00 +2026/05/14 17:15:50.917, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.33, 65 +2026-05-14T17:15:55+08:00 +2026/05/14 17:15:55.996, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.56, 66 +2026-05-14T17:16:01+08:00 +2026/05/14 17:16:01.019, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.03, 65 +2026-05-14T17:16:06+08:00 +2026/05/14 17:16:06.041, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.92, 66 +2026-05-14T17:16:11+08:00 +2026/05/14 17:16:11.095, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.93, 66 +2026-05-14T17:16:16+08:00 +2026/05/14 17:16:16.119, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.00, 66 +2026-05-14T17:16:21+08:00 +2026/05/14 17:16:21.143, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.03, 66 +2026-05-14T17:16:26+08:00 +2026/05/14 17:16:26.165, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 364.25, 66 +2026-05-14T17:16:31+08:00 +2026/05/14 17:16:31.189, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 65 +2026-05-14T17:16:36+08:00 +2026/05/14 17:16:36.214, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.00, 65 +2026-05-14T17:16:41+08:00 +2026/05/14 17:16:41.237, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.65, 66 +2026-05-14T17:16:46+08:00 +2026/05/14 17:16:46.262, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.23, 66 +2026-05-14T17:16:51+08:00 +2026/05/14 17:16:51.286, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 331.94, 66 +2026-05-14T17:16:56+08:00 +2026/05/14 17:16:56.309, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.01, 65 +2026-05-14T17:17:01+08:00 +2026/05/14 17:17:01.333, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 253.46, 65 +2026-05-14T17:17:06+08:00 +2026/05/14 17:17:06.359, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.37, 64 +2026-05-14T17:17:11+08:00 +2026/05/14 17:17:11.384, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.48, 66 +2026-05-14T17:17:16+08:00 +2026/05/14 17:17:16.409, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 66 +2026-05-14T17:17:21+08:00 +2026/05/14 17:17:21.440, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.51, 66 +2026-05-14T17:17:26+08:00 +2026/05/14 17:17:26.463, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.55, 66 +2026-05-14T17:17:31+08:00 +2026/05/14 17:17:31.486, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.42, 65 +2026-05-14T17:17:36+08:00 +2026/05/14 17:17:36.510, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.34, 65 +2026-05-14T17:17:41+08:00 +2026/05/14 17:17:41.534, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.78, 66 +2026-05-14T17:17:46+08:00 +2026/05/14 17:17:46.558, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.02, 67 +2026-05-14T17:17:51+08:00 +2026/05/14 17:17:51.581, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.78, 66 +2026-05-14T17:17:56+08:00 +2026/05/14 17:17:56.606, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.75, 66 +2026-05-14T17:18:01+08:00 +2026/05/14 17:18:01.629, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.75, 65 +2026-05-14T17:18:06+08:00 +2026/05/14 17:18:06.652, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.23, 67 +2026-05-14T17:18:11+08:00 +2026/05/14 17:18:11.675, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.11, 66 +2026-05-14T17:18:16+08:00 +2026/05/14 17:18:16.698, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 255.06, 65 +2026-05-14T17:18:21+08:00 +2026/05/14 17:18:21.720, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.23, 65 +2026-05-14T17:18:26+08:00 +2026/05/14 17:18:26.743, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.58, 66 +2026-05-14T17:18:31+08:00 +2026/05/14 17:18:31.767, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.61, 65 +2026-05-14T17:18:36+08:00 +2026/05/14 17:18:36.791, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.76, 66 +2026-05-14T17:18:41+08:00 +2026/05/14 17:18:41.814, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.54, 64 +2026-05-14T17:18:46+08:00 +2026/05/14 17:18:46.839, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.58, 66 +2026-05-14T17:18:51+08:00 +2026/05/14 17:18:51.862, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.25, 66 +2026-05-14T17:18:56+08:00 +2026/05/14 17:18:56.884, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.85, 66 +2026-05-14T17:19:01+08:00 +2026/05/14 17:19:01.909, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.49, 66 +2026-05-14T17:19:06+08:00 +2026/05/14 17:19:06.933, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.07, 66 +2026-05-14T17:19:11+08:00 +2026/05/14 17:19:11.959, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.46, 66 +2026-05-14T17:19:16+08:00 +2026/05/14 17:19:16.983, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.65, 66 +2026-05-14T17:19:21+08:00 +2026/05/14 17:19:22.005, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.47, 66 +2026-05-14T17:19:27+08:00 +2026/05/14 17:19:27.029, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.76, 65 +2026-05-14T17:19:32+08:00 +2026/05/14 17:19:32.053, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.59, 65 +2026-05-14T17:19:37+08:00 +2026/05/14 17:19:37.078, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.60, 66 +2026-05-14T17:19:42+08:00 +2026/05/14 17:19:42.101, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.33, 64 +2026-05-14T17:19:47+08:00 +2026/05/14 17:19:47.122, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.67, 65 +2026-05-14T17:19:52+08:00 +2026/05/14 17:19:52.146, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.84, 65 +2026-05-14T17:19:57+08:00 +2026/05/14 17:19:57.172, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 362.86, 65 +2026-05-14T17:20:02+08:00 +2026/05/14 17:20:02.199, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.54, 66 +2026-05-14T17:20:07+08:00 +2026/05/14 17:20:07.221, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.36, 66 +2026-05-14T17:20:12+08:00 +2026/05/14 17:20:12.243, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.46, 66 +2026-05-14T17:20:17+08:00 +2026/05/14 17:20:17.270, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.13, 65 +2026-05-14T17:20:22+08:00 +2026/05/14 17:20:22.294, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.40, 65 +2026-05-14T17:20:27+08:00 +2026/05/14 17:20:27.319, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.15, 66 +2026-05-14T17:20:32+08:00 +2026/05/14 17:20:32.342, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.96, 64 +2026-05-14T17:20:37+08:00 +2026/05/14 17:20:37.364, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.39, 65 +2026-05-14T17:20:42+08:00 +2026/05/14 17:20:42.388, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.40, 67 +2026-05-14T17:20:47+08:00 +2026/05/14 17:20:47.412, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.06, 66 +2026-05-14T17:20:52+08:00 +2026/05/14 17:20:52.437, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.84, 66 +2026-05-14T17:20:57+08:00 +2026/05/14 17:20:57.462, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.96, 66 +2026-05-14T17:21:02+08:00 +2026/05/14 17:21:02.486, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 301.82, 66 +2026-05-14T17:21:07+08:00 +2026/05/14 17:21:07.510, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.86, 66 +2026-05-14T17:21:12+08:00 +2026/05/14 17:21:12.533, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.52, 66 +2026-05-14T17:21:17+08:00 +2026/05/14 17:21:17.558, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.95, 66 +2026-05-14T17:21:22+08:00 +2026/05/14 17:21:22.582, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.52, 65 +2026-05-14T17:21:27+08:00 +2026/05/14 17:21:27.604, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.47, 65 +2026-05-14T17:21:32+08:00 +2026/05/14 17:21:32.629, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.14, 65 +2026-05-14T17:21:37+08:00 +2026/05/14 17:21:37.652, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.49, 66 +2026-05-14T17:21:42+08:00 +2026/05/14 17:21:42.675, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.25, 65 +2026-05-14T17:21:47+08:00 +2026/05/14 17:21:47.702, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 363.80, 66 +2026-05-14T17:21:52+08:00 +2026/05/14 17:21:52.724, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.85, 66 +2026-05-14T17:21:57+08:00 +2026/05/14 17:21:57.748, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 258.28, 65 +2026-05-14T17:22:02+08:00 +2026/05/14 17:22:02.771, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.31, 64 +2026-05-14T17:22:07+08:00 +2026/05/14 17:22:07.795, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 362.70, 66 +2026-05-14T17:22:12+08:00 +2026/05/14 17:22:12.822, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.21, 66 +2026-05-14T17:22:17+08:00 +2026/05/14 17:22:17.845, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.33, 65 +2026-05-14T17:22:22+08:00 +2026/05/14 17:22:22.869, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.70, 66 +2026-05-14T17:22:27+08:00 +2026/05/14 17:22:27.892, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.43, 66 +2026-05-14T17:22:32+08:00 +2026/05/14 17:22:32.916, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.58, 65 +2026-05-14T17:22:37+08:00 +2026/05/14 17:22:37.940, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.52, 66 +2026-05-14T17:22:42+08:00 +2026/05/14 17:22:42.962, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.47, 66 +2026-05-14T17:22:47+08:00 +2026/05/14 17:22:47.984, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.28, 66 +2026-05-14T17:22:52+08:00 +2026/05/14 17:22:53.008, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.96, 64 +2026-05-14T17:22:58+08:00 +2026/05/14 17:22:58.032, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.87, 65 +2026-05-14T17:23:03+08:00 +2026/05/14 17:23:03.108, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.53, 66 +2026-05-14T17:23:08+08:00 +2026/05/14 17:23:08.129, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.26, 66 +2026-05-14T17:23:13+08:00 +2026/05/14 17:23:13.173, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.11, 65 +2026-05-14T17:23:18+08:00 +2026/05/14 17:23:18.217, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.01, 65 +2026-05-14T17:23:23+08:00 +2026/05/14 17:23:23.240, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.21, 65 +2026-05-14T17:23:28+08:00 +2026/05/14 17:23:28.265, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.81, 65 +2026-05-14T17:23:33+08:00 +2026/05/14 17:23:33.289, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.61, 65 +2026-05-14T17:23:38+08:00 +2026/05/14 17:23:38.320, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.66, 65 +2026-05-14T17:23:43+08:00 +2026/05/14 17:23:43.343, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.21, 67 +2026-05-14T17:23:48+08:00 +2026/05/14 17:23:48.366, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.42, 66 +2026-05-14T17:23:53+08:00 +2026/05/14 17:23:53.389, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.03, 67 +2026-05-14T17:23:58+08:00 +2026/05/14 17:23:58.414, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.20, 66 +2026-05-14T17:24:03+08:00 +2026/05/14 17:24:03.439, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.46, 66 +2026-05-14T17:24:08+08:00 +2026/05/14 17:24:08.468, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.19, 66 +2026-05-14T17:24:13+08:00 +2026/05/14 17:24:13.491, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.92, 66 +2026-05-14T17:24:18+08:00 +2026/05/14 17:24:18.514, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.74, 66 +2026-05-14T17:24:23+08:00 +2026/05/14 17:24:23.539, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.13, 64 +2026-05-14T17:24:28+08:00 +2026/05/14 17:24:28.563, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.96, 64 +2026-05-14T17:24:33+08:00 +2026/05/14 17:24:33.586, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.14, 65 +2026-05-14T17:24:38+08:00 +2026/05/14 17:24:38.610, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.59, 67 +2026-05-14T17:24:43+08:00 +2026/05/14 17:24:43.632, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.36, 67 +2026-05-14T17:24:48+08:00 +2026/05/14 17:24:48.661, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.91, 67 +2026-05-14T17:24:53+08:00 +2026/05/14 17:24:53.684, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.70, 66 +2026-05-14T17:24:58+08:00 +2026/05/14 17:24:58.707, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.95, 67 +2026-05-14T17:25:03+08:00 +2026/05/14 17:25:03.730, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.09, 67 +2026-05-14T17:25:08+08:00 +2026/05/14 17:25:08.754, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.04, 65 +2026-05-14T17:25:13+08:00 +2026/05/14 17:25:13.778, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.35, 66 +2026-05-14T17:25:18+08:00 +2026/05/14 17:25:18.801, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.77, 66 +2026-05-14T17:25:23+08:00 +2026/05/14 17:25:23.829, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.24, 66 +2026-05-14T17:25:28+08:00 +2026/05/14 17:25:28.854, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.31, 66 +2026-05-14T17:25:33+08:00 +2026/05/14 17:25:33.878, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.98, 67 +2026-05-14T17:25:38+08:00 +2026/05/14 17:25:38.901, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.73, 67 +2026-05-14T17:25:43+08:00 +2026/05/14 17:25:43.923, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.03, 67 +2026-05-14T17:25:48+08:00 +2026/05/14 17:25:48.950, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.71, 66 +2026-05-14T17:25:53+08:00 +2026/05/14 17:25:53.976, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.60, 66 +2026-05-14T17:25:58+08:00 +2026/05/14 17:25:59.002, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 326.24, 65 +2026-05-14T17:26:04+08:00 +2026/05/14 17:26:04.025, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.74, 66 +2026-05-14T17:26:09+08:00 +2026/05/14 17:26:09.048, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.96, 66 +2026-05-14T17:26:14+08:00 +2026/05/14 17:26:14.072, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.42, 66 +2026-05-14T17:26:19+08:00 +2026/05/14 17:26:19.097, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 66 +2026-05-14T17:26:24+08:00 +2026/05/14 17:26:24.120, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 66 +2026-05-14T17:26:29+08:00 +2026/05/14 17:26:29.146, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.00, 66 +2026-05-14T17:26:34+08:00 +2026/05/14 17:26:34.168, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.69, 67 +2026-05-14T17:26:39+08:00 +2026/05/14 17:26:39.191, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.54, 66 +2026-05-14T17:26:44+08:00 +2026/05/14 17:26:44.217, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.54, 65 +2026-05-14T17:26:49+08:00 +2026/05/14 17:26:49.243, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.24, 66 +2026-05-14T17:26:54+08:00 +2026/05/14 17:26:54.268, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.50, 66 +2026-05-14T17:26:59+08:00 +2026/05/14 17:26:59.293, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.12, 67 +2026-05-14T17:27:04+08:00 +2026/05/14 17:27:04.316, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.74, 67 +2026-05-14T17:27:09+08:00 +2026/05/14 17:27:09.346, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.96, 66 +2026-05-14T17:27:14+08:00 +2026/05/14 17:27:14.370, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.07, 65 +2026-05-14T17:27:19+08:00 +2026/05/14 17:27:19.394, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.87, 66 +2026-05-14T17:27:24+08:00 +2026/05/14 17:27:24.420, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.98, 66 +2026-05-14T17:27:29+08:00 +2026/05/14 17:27:29.446, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.21, 65 +2026-05-14T17:27:34+08:00 +2026/05/14 17:27:34.471, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.80, 66 +2026-05-14T17:27:39+08:00 +2026/05/14 17:27:39.494, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.64, 66 +2026-05-14T17:27:44+08:00 +2026/05/14 17:27:44.518, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.83, 66 +2026-05-14T17:27:49+08:00 +2026/05/14 17:27:49.540, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.01, 66 +2026-05-14T17:27:54+08:00 +2026/05/14 17:27:54.564, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 354.47, 67 +2026-05-14T17:27:59+08:00 +2026/05/14 17:27:59.587, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.06, 65 +2026-05-14T17:28:04+08:00 +2026/05/14 17:28:04.611, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.44, 67 +2026-05-14T17:28:09+08:00 +2026/05/14 17:28:09.634, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.27, 66 +2026-05-14T17:28:14+08:00 +2026/05/14 17:28:14.658, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.11, 67 +2026-05-14T17:28:19+08:00 +2026/05/14 17:28:19.683, NVIDIA GeForce RTX 5090, 79, 35, 9607, 32607, 228.90, 61 +2026-05-14T17:28:24+08:00 +2026/05/14 17:28:24.707, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.33, 67 +2026-05-14T17:28:29+08:00 +2026/05/14 17:28:29.730, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.35, 66 +2026-05-14T17:28:34+08:00 +2026/05/14 17:28:34.758, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.44, 65 +2026-05-14T17:28:39+08:00 +2026/05/14 17:28:39.783, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.65, 66 +2026-05-14T17:28:44+08:00 +2026/05/14 17:28:44.805, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.12, 67 +2026-05-14T17:28:49+08:00 +2026/05/14 17:28:49.832, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.71, 67 +2026-05-14T17:28:54+08:00 +2026/05/14 17:28:54.855, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.52, 66 +2026-05-14T17:28:59+08:00 +2026/05/14 17:28:59.878, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.36, 67 +2026-05-14T17:29:04+08:00 +2026/05/14 17:29:04.901, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.43, 66 +2026-05-14T17:29:09+08:00 +2026/05/14 17:29:09.925, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.78, 66 +2026-05-14T17:29:14+08:00 +2026/05/14 17:29:14.948, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.31, 65 +2026-05-14T17:29:19+08:00 +2026/05/14 17:29:19.971, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.90, 66 +2026-05-14T17:29:24+08:00 +2026/05/14 17:29:24.994, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.88, 66 +2026-05-14T17:29:30+08:00 +2026/05/14 17:29:30.063, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.24, 66 +2026-05-14T17:29:35+08:00 +2026/05/14 17:29:35.102, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.25, 66 +2026-05-14T17:29:40+08:00 +2026/05/14 17:29:40.125, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.00, 67 +2026-05-14T17:29:45+08:00 +2026/05/14 17:29:45.166, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.16, 65 +2026-05-14T17:29:50+08:00 +2026/05/14 17:29:50.209, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 262.36, 66 +2026-05-14T17:29:55+08:00 +2026/05/14 17:29:55.236, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.33, 66 +2026-05-14T17:30:00+08:00 +2026/05/14 17:30:00.309, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.23, 67 +2026-05-14T17:30:05+08:00 +2026/05/14 17:30:05.333, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.45, 67 +2026-05-14T17:30:10+08:00 +2026/05/14 17:30:10.358, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.67, 67 +2026-05-14T17:30:15+08:00 +2026/05/14 17:30:15.381, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.29, 66 +2026-05-14T17:30:20+08:00 +2026/05/14 17:30:20.406, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.67, 66 +2026-05-14T17:30:25+08:00 +2026/05/14 17:30:25.431, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.04, 67 +2026-05-14T17:30:30+08:00 +2026/05/14 17:30:30.453, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 266.45, 65 +2026-05-14T17:30:35+08:00 +2026/05/14 17:30:35.477, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 366.72, 66 +2026-05-14T17:30:40+08:00 +2026/05/14 17:30:40.502, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.82, 66 +2026-05-14T17:30:45+08:00 +2026/05/14 17:30:45.527, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.90, 67 +2026-05-14T17:30:50+08:00 +2026/05/14 17:30:50.551, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 366.56, 66 +2026-05-14T17:30:55+08:00 +2026/05/14 17:30:55.574, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 366.45, 66 +2026-05-14T17:31:00+08:00 +2026/05/14 17:31:00.598, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.55, 67 +2026-05-14T17:31:05+08:00 +2026/05/14 17:31:05.621, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.06, 67 +2026-05-14T17:31:10+08:00 +2026/05/14 17:31:10.646, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.56, 67 +2026-05-14T17:31:15+08:00 +2026/05/14 17:31:15.668, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 367.89, 66 +2026-05-14T17:31:20+08:00 +2026/05/14 17:31:20.693, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 366.47, 66 +2026-05-14T17:31:25+08:00 +2026/05/14 17:31:25.717, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.49, 67 +2026-05-14T17:31:30+08:00 +2026/05/14 17:31:30.744, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 367.06, 67 +2026-05-14T17:31:35+08:00 +2026/05/14 17:31:35.767, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.52, 66 +2026-05-14T17:31:40+08:00 +2026/05/14 17:31:40.792, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.49, 67 +2026-05-14T17:31:45+08:00 +2026/05/14 17:31:45.816, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.63, 65 +2026-05-14T17:31:50+08:00 +2026/05/14 17:31:50.840, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.60, 65 +2026-05-14T17:31:55+08:00 +2026/05/14 17:31:55.864, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.98, 65 +2026-05-14T17:32:00+08:00 +2026/05/14 17:32:00.887, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 366.50, 65 +2026-05-14T17:32:05+08:00 +2026/05/14 17:32:05.915, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.16, 65 +2026-05-14T17:32:10+08:00 +2026/05/14 17:32:10.938, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.56, 65 +2026-05-14T17:32:15+08:00 +2026/05/14 17:32:15.963, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.98, 65 +2026-05-14T17:32:20+08:00 +2026/05/14 17:32:20.986, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.18, 65 +2026-05-14T17:32:26+08:00 +2026/05/14 17:32:26.016, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.86, 67 +2026-05-14T17:32:31+08:00 +2026/05/14 17:32:31.040, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.18, 66 +2026-05-14T17:32:36+08:00 +2026/05/14 17:32:36.064, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.08, 66 +2026-05-14T17:32:41+08:00 +2026/05/14 17:32:41.113, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.85, 66 +2026-05-14T17:32:46+08:00 +2026/05/14 17:32:46.136, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.29, 66 +2026-05-14T17:32:51+08:00 +2026/05/14 17:32:51.161, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.63, 66 +2026-05-14T17:32:56+08:00 +2026/05/14 17:32:56.200, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.51, 66 +2026-05-14T17:33:01+08:00 +2026/05/14 17:33:01.225, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 336.61, 67 +2026-05-14T17:33:06+08:00 +2026/05/14 17:33:06.249, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.74, 67 +2026-05-14T17:33:11+08:00 +2026/05/14 17:33:11.273, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.71, 66 +2026-05-14T17:33:16+08:00 +2026/05/14 17:33:16.304, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.68, 66 +2026-05-14T17:33:21+08:00 +2026/05/14 17:33:21.342, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 367.93, 66 +2026-05-14T17:33:26+08:00 +2026/05/14 17:33:26.368, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.37, 66 +2026-05-14T17:33:31+08:00 +2026/05/14 17:33:31.393, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.67, 66 +2026-05-14T17:33:36+08:00 +2026/05/14 17:33:36.432, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.38, 66 +2026-05-14T17:33:41+08:00 +2026/05/14 17:33:41.457, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.62, 62 +2026-05-14T17:33:46+08:00 +2026/05/14 17:33:46.498, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.12, 64 +2026-05-14T17:33:51+08:00 +2026/05/14 17:33:51.522, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.32, 64 +2026-05-14T17:33:56+08:00 +2026/05/14 17:33:56.544, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.58, 63 +2026-05-14T17:34:01+08:00 +2026/05/14 17:34:01.568, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.54, 63 +2026-05-14T17:34:06+08:00 +2026/05/14 17:34:06.623, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.20, 63 +2026-05-14T17:34:11+08:00 +2026/05/14 17:34:11.648, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.94, 63 +2026-05-14T17:34:16+08:00 +2026/05/14 17:34:16.690, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.02, 63 +2026-05-14T17:34:21+08:00 +2026/05/14 17:34:21.728, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.04, 64 +2026-05-14T17:34:26+08:00 +2026/05/14 17:34:26.772, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.73, 64 +2026-05-14T17:34:31+08:00 +2026/05/14 17:34:31.814, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 325.70, 59 +2026-05-14T17:34:36+08:00 +2026/05/14 17:34:36.856, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.58, 64 +2026-05-14T17:34:41+08:00 +2026/05/14 17:34:41.898, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.02, 64 +2026-05-14T17:34:46+08:00 +2026/05/14 17:34:46.940, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.12, 64 +2026-05-14T17:34:51+08:00 +2026/05/14 17:34:51.984, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.98, 64 +2026-05-14T17:34:57+08:00 +2026/05/14 17:34:57.026, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.04, 63 +2026-05-14T17:35:02+08:00 +2026/05/14 17:35:02.050, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.03, 63 +2026-05-14T17:35:07+08:00 +2026/05/14 17:35:07.074, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.86, 63 +2026-05-14T17:35:12+08:00 +2026/05/14 17:35:12.098, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 362.37, 63 +2026-05-14T17:35:17+08:00 +2026/05/14 17:35:17.122, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.22, 63 +2026-05-14T17:35:22+08:00 +2026/05/14 17:35:22.147, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.30, 63 +2026-05-14T17:35:27+08:00 +2026/05/14 17:35:27.170, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.45, 63 +2026-05-14T17:35:32+08:00 +2026/05/14 17:35:32.194, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.86, 64 +2026-05-14T17:35:37+08:00 +2026/05/14 17:35:37.218, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.43, 65 +2026-05-14T17:35:42+08:00 +2026/05/14 17:35:42.242, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.64, 65 +2026-05-14T17:35:47+08:00 +2026/05/14 17:35:47.265, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.61, 64 +2026-05-14T17:35:52+08:00 +2026/05/14 17:35:52.288, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.93, 63 +2026-05-14T17:35:57+08:00 +2026/05/14 17:35:57.312, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.23, 63 +2026-05-14T17:36:02+08:00 +2026/05/14 17:36:02.336, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.08, 63 +2026-05-14T17:36:07+08:00 +2026/05/14 17:36:07.359, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 280.11, 64 +2026-05-14T17:36:12+08:00 +2026/05/14 17:36:12.383, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.17, 65 +2026-05-14T17:36:17+08:00 +2026/05/14 17:36:17.406, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.19, 64 +2026-05-14T17:36:22+08:00 +2026/05/14 17:36:22.430, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.55, 65 +2026-05-14T17:36:27+08:00 +2026/05/14 17:36:27.452, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.79, 65 +2026-05-14T17:36:32+08:00 +2026/05/14 17:36:32.475, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.30, 65 +2026-05-14T17:36:37+08:00 +2026/05/14 17:36:37.499, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 364.20, 63 +2026-05-14T17:36:42+08:00 +2026/05/14 17:36:42.522, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.14, 64 +2026-05-14T17:36:47+08:00 +2026/05/14 17:36:47.546, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 285.16, 64 +2026-05-14T17:36:52+08:00 +2026/05/14 17:36:52.570, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.67, 65 +2026-05-14T17:36:57+08:00 +2026/05/14 17:36:57.594, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.75, 64 +2026-05-14T17:37:02+08:00 +2026/05/14 17:37:02.617, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.56, 64 +2026-05-14T17:37:07+08:00 +2026/05/14 17:37:07.640, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.95, 63 +2026-05-14T17:37:12+08:00 +2026/05/14 17:37:12.664, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.29, 64 +2026-05-14T17:37:17+08:00 +2026/05/14 17:37:17.693, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.31, 64 +2026-05-14T17:37:22+08:00 +2026/05/14 17:37:22.717, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.63, 65 +2026-05-14T17:37:27+08:00 +2026/05/14 17:37:27.741, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.29, 65 +2026-05-14T17:37:32+08:00 +2026/05/14 17:37:32.766, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.63, 65 +2026-05-14T17:37:37+08:00 +2026/05/14 17:37:37.788, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.88, 64 +2026-05-14T17:37:42+08:00 +2026/05/14 17:37:42.814, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.33, 64 +2026-05-14T17:37:47+08:00 +2026/05/14 17:37:47.837, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.08, 64 +2026-05-14T17:37:52+08:00 +2026/05/14 17:37:52.859, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.15, 65 +2026-05-14T17:37:57+08:00 +2026/05/14 17:37:57.885, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.75, 64 +2026-05-14T17:38:02+08:00 +2026/05/14 17:38:02.908, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.85, 64 +2026-05-14T17:38:07+08:00 +2026/05/14 17:38:07.932, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.55, 64 +2026-05-14T17:38:12+08:00 +2026/05/14 17:38:12.956, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.12, 65 +2026-05-14T17:38:17+08:00 +2026/05/14 17:38:17.980, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.92, 64 +2026-05-14T17:38:22+08:00 +2026/05/14 17:38:23.004, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.59, 65 +2026-05-14T17:38:28+08:00 +2026/05/14 17:38:28.031, NVIDIA GeForce RTX 5090, 7, 2, 9607, 32607, 227.10, 58 +2026-05-14T17:38:33+08:00 +2026/05/14 17:38:33.053, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.18, 64 +2026-05-14T17:38:38+08:00 +2026/05/14 17:38:38.075, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.74, 64 +2026-05-14T17:38:43+08:00 +2026/05/14 17:38:43.101, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.56, 65 +2026-05-14T17:38:48+08:00 +2026/05/14 17:38:48.125, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.85, 65 +2026-05-14T17:38:53+08:00 +2026/05/14 17:38:53.152, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.12, 64 +2026-05-14T17:38:58+08:00 +2026/05/14 17:38:58.176, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.34, 65 +2026-05-14T17:39:03+08:00 +2026/05/14 17:39:03.198, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.77, 65 +2026-05-14T17:39:08+08:00 +2026/05/14 17:39:08.221, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.49, 65 +2026-05-14T17:39:13+08:00 +2026/05/14 17:39:13.248, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.14, 65 +2026-05-14T17:39:18+08:00 +2026/05/14 17:39:18.271, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.77, 65 +2026-05-14T17:39:23+08:00 +2026/05/14 17:39:23.294, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 234.12, 63 +2026-05-14T17:39:28+08:00 +2026/05/14 17:39:28.318, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.02, 64 +2026-05-14T17:39:33+08:00 +2026/05/14 17:39:33.341, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.34, 64 +2026-05-14T17:39:38+08:00 +2026/05/14 17:39:38.367, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.74, 65 +2026-05-14T17:39:43+08:00 +2026/05/14 17:39:43.391, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.77, 64 +2026-05-14T17:39:48+08:00 +2026/05/14 17:39:48.416, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 363.43, 65 +2026-05-14T17:39:53+08:00 +2026/05/14 17:39:53.439, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.20, 65 +2026-05-14T17:39:58+08:00 +2026/05/14 17:39:58.467, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.38, 64 +2026-05-14T17:40:03+08:00 +2026/05/14 17:40:03.490, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.30, 65 +2026-05-14T17:40:08+08:00 +2026/05/14 17:40:08.516, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.18, 65 +2026-05-14T17:40:13+08:00 +2026/05/14 17:40:13.539, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.22, 64 +2026-05-14T17:40:18+08:00 +2026/05/14 17:40:18.562, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.79, 64 +2026-05-14T17:40:23+08:00 +2026/05/14 17:40:23.586, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.02, 64 +2026-05-14T17:40:28+08:00 +2026/05/14 17:40:28.610, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.79, 65 +2026-05-14T17:40:33+08:00 +2026/05/14 17:40:33.637, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.44, 65 +2026-05-14T17:40:38+08:00 +2026/05/14 17:40:38.660, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.44, 64 +2026-05-14T17:40:43+08:00 +2026/05/14 17:40:43.684, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.80, 64 +2026-05-14T17:40:48+08:00 +2026/05/14 17:40:48.709, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.17, 63 +2026-05-14T17:40:53+08:00 +2026/05/14 17:40:53.736, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.99, 64 +2026-05-14T17:40:58+08:00 +2026/05/14 17:40:58.759, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.24, 64 +2026-05-14T17:41:03+08:00 +2026/05/14 17:41:03.782, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.57, 65 +2026-05-14T17:41:08+08:00 +2026/05/14 17:41:08.812, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.98, 65 +2026-05-14T17:41:13+08:00 +2026/05/14 17:41:13.835, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 270.36, 63 +2026-05-14T17:41:18+08:00 +2026/05/14 17:41:18.859, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.18, 64 +2026-05-14T17:41:23+08:00 +2026/05/14 17:41:23.884, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.87, 64 +2026-05-14T17:41:28+08:00 +2026/05/14 17:41:28.907, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.11, 63 +2026-05-14T17:41:33+08:00 +2026/05/14 17:41:33.930, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.70, 63 +2026-05-14T17:41:38+08:00 +2026/05/14 17:41:38.954, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.22, 64 +2026-05-14T17:41:43+08:00 +2026/05/14 17:41:43.978, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.12, 64 +2026-05-14T17:41:48+08:00 +2026/05/14 17:41:49.002, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.05, 64 +2026-05-14T17:41:54+08:00 +2026/05/14 17:41:54.026, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.63, 65 +2026-05-14T17:41:59+08:00 +2026/05/14 17:41:59.049, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.86, 64 +2026-05-14T17:42:04+08:00 +2026/05/14 17:42:04.073, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.41, 64 +2026-05-14T17:42:09+08:00 +2026/05/14 17:42:09.098, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.58, 64 +2026-05-14T17:42:14+08:00 +2026/05/14 17:42:14.121, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.15, 64 +2026-05-14T17:42:19+08:00 +2026/05/14 17:42:19.146, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.89, 64 +2026-05-14T17:42:24+08:00 +2026/05/14 17:42:24.171, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.39, 64 +2026-05-14T17:42:29+08:00 +2026/05/14 17:42:29.193, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.16, 64 +2026-05-14T17:42:34+08:00 +2026/05/14 17:42:34.217, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.16, 65 +2026-05-14T17:42:39+08:00 +2026/05/14 17:42:39.242, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.08, 64 +2026-05-14T17:42:44+08:00 +2026/05/14 17:42:44.266, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.02, 64 +2026-05-14T17:42:49+08:00 +2026/05/14 17:42:49.293, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.35, 64 +2026-05-14T17:42:54+08:00 +2026/05/14 17:42:54.316, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.30, 65 +2026-05-14T17:42:59+08:00 +2026/05/14 17:42:59.340, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.82, 64 +2026-05-14T17:43:04+08:00 +2026/05/14 17:43:04.363, NVIDIA GeForce RTX 5090, 80, 34, 9607, 32607, 244.73, 64 +2026-05-14T17:43:09+08:00 +2026/05/14 17:43:09.386, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 363.79, 65 +2026-05-14T17:43:14+08:00 +2026/05/14 17:43:14.412, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.45, 65 +2026-05-14T17:43:19+08:00 +2026/05/14 17:43:19.435, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.96, 65 +2026-05-14T17:43:24+08:00 +2026/05/14 17:43:24.459, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.52, 65 +2026-05-14T17:43:29+08:00 +2026/05/14 17:43:29.487, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.20, 65 +2026-05-14T17:43:34+08:00 +2026/05/14 17:43:34.510, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.05, 65 +2026-05-14T17:43:39+08:00 +2026/05/14 17:43:39.534, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.05, 64 +2026-05-14T17:43:44+08:00 +2026/05/14 17:43:44.558, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.76, 65 +2026-05-14T17:43:49+08:00 +2026/05/14 17:43:49.581, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.02, 64 +2026-05-14T17:43:54+08:00 +2026/05/14 17:43:54.605, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.48, 65 +2026-05-14T17:43:59+08:00 +2026/05/14 17:43:59.628, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.21, 65 +2026-05-14T17:44:04+08:00 +2026/05/14 17:44:04.651, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.50, 64 +2026-05-14T17:44:09+08:00 +2026/05/14 17:44:09.674, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.81, 65 +2026-05-14T17:44:14+08:00 +2026/05/14 17:44:14.698, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.51, 65 +2026-05-14T17:44:19+08:00 +2026/05/14 17:44:19.721, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.47, 64 +2026-05-14T17:44:24+08:00 +2026/05/14 17:44:24.745, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.67, 65 +2026-05-14T17:44:29+08:00 +2026/05/14 17:44:29.769, NVIDIA GeForce RTX 5090, 88, 36, 9607, 32607, 362.00, 64 +2026-05-14T17:44:34+08:00 +2026/05/14 17:44:34.796, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.71, 65 +2026-05-14T17:44:39+08:00 +2026/05/14 17:44:39.822, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.73, 64 +2026-05-14T17:44:44+08:00 +2026/05/14 17:44:44.845, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.23, 64 +2026-05-14T17:44:49+08:00 +2026/05/14 17:44:49.871, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.74, 64 +2026-05-14T17:44:54+08:00 +2026/05/14 17:44:54.895, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.70, 64 +2026-05-14T17:44:59+08:00 +2026/05/14 17:44:59.936, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 357.02, 63 +2026-05-14T17:45:04+08:00 +2026/05/14 17:45:04.973, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 361.31, 65 +2026-05-14T17:45:09+08:00 +2026/05/14 17:45:09.999, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.42, 65 +2026-05-14T17:45:15+08:00 +2026/05/14 17:45:15.022, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.24, 64 +2026-05-14T17:45:20+08:00 +2026/05/14 17:45:20.064, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 358.51, 65 +2026-05-14T17:45:25+08:00 +2026/05/14 17:45:25.088, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.68, 65 +2026-05-14T17:45:30+08:00 +2026/05/14 17:45:30.153, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.78, 64 +2026-05-14T17:45:35+08:00 +2026/05/14 17:45:35.176, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.03, 65 +2026-05-14T17:45:40+08:00 +2026/05/14 17:45:40.227, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.51, 64 +2026-05-14T17:45:45+08:00 +2026/05/14 17:45:45.258, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.61, 65 +2026-05-14T17:45:50+08:00 +2026/05/14 17:45:50.281, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.20, 65 +2026-05-14T17:45:55+08:00 +2026/05/14 17:45:55.322, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.72, 64 +2026-05-14T17:46:00+08:00 +2026/05/14 17:46:00.366, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.20, 64 +2026-05-14T17:46:05+08:00 +2026/05/14 17:46:05.389, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.25, 65 +2026-05-14T17:46:10+08:00 +2026/05/14 17:46:10.431, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.66, 65 +2026-05-14T17:46:15+08:00 +2026/05/14 17:46:15.455, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 301.88, 64 +2026-05-14T17:46:20+08:00 +2026/05/14 17:46:20.478, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.14, 65 +2026-05-14T17:46:25+08:00 +2026/05/14 17:46:25.521, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.87, 64 +2026-05-14T17:46:30+08:00 +2026/05/14 17:46:30.547, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.60, 63 +2026-05-14T17:46:35+08:00 +2026/05/14 17:46:35.572, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.74, 63 +2026-05-14T17:46:40+08:00 +2026/05/14 17:46:40.599, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.69, 64 +2026-05-14T17:46:45+08:00 +2026/05/14 17:46:45.622, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.80, 64 +2026-05-14T17:46:50+08:00 +2026/05/14 17:46:50.646, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.06, 64 +2026-05-14T17:46:55+08:00 +2026/05/14 17:46:55.670, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.11, 64 +2026-05-14T17:47:00+08:00 +2026/05/14 17:47:00.691, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.76, 65 +2026-05-14T17:47:05+08:00 +2026/05/14 17:47:05.713, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.09, 65 +2026-05-14T17:47:10+08:00 +2026/05/14 17:47:10.736, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.52, 63 +2026-05-14T17:47:15+08:00 +2026/05/14 17:47:15.759, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.46, 65 +2026-05-14T17:47:20+08:00 +2026/05/14 17:47:20.783, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.21, 65 +2026-05-14T17:47:25+08:00 +2026/05/14 17:47:25.807, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.20, 64 +2026-05-14T17:47:30+08:00 +2026/05/14 17:47:30.832, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.97, 65 +2026-05-14T17:47:35+08:00 +2026/05/14 17:47:35.856, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 363.17, 64 +2026-05-14T17:47:40+08:00 +2026/05/14 17:47:40.879, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.03, 63 +2026-05-14T17:47:45+08:00 +2026/05/14 17:47:45.902, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.13, 63 +2026-05-14T17:47:50+08:00 +2026/05/14 17:47:50.926, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.97, 65 +2026-05-14T17:47:55+08:00 +2026/05/14 17:47:55.949, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.80, 64 +2026-05-14T17:48:00+08:00 +2026/05/14 17:48:00.975, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.57, 65 +2026-05-14T17:48:05+08:00 +2026/05/14 17:48:06.001, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 213.76, 65 +2026-05-14T17:48:11+08:00 +2026/05/14 17:48:11.024, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.15, 65 +2026-05-14T17:48:16+08:00 +2026/05/14 17:48:16.050, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.76, 65 +2026-05-14T17:48:21+08:00 +2026/05/14 17:48:21.077, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.74, 65 +2026-05-14T17:48:26+08:00 +2026/05/14 17:48:26.102, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.22, 64 +2026-05-14T17:48:31+08:00 +2026/05/14 17:48:31.125, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.16, 65 +2026-05-14T17:48:36+08:00 +2026/05/14 17:48:36.152, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.35, 66 +2026-05-14T17:48:41+08:00 +2026/05/14 17:48:41.177, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.08, 65 +2026-05-14T17:48:46+08:00 +2026/05/14 17:48:46.201, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.85, 66 +2026-05-14T17:48:51+08:00 +2026/05/14 17:48:51.226, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.69, 64 +2026-05-14T17:48:56+08:00 +2026/05/14 17:48:56.249, NVIDIA GeForce RTX 5090, 21, 15, 9607, 32607, 226.35, 63 +2026-05-14T17:49:01+08:00 +2026/05/14 17:49:01.274, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.95, 64 +2026-05-14T17:49:06+08:00 +2026/05/14 17:49:06.300, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.87, 64 +2026-05-14T17:49:11+08:00 +2026/05/14 17:49:11.324, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.72, 65 +2026-05-14T17:49:16+08:00 +2026/05/14 17:49:16.349, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.46, 65 +2026-05-14T17:49:21+08:00 +2026/05/14 17:49:21.373, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.29, 64 +2026-05-14T17:49:26+08:00 +2026/05/14 17:49:26.397, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.10, 64 +2026-05-14T17:49:31+08:00 +2026/05/14 17:49:31.421, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.34, 65 +2026-05-14T17:49:36+08:00 +2026/05/14 17:49:36.449, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.51, 65 +2026-05-14T17:49:41+08:00 +2026/05/14 17:49:41.478, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.52, 65 +2026-05-14T17:49:46+08:00 +2026/05/14 17:49:46.503, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.65, 65 +2026-05-14T17:49:51+08:00 +2026/05/14 17:49:51.527, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 363.81, 66 +2026-05-14T17:49:56+08:00 +2026/05/14 17:49:56.555, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.00, 65 +2026-05-14T17:50:01+08:00 +2026/05/14 17:50:01.578, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 364.36, 66 +2026-05-14T17:50:06+08:00 +2026/05/14 17:50:06.601, NVIDIA GeForce RTX 5090, 57, 20, 9607, 32607, 256.48, 64 +2026-05-14T17:50:11+08:00 +2026/05/14 17:50:11.626, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.42, 65 +2026-05-14T17:50:16+08:00 +2026/05/14 17:50:16.649, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.88, 65 +2026-05-14T17:50:21+08:00 +2026/05/14 17:50:21.673, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.17, 65 +2026-05-14T17:50:26+08:00 +2026/05/14 17:50:26.698, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.44, 65 +2026-05-14T17:50:31+08:00 +2026/05/14 17:50:31.722, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 269.36, 64 +2026-05-14T17:50:36+08:00 +2026/05/14 17:50:36.746, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.56, 65 +2026-05-14T17:50:41+08:00 +2026/05/14 17:50:41.769, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.23, 65 +2026-05-14T17:50:46+08:00 +2026/05/14 17:50:46.793, NVIDIA GeForce RTX 5090, 44, 23, 9607, 32607, 353.14, 60 +2026-05-14T17:50:51+08:00 +2026/05/14 17:50:51.817, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.77, 65 +2026-05-14T17:50:56+08:00 +2026/05/14 17:50:56.845, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.52, 65 +2026-05-14T17:51:01+08:00 +2026/05/14 17:51:01.869, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.29, 65 +2026-05-14T17:51:06+08:00 +2026/05/14 17:51:06.896, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.05, 65 +2026-05-14T17:51:11+08:00 +2026/05/14 17:51:11.919, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.40, 66 +2026-05-14T17:51:16+08:00 +2026/05/14 17:51:16.945, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.62, 65 +2026-05-14T17:51:21+08:00 +2026/05/14 17:51:21.969, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 228.02, 64 +2026-05-14T17:51:26+08:00 +2026/05/14 17:51:26.992, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.11, 65 +2026-05-14T17:51:32+08:00 +2026/05/14 17:51:32.017, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 354.30, 65 +2026-05-14T17:51:37+08:00 +2026/05/14 17:51:37.040, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.99, 64 +2026-05-14T17:51:42+08:00 +2026/05/14 17:51:42.063, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.22, 64 +2026-05-14T17:51:47+08:00 +2026/05/14 17:51:47.087, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.87, 64 +2026-05-14T17:51:52+08:00 +2026/05/14 17:51:52.114, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.26, 63 +2026-05-14T17:51:57+08:00 +2026/05/14 17:51:57.139, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.01, 64 +2026-05-14T17:52:02+08:00 +2026/05/14 17:52:02.162, NVIDIA GeForce RTX 5090, 1, 0, 9607, 32607, 258.64, 66 +2026-05-14T17:52:07+08:00 +2026/05/14 17:52:07.183, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.27, 65 +2026-05-14T17:52:12+08:00 +2026/05/14 17:52:12.207, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.43, 65 +2026-05-14T17:52:17+08:00 +2026/05/14 17:52:17.233, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.57, 65 +2026-05-14T17:52:22+08:00 +2026/05/14 17:52:22.257, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.57, 65 +2026-05-14T17:52:27+08:00 +2026/05/14 17:52:27.332, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.77, 64 +2026-05-14T17:52:32+08:00 +2026/05/14 17:52:32.355, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.84, 65 +2026-05-14T17:52:37+08:00 +2026/05/14 17:52:37.399, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.36, 64 +2026-05-14T17:52:42+08:00 +2026/05/14 17:52:42.442, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 255.12, 65 +2026-05-14T17:52:47+08:00 +2026/05/14 17:52:47.464, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.00, 64 +2026-05-14T17:52:52+08:00 +2026/05/14 17:52:52.508, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 362.44, 65 +2026-05-14T17:52:57+08:00 +2026/05/14 17:52:57.553, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 350.15, 64 +2026-05-14T17:53:02+08:00 +2026/05/14 17:53:02.576, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.28, 65 +2026-05-14T17:53:07+08:00 +2026/05/14 17:53:07.601, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.11, 65 +2026-05-14T17:53:12+08:00 +2026/05/14 17:53:12.624, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.23, 64 +2026-05-14T17:53:17+08:00 +2026/05/14 17:53:17.646, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.47, 65 +2026-05-14T17:53:22+08:00 +2026/05/14 17:53:22.688, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.92, 65 +2026-05-14T17:53:27+08:00 +2026/05/14 17:53:27.732, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.08, 65 +2026-05-14T17:53:32+08:00 +2026/05/14 17:53:32.773, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.25, 65 +2026-05-14T17:53:37+08:00 +2026/05/14 17:53:37.848, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.37, 64 +2026-05-14T17:53:42+08:00 +2026/05/14 17:53:42.872, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.76, 65 +2026-05-14T17:53:47+08:00 +2026/05/14 17:53:47.897, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.92, 64 +2026-05-14T17:53:52+08:00 +2026/05/14 17:53:52.955, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.38, 64 +2026-05-14T17:53:57+08:00 +2026/05/14 17:53:57.980, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 332.96, 59 +2026-05-14T17:54:03+08:00 +2026/05/14 17:54:03.021, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.05, 65 +2026-05-14T17:54:08+08:00 +2026/05/14 17:54:08.063, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 362.07, 66 +2026-05-14T17:54:13+08:00 +2026/05/14 17:54:13.144, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.86, 65 +2026-05-14T17:54:18+08:00 +2026/05/14 17:54:18.168, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.60, 64 +2026-05-14T17:54:23+08:00 +2026/05/14 17:54:23.192, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.26, 64 +2026-05-14T17:54:28+08:00 +2026/05/14 17:54:28.218, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.33, 65 +2026-05-14T17:54:33+08:00 +2026/05/14 17:54:33.243, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.83, 65 +2026-05-14T17:54:38+08:00 +2026/05/14 17:54:38.266, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.87, 65 +2026-05-14T17:54:43+08:00 +2026/05/14 17:54:43.289, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.49, 64 +2026-05-14T17:54:48+08:00 +2026/05/14 17:54:48.314, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.57, 64 +2026-05-14T17:54:53+08:00 +2026/05/14 17:54:53.337, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.93, 64 +2026-05-14T17:54:58+08:00 +2026/05/14 17:54:58.360, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.11, 65 +2026-05-14T17:55:03+08:00 +2026/05/14 17:55:03.383, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.42, 65 +2026-05-14T17:55:08+08:00 +2026/05/14 17:55:08.408, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.83, 65 +2026-05-14T17:55:13+08:00 +2026/05/14 17:55:13.433, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.88, 65 +2026-05-14T17:55:18+08:00 +2026/05/14 17:55:18.457, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.55, 65 +2026-05-14T17:55:23+08:00 +2026/05/14 17:55:23.480, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.52, 63 +2026-05-14T17:55:28+08:00 +2026/05/14 17:55:28.505, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.08, 64 +2026-05-14T17:55:33+08:00 +2026/05/14 17:55:33.530, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.00, 64 +2026-05-14T17:55:38+08:00 +2026/05/14 17:55:38.552, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.54, 64 +2026-05-14T17:55:43+08:00 +2026/05/14 17:55:43.575, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.22, 64 +2026-05-14T17:55:48+08:00 +2026/05/14 17:55:48.601, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.82, 63 +2026-05-14T17:55:53+08:00 +2026/05/14 17:55:53.624, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.56, 64 +2026-05-14T17:55:58+08:00 +2026/05/14 17:55:58.648, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.69, 64 +2026-05-14T17:56:03+08:00 +2026/05/14 17:56:03.672, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.89, 65 +2026-05-14T17:56:08+08:00 +2026/05/14 17:56:08.696, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.83, 65 +2026-05-14T17:56:13+08:00 +2026/05/14 17:56:13.719, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.09, 65 +2026-05-14T17:56:18+08:00 +2026/05/14 17:56:18.745, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.33, 65 +2026-05-14T17:56:23+08:00 +2026/05/14 17:56:23.768, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.33, 65 +2026-05-14T17:56:28+08:00 +2026/05/14 17:56:28.791, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.25, 65 +2026-05-14T17:56:33+08:00 +2026/05/14 17:56:33.815, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.27, 65 +2026-05-14T17:56:38+08:00 +2026/05/14 17:56:38.841, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.36, 65 +2026-05-14T17:56:43+08:00 +2026/05/14 17:56:43.864, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.50, 65 +2026-05-14T17:56:48+08:00 +2026/05/14 17:56:48.891, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.56, 66 +2026-05-14T17:56:53+08:00 +2026/05/14 17:56:53.916, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.57, 65 +2026-05-14T17:56:58+08:00 +2026/05/14 17:56:58.941, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.44, 65 +2026-05-14T17:57:03+08:00 +2026/05/14 17:57:03.964, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.40, 65 +2026-05-14T17:57:08+08:00 +2026/05/14 17:57:08.986, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.67, 65 +2026-05-14T17:57:13+08:00 +2026/05/14 17:57:14.010, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 65 +2026-05-14T17:57:19+08:00 +2026/05/14 17:57:19.037, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.33, 66 +2026-05-14T17:57:24+08:00 +2026/05/14 17:57:24.062, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.61, 66 +2026-05-14T17:57:29+08:00 +2026/05/14 17:57:29.086, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.92, 65 +2026-05-14T17:57:34+08:00 +2026/05/14 17:57:34.110, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.19, 65 +2026-05-14T17:57:39+08:00 +2026/05/14 17:57:39.133, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.69, 65 +2026-05-14T17:57:44+08:00 +2026/05/14 17:57:44.159, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.04, 66 +2026-05-14T17:57:49+08:00 +2026/05/14 17:57:49.184, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.96, 65 +2026-05-14T17:57:54+08:00 +2026/05/14 17:57:54.208, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.11, 65 +2026-05-14T17:57:59+08:00 +2026/05/14 17:57:59.232, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.98, 65 +2026-05-14T17:58:04+08:00 +2026/05/14 17:58:04.256, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.71, 65 +2026-05-14T17:58:09+08:00 +2026/05/14 17:58:09.280, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.77, 65 +2026-05-14T17:58:14+08:00 +2026/05/14 17:58:14.305, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.95, 66 +2026-05-14T17:58:19+08:00 +2026/05/14 17:58:19.328, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.21, 65 +2026-05-14T17:58:24+08:00 +2026/05/14 17:58:24.356, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.77, 65 +2026-05-14T17:58:29+08:00 +2026/05/14 17:58:29.380, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.43, 66 +2026-05-14T17:58:34+08:00 +2026/05/14 17:58:34.408, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.78, 66 +2026-05-14T17:58:39+08:00 +2026/05/14 17:58:39.430, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.47, 66 +2026-05-14T17:58:44+08:00 +2026/05/14 17:58:44.452, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.52, 65 +2026-05-14T17:58:49+08:00 +2026/05/14 17:58:49.476, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.88, 65 +2026-05-14T17:58:54+08:00 +2026/05/14 17:58:54.500, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.62, 65 +2026-05-14T17:58:59+08:00 +2026/05/14 17:58:59.524, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.99, 66 +2026-05-14T17:59:04+08:00 +2026/05/14 17:59:04.548, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.49, 66 +2026-05-14T17:59:09+08:00 +2026/05/14 17:59:09.571, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.20, 65 +2026-05-14T17:59:14+08:00 +2026/05/14 17:59:14.601, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.83, 64 +2026-05-14T17:59:19+08:00 +2026/05/14 17:59:19.630, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.30, 65 +2026-05-14T17:59:24+08:00 +2026/05/14 17:59:24.653, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.34, 66 +2026-05-14T17:59:29+08:00 +2026/05/14 17:59:29.685, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.09, 66 +2026-05-14T17:59:34+08:00 +2026/05/14 17:59:34.708, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.36, 66 +2026-05-14T17:59:39+08:00 +2026/05/14 17:59:39.733, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.65, 65 +2026-05-14T17:59:44+08:00 +2026/05/14 17:59:44.755, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.90, 65 +2026-05-14T17:59:49+08:00 +2026/05/14 17:59:49.781, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.60, 65 +2026-05-14T17:59:54+08:00 +2026/05/14 17:59:54.808, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.39, 65 +2026-05-14T17:59:59+08:00 +2026/05/14 17:59:59.832, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.03, 65 +2026-05-14T18:00:04+08:00 +2026/05/14 18:00:04.861, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.02, 65 +2026-05-14T18:00:09+08:00 +2026/05/14 18:00:09.887, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.98, 65 +2026-05-14T18:00:14+08:00 +2026/05/14 18:00:14.914, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.66, 65 +2026-05-14T18:00:19+08:00 +2026/05/14 18:00:19.938, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.58, 65 +2026-05-14T18:00:24+08:00 +2026/05/14 18:00:24.964, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.30, 65 +2026-05-14T18:00:29+08:00 +2026/05/14 18:00:29.989, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.19, 65 +2026-05-14T18:00:34+08:00 +2026/05/14 18:00:35.012, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.86, 65 +2026-05-14T18:00:40+08:00 +2026/05/14 18:00:40.089, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.81, 65 +2026-05-14T18:00:45+08:00 +2026/05/14 18:00:45.112, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.48, 66 +2026-05-14T18:00:50+08:00 +2026/05/14 18:00:50.153, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.78, 65 +2026-05-14T18:00:55+08:00 +2026/05/14 18:00:55.177, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.18, 66 +2026-05-14T18:01:00+08:00 +2026/05/14 18:01:00.203, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.61, 65 +2026-05-14T18:01:05+08:00 +2026/05/14 18:01:05.226, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.59, 66 +2026-05-14T18:01:10+08:00 +2026/05/14 18:01:10.248, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.80, 66 +2026-05-14T18:01:15+08:00 +2026/05/14 18:01:15.273, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.95, 65 +2026-05-14T18:01:20+08:00 +2026/05/14 18:01:20.296, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.90, 65 +2026-05-14T18:01:25+08:00 +2026/05/14 18:01:25.319, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.35, 65 +2026-05-14T18:01:30+08:00 +2026/05/14 18:01:30.347, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.18, 65 +2026-05-14T18:01:35+08:00 +2026/05/14 18:01:35.369, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.40, 65 +2026-05-14T18:01:40+08:00 +2026/05/14 18:01:40.398, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.54, 64 +2026-05-14T18:01:45+08:00 +2026/05/14 18:01:45.425, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.87, 64 +2026-05-14T18:01:50+08:00 +2026/05/14 18:01:50.484, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.26, 64 +2026-05-14T18:01:55+08:00 +2026/05/14 18:01:55.509, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.84, 64 +2026-05-14T18:02:00+08:00 +2026/05/14 18:02:00.550, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.33, 66 +2026-05-14T18:02:05+08:00 +2026/05/14 18:02:05.591, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.26, 65 +2026-05-14T18:02:10+08:00 +2026/05/14 18:02:10.633, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.12, 64 +2026-05-14T18:02:15+08:00 +2026/05/14 18:02:15.678, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.88, 64 +2026-05-14T18:02:20+08:00 +2026/05/14 18:02:20.721, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.60, 65 +2026-05-14T18:02:25+08:00 +2026/05/14 18:02:25.746, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.22, 65 +2026-05-14T18:02:30+08:00 +2026/05/14 18:02:30.769, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 212.94, 62 +2026-05-14T18:02:35+08:00 +2026/05/14 18:02:35.792, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.32, 65 +2026-05-14T18:02:40+08:00 +2026/05/14 18:02:40.815, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.30, 66 +2026-05-14T18:02:45+08:00 +2026/05/14 18:02:45.838, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.32, 66 +2026-05-14T18:02:50+08:00 +2026/05/14 18:02:50.864, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.75, 64 +2026-05-14T18:02:55+08:00 +2026/05/14 18:02:55.887, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.44, 65 +2026-05-14T18:03:00+08:00 +2026/05/14 18:03:00.911, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 363.99, 65 +2026-05-14T18:03:05+08:00 +2026/05/14 18:03:05.934, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.61, 65 +2026-05-14T18:03:10+08:00 +2026/05/14 18:03:10.957, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.57, 65 +2026-05-14T18:03:15+08:00 +2026/05/14 18:03:15.980, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.66, 65 +2026-05-14T18:03:20+08:00 +2026/05/14 18:03:21.006, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.54, 65 +2026-05-14T18:03:26+08:00 +2026/05/14 18:03:26.030, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.38, 64 +2026-05-14T18:03:31+08:00 +2026/05/14 18:03:31.053, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 349.42, 64 +2026-05-14T18:03:36+08:00 +2026/05/14 18:03:36.077, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.59, 65 +2026-05-14T18:03:41+08:00 +2026/05/14 18:03:41.104, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.25, 66 +2026-05-14T18:03:46+08:00 +2026/05/14 18:03:46.127, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.55, 65 +2026-05-14T18:03:51+08:00 +2026/05/14 18:03:51.150, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.85, 65 +2026-05-14T18:03:56+08:00 +2026/05/14 18:03:56.174, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.26, 64 +2026-05-14T18:04:01+08:00 +2026/05/14 18:04:01.199, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.17, 65 +2026-05-14T18:04:06+08:00 +2026/05/14 18:04:06.226, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.20, 65 +2026-05-14T18:04:11+08:00 +2026/05/14 18:04:11.249, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.42, 65 +2026-05-14T18:04:16+08:00 +2026/05/14 18:04:16.273, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.36, 65 +2026-05-14T18:04:21+08:00 +2026/05/14 18:04:21.296, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.93, 66 +2026-05-14T18:04:26+08:00 +2026/05/14 18:04:26.322, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.68, 65 +2026-05-14T18:04:31+08:00 +2026/05/14 18:04:31.345, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.43, 65 +2026-05-14T18:04:36+08:00 +2026/05/14 18:04:36.369, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.39, 64 +2026-05-14T18:04:41+08:00 +2026/05/14 18:04:41.394, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.01, 66 +2026-05-14T18:04:46+08:00 +2026/05/14 18:04:46.416, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.98, 65 +2026-05-14T18:04:51+08:00 +2026/05/14 18:04:51.441, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 324.77, 65 +2026-05-14T18:04:56+08:00 +2026/05/14 18:04:56.466, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.95, 65 +2026-05-14T18:05:01+08:00 +2026/05/14 18:05:01.488, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.13, 64 +2026-05-14T18:05:06+08:00 +2026/05/14 18:05:06.513, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 364.43, 65 +2026-05-14T18:05:11+08:00 +2026/05/14 18:05:11.537, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.26, 66 +2026-05-14T18:05:16+08:00 +2026/05/14 18:05:16.564, NVIDIA GeForce RTX 5090, 88, 39, 9607, 32607, 365.84, 65 +2026-05-14T18:05:21+08:00 +2026/05/14 18:05:21.595, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.37, 66 +2026-05-14T18:05:26+08:00 +2026/05/14 18:05:26.622, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.39, 64 +2026-05-14T18:05:31+08:00 +2026/05/14 18:05:31.646, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.33, 65 +2026-05-14T18:05:36+08:00 +2026/05/14 18:05:36.672, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.19, 66 +2026-05-14T18:05:41+08:00 +2026/05/14 18:05:41.694, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.95, 65 +2026-05-14T18:05:46+08:00 +2026/05/14 18:05:46.763, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.28, 63 +2026-05-14T18:05:51+08:00 +2026/05/14 18:05:51.787, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.42, 66 +2026-05-14T18:05:56+08:00 +2026/05/14 18:05:56.810, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.16, 65 +2026-05-14T18:06:01+08:00 +2026/05/14 18:06:01.836, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.45, 65 +2026-05-14T18:06:06+08:00 +2026/05/14 18:06:06.858, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.53, 64 +2026-05-14T18:06:11+08:00 +2026/05/14 18:06:11.881, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.94, 65 +2026-05-14T18:06:16+08:00 +2026/05/14 18:06:16.922, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.89, 65 +2026-05-14T18:06:21+08:00 +2026/05/14 18:06:21.974, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.84, 64 +2026-05-14T18:06:26+08:00 +2026/05/14 18:06:26.998, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.48, 65 +2026-05-14T18:06:32+08:00 +2026/05/14 18:06:32.054, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.68, 65 +2026-05-14T18:06:37+08:00 +2026/05/14 18:06:37.078, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.76, 65 +2026-05-14T18:06:42+08:00 +2026/05/14 18:06:42.101, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 66 +2026-05-14T18:06:47+08:00 +2026/05/14 18:06:47.124, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 269.80, 65 +2026-05-14T18:06:52+08:00 +2026/05/14 18:06:52.149, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.16, 65 +2026-05-14T18:06:57+08:00 +2026/05/14 18:06:57.173, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.27, 64 +2026-05-14T18:07:02+08:00 +2026/05/14 18:07:02.196, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.23, 66 +2026-05-14T18:07:07+08:00 +2026/05/14 18:07:07.221, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.51, 65 +2026-05-14T18:07:12+08:00 +2026/05/14 18:07:12.245, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.10, 66 +2026-05-14T18:07:17+08:00 +2026/05/14 18:07:17.286, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.92, 66 +2026-05-14T18:07:22+08:00 +2026/05/14 18:07:22.310, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.43, 65 +2026-05-14T18:07:27+08:00 +2026/05/14 18:07:27.333, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.87, 65 +2026-05-14T18:07:32+08:00 +2026/05/14 18:07:32.410, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.71, 66 +2026-05-14T18:07:37+08:00 +2026/05/14 18:07:37.434, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.14, 64 +2026-05-14T18:07:42+08:00 +2026/05/14 18:07:42.490, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.62, 64 +2026-05-14T18:07:47+08:00 +2026/05/14 18:07:47.515, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.99, 65 +2026-05-14T18:07:52+08:00 +2026/05/14 18:07:52.570, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.36, 64 +2026-05-14T18:07:57+08:00 +2026/05/14 18:07:57.595, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.48, 65 +2026-05-14T18:08:02+08:00 +2026/05/14 18:08:02.636, NVIDIA GeForce RTX 5090, 6, 2, 9607, 32607, 288.32, 59 +2026-05-14T18:08:07+08:00 +2026/05/14 18:08:07.696, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.56, 66 +2026-05-14T18:08:12+08:00 +2026/05/14 18:08:12.720, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.45, 64 +2026-05-14T18:08:17+08:00 +2026/05/14 18:08:17.761, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.05, 64 +2026-05-14T18:08:22+08:00 +2026/05/14 18:08:22.803, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.89, 65 +2026-05-14T18:08:27+08:00 +2026/05/14 18:08:27.859, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 364.65, 64 +2026-05-14T18:08:32+08:00 +2026/05/14 18:08:32.883, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.01, 65 +2026-05-14T18:08:37+08:00 +2026/05/14 18:08:37.934, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.84, 65 +2026-05-14T18:08:42+08:00 +2026/05/14 18:08:42.969, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.65, 64 +2026-05-14T18:08:47+08:00 +2026/05/14 18:08:47.999, NVIDIA GeForce RTX 5090, 67, 26, 9607, 32607, 250.51, 64 +2026-05-14T18:08:53+08:00 +2026/05/14 18:08:53.025, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.25, 64 +2026-05-14T18:08:58+08:00 +2026/05/14 18:08:58.075, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.04, 64 +2026-05-14T18:09:03+08:00 +2026/05/14 18:09:03.100, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.31, 65 +2026-05-14T18:09:08+08:00 +2026/05/14 18:09:08.146, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 64 +2026-05-14T18:09:13+08:00 +2026/05/14 18:09:13.168, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.69, 64 +2026-05-14T18:09:18+08:00 +2026/05/14 18:09:18.193, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 65 +2026-05-14T18:09:23+08:00 +2026/05/14 18:09:23.218, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.65, 65 +2026-05-14T18:09:28+08:00 +2026/05/14 18:09:28.258, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.01, 64 +2026-05-14T18:09:33+08:00 +2026/05/14 18:09:33.287, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.07, 64 +2026-05-14T18:09:38+08:00 +2026/05/14 18:09:38.316, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.01, 64 +2026-05-14T18:09:43+08:00 +2026/05/14 18:09:43.343, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.50, 65 +2026-05-14T18:09:48+08:00 +2026/05/14 18:09:48.371, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.32, 65 +2026-05-14T18:09:53+08:00 +2026/05/14 18:09:53.397, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.28, 65 +2026-05-14T18:09:58+08:00 +2026/05/14 18:09:58.421, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 288.31, 59 +2026-05-14T18:10:03+08:00 +2026/05/14 18:10:03.442, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.22, 65 +2026-05-14T18:10:08+08:00 +2026/05/14 18:10:08.470, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.98, 65 +2026-05-14T18:10:13+08:00 +2026/05/14 18:10:13.497, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.61, 64 +2026-05-14T18:10:18+08:00 +2026/05/14 18:10:18.524, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.36, 65 +2026-05-14T18:10:23+08:00 +2026/05/14 18:10:23.552, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.02, 65 +2026-05-14T18:10:28+08:00 +2026/05/14 18:10:28.576, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.10, 63 +2026-05-14T18:10:33+08:00 +2026/05/14 18:10:33.602, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.68, 64 +2026-05-14T18:10:38+08:00 +2026/05/14 18:10:38.667, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.97, 64 +2026-05-14T18:10:43+08:00 +2026/05/14 18:10:43.690, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.58, 64 +2026-05-14T18:10:48+08:00 +2026/05/14 18:10:48.759, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.85, 64 +2026-05-14T18:10:53+08:00 +2026/05/14 18:10:53.782, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.93, 64 +2026-05-14T18:10:58+08:00 +2026/05/14 18:10:58.853, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.49, 64 +2026-05-14T18:11:03+08:00 +2026/05/14 18:11:03.876, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.99, 64 +2026-05-14T18:11:08+08:00 +2026/05/14 18:11:08.951, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.38, 65 +2026-05-14T18:11:13+08:00 +2026/05/14 18:11:13.992, NVIDIA GeForce RTX 5090, 81, 36, 9607, 32607, 256.19, 65 +2026-05-14T18:11:19+08:00 +2026/05/14 18:11:19.016, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 64 +2026-05-14T18:11:24+08:00 +2026/05/14 18:11:24.064, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.84, 64 +2026-05-14T18:11:29+08:00 +2026/05/14 18:11:29.089, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.34, 65 +2026-05-14T18:11:34+08:00 +2026/05/14 18:11:34.147, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 293.92, 64 +2026-05-14T18:11:39+08:00 +2026/05/14 18:11:39.171, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.56, 66 +2026-05-14T18:11:44+08:00 +2026/05/14 18:11:44.212, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.36, 65 +2026-05-14T18:11:49+08:00 +2026/05/14 18:11:49.252, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 65 +2026-05-14T18:11:54+08:00 +2026/05/14 18:11:54.297, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.56, 64 +2026-05-14T18:11:59+08:00 +2026/05/14 18:11:59.336, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.43, 64 +2026-05-14T18:12:04+08:00 +2026/05/14 18:12:04.377, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.18, 65 +2026-05-14T18:12:09+08:00 +2026/05/14 18:12:09.422, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.24, 64 +2026-05-14T18:12:14+08:00 +2026/05/14 18:12:14.460, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.80, 64 +2026-05-14T18:12:19+08:00 +2026/05/14 18:12:19.484, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.99, 64 +2026-05-14T18:12:24+08:00 +2026/05/14 18:12:24.510, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.13, 64 +2026-05-14T18:12:29+08:00 +2026/05/14 18:12:29.533, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.00, 65 +2026-05-14T18:12:34+08:00 +2026/05/14 18:12:34.560, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.91, 65 +2026-05-14T18:12:39+08:00 +2026/05/14 18:12:39.583, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.57, 64 +2026-05-14T18:12:44+08:00 +2026/05/14 18:12:44.607, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.78, 65 +2026-05-14T18:12:49+08:00 +2026/05/14 18:12:49.633, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 354.02, 65 +2026-05-14T18:12:54+08:00 +2026/05/14 18:12:54.658, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.61, 65 +2026-05-14T18:12:59+08:00 +2026/05/14 18:12:59.681, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.05, 64 +2026-05-14T18:13:04+08:00 +2026/05/14 18:13:04.706, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 284.20, 64 +2026-05-14T18:13:09+08:00 +2026/05/14 18:13:09.733, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.12, 65 +2026-05-14T18:13:14+08:00 +2026/05/14 18:13:14.756, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.09, 66 +2026-05-14T18:13:19+08:00 +2026/05/14 18:13:19.782, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.58, 65 +2026-05-14T18:13:24+08:00 +2026/05/14 18:13:24.805, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.75, 65 +2026-05-14T18:13:29+08:00 +2026/05/14 18:13:29.834, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.44, 64 +2026-05-14T18:13:34+08:00 +2026/05/14 18:13:34.857, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.41, 65 +2026-05-14T18:13:39+08:00 +2026/05/14 18:13:39.884, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 365.82, 65 +2026-05-14T18:13:44+08:00 +2026/05/14 18:13:44.907, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.85, 66 +2026-05-14T18:13:49+08:00 +2026/05/14 18:13:49.932, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 65 +2026-05-14T18:13:54+08:00 +2026/05/14 18:13:54.956, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.97, 66 +2026-05-14T18:13:59+08:00 +2026/05/14 18:13:59.979, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 65 +2026-05-14T18:14:04+08:00 +2026/05/14 18:14:05.002, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.92, 65 +2026-05-14T18:14:10+08:00 +2026/05/14 18:14:10.025, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.86, 66 +2026-05-14T18:14:15+08:00 +2026/05/14 18:14:15.051, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.82, 66 +2026-05-14T18:14:20+08:00 +2026/05/14 18:14:20.075, NVIDIA GeForce RTX 5090, 76, 34, 9607, 32607, 133.55, 58 +2026-05-14T18:14:25+08:00 +2026/05/14 18:14:25.099, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.39, 65 +2026-05-14T18:14:30+08:00 +2026/05/14 18:14:30.123, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.38, 64 +2026-05-14T18:14:35+08:00 +2026/05/14 18:14:35.168, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.71, 66 +2026-05-14T18:14:40+08:00 +2026/05/14 18:14:40.192, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.49, 64 +2026-05-14T18:14:45+08:00 +2026/05/14 18:14:45.235, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.25, 65 +2026-05-14T18:14:50+08:00 +2026/05/14 18:14:50.262, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.59, 66 +2026-05-14T18:14:55+08:00 +2026/05/14 18:14:55.325, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.71, 66 +2026-05-14T18:15:00+08:00 +2026/05/14 18:15:00.352, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.26, 64 +2026-05-14T18:15:05+08:00 +2026/05/14 18:15:05.376, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.86, 64 +2026-05-14T18:15:10+08:00 +2026/05/14 18:15:10.450, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.06, 65 +2026-05-14T18:15:15+08:00 +2026/05/14 18:15:15.473, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.19, 64 +2026-05-14T18:15:20+08:00 +2026/05/14 18:15:20.496, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.81, 65 +2026-05-14T18:15:25+08:00 +2026/05/14 18:15:25.520, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.57, 65 +2026-05-14T18:15:30+08:00 +2026/05/14 18:15:30.543, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.47, 64 +2026-05-14T18:15:35+08:00 +2026/05/14 18:15:35.566, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.31, 64 +2026-05-14T18:15:40+08:00 +2026/05/14 18:15:40.590, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.96, 65 +2026-05-14T18:15:45+08:00 +2026/05/14 18:15:45.614, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.24, 65 +2026-05-14T18:15:50+08:00 +2026/05/14 18:15:50.638, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.58, 65 +2026-05-14T18:15:55+08:00 +2026/05/14 18:15:55.660, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 225.83, 65 +2026-05-14T18:16:00+08:00 +2026/05/14 18:16:00.686, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.06, 64 +2026-05-14T18:16:05+08:00 +2026/05/14 18:16:05.707, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.71, 65 +2026-05-14T18:16:10+08:00 +2026/05/14 18:16:10.733, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.48, 65 +2026-05-14T18:16:15+08:00 +2026/05/14 18:16:15.801, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.80, 65 +2026-05-14T18:16:20+08:00 +2026/05/14 18:16:20.826, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.88, 65 +2026-05-14T18:16:25+08:00 +2026/05/14 18:16:25.857, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.07, 64 +2026-05-14T18:16:30+08:00 +2026/05/14 18:16:30.888, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.34, 65 +2026-05-14T18:16:35+08:00 +2026/05/14 18:16:35.921, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.20, 65 +2026-05-14T18:16:40+08:00 +2026/05/14 18:16:40.943, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.23, 65 +2026-05-14T18:16:45+08:00 +2026/05/14 18:16:45.987, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.02, 65 +2026-05-14T18:16:50+08:00 +2026/05/14 18:16:51.011, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.38, 65 +2026-05-14T18:16:56+08:00 +2026/05/14 18:16:56.082, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.24, 65 +2026-05-14T18:17:01+08:00 +2026/05/14 18:17:01.107, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.60, 65 +2026-05-14T18:17:06+08:00 +2026/05/14 18:17:06.148, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.90, 65 +2026-05-14T18:17:11+08:00 +2026/05/14 18:17:11.173, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.67, 66 +2026-05-14T18:17:16+08:00 +2026/05/14 18:17:16.196, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.47, 65 +2026-05-14T18:17:21+08:00 +2026/05/14 18:17:21.218, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.03, 65 +2026-05-14T18:17:26+08:00 +2026/05/14 18:17:26.241, NVIDIA GeForce RTX 5090, 50, 17, 9607, 32607, 265.46, 65 +2026-05-14T18:17:31+08:00 +2026/05/14 18:17:31.264, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.18, 65 +2026-05-14T18:17:36+08:00 +2026/05/14 18:17:36.288, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.50, 66 +2026-05-14T18:17:41+08:00 +2026/05/14 18:17:41.315, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.24, 66 +2026-05-14T18:17:46+08:00 +2026/05/14 18:17:46.337, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.31, 65 +2026-05-14T18:17:51+08:00 +2026/05/14 18:17:51.361, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.92, 65 +2026-05-14T18:17:56+08:00 +2026/05/14 18:17:56.384, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.57, 66 +2026-05-14T18:18:01+08:00 +2026/05/14 18:18:01.408, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.62, 65 +2026-05-14T18:18:06+08:00 +2026/05/14 18:18:06.433, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.38, 64 +2026-05-14T18:18:11+08:00 +2026/05/14 18:18:11.456, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.99, 65 +2026-05-14T18:18:16+08:00 +2026/05/14 18:18:16.481, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.61, 66 +2026-05-14T18:18:21+08:00 +2026/05/14 18:18:21.509, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.47, 65 +2026-05-14T18:18:26+08:00 +2026/05/14 18:18:26.547, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.53, 65 +2026-05-14T18:18:31+08:00 +2026/05/14 18:18:31.607, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.67, 65 +2026-05-14T18:18:36+08:00 +2026/05/14 18:18:36.632, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.62, 65 +2026-05-14T18:18:41+08:00 +2026/05/14 18:18:41.669, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.88, 64 +2026-05-14T18:18:46+08:00 +2026/05/14 18:18:46.728, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.66, 65 +2026-05-14T18:18:51+08:00 +2026/05/14 18:18:51.753, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.32, 65 +2026-05-14T18:18:56+08:00 +2026/05/14 18:18:56.778, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.15, 66 +2026-05-14T18:19:01+08:00 +2026/05/14 18:19:01.802, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.22, 65 +2026-05-14T18:19:06+08:00 +2026/05/14 18:19:06.879, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.23, 65 +2026-05-14T18:19:11+08:00 +2026/05/14 18:19:11.903, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.14, 64 +2026-05-14T18:19:16+08:00 +2026/05/14 18:19:16.954, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.69, 65 +2026-05-14T18:19:21+08:00 +2026/05/14 18:19:21.978, NVIDIA GeForce RTX 5090, 9, 3, 9607, 32607, 257.53, 65 +2026-05-14T18:19:26+08:00 +2026/05/14 18:19:27.002, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.51, 64 +2026-05-14T18:19:32+08:00 +2026/05/14 18:19:32.027, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.84, 66 +2026-05-14T18:19:37+08:00 +2026/05/14 18:19:37.051, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.21, 65 +2026-05-14T18:19:42+08:00 +2026/05/14 18:19:42.107, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.67, 65 +2026-05-14T18:19:47+08:00 +2026/05/14 18:19:47.133, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.96, 64 +2026-05-14T18:19:52+08:00 +2026/05/14 18:19:52.175, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.75, 65 +2026-05-14T18:19:57+08:00 +2026/05/14 18:19:57.199, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.56, 65 +2026-05-14T18:20:02+08:00 +2026/05/14 18:20:02.229, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.19, 65 +2026-05-14T18:20:07+08:00 +2026/05/14 18:20:07.271, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.93, 66 +2026-05-14T18:20:12+08:00 +2026/05/14 18:20:12.327, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 66 +2026-05-14T18:20:17+08:00 +2026/05/14 18:20:17.352, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.48, 65 +2026-05-14T18:20:22+08:00 +2026/05/14 18:20:22.426, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.92, 66 +2026-05-14T18:20:27+08:00 +2026/05/14 18:20:27.449, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.08, 65 +2026-05-14T18:20:32+08:00 +2026/05/14 18:20:32.514, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.99, 65 +2026-05-14T18:20:37+08:00 +2026/05/14 18:20:37.554, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.89, 65 +2026-05-14T18:20:42+08:00 +2026/05/14 18:20:42.582, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.89, 64 +2026-05-14T18:20:47+08:00 +2026/05/14 18:20:47.606, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 65 +2026-05-14T18:20:52+08:00 +2026/05/14 18:20:52.645, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.45, 65 +2026-05-14T18:20:57+08:00 +2026/05/14 18:20:57.701, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.70, 65 +2026-05-14T18:21:02+08:00 +2026/05/14 18:21:02.725, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.28, 64 +2026-05-14T18:21:07+08:00 +2026/05/14 18:21:07.750, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 291.27, 59 +2026-05-14T18:21:12+08:00 +2026/05/14 18:21:12.773, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.99, 65 +2026-05-14T18:21:17+08:00 +2026/05/14 18:21:17.800, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.77, 66 +2026-05-14T18:21:22+08:00 +2026/05/14 18:21:22.825, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 354.67, 65 +2026-05-14T18:21:27+08:00 +2026/05/14 18:21:27.855, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.32, 64 +2026-05-14T18:21:32+08:00 +2026/05/14 18:21:32.878, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 65 +2026-05-14T18:21:37+08:00 +2026/05/14 18:21:37.905, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.16, 65 +2026-05-14T18:21:42+08:00 +2026/05/14 18:21:42.929, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 365.45, 66 +2026-05-14T18:21:47+08:00 +2026/05/14 18:21:47.957, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.76, 65 +2026-05-14T18:21:52+08:00 +2026/05/14 18:21:52.980, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.85, 65 +2026-05-14T18:21:58+08:00 +2026/05/14 18:21:58.022, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.69, 65 +2026-05-14T18:22:03+08:00 +2026/05/14 18:22:03.065, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.74, 66 +2026-05-14T18:22:08+08:00 +2026/05/14 18:22:08.088, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.46, 65 +2026-05-14T18:22:13+08:00 +2026/05/14 18:22:13.113, NVIDIA GeForce RTX 5090, 83, 36, 9607, 32607, 361.58, 65 +2026-05-14T18:22:18+08:00 +2026/05/14 18:22:18.136, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.77, 64 +2026-05-14T18:22:23+08:00 +2026/05/14 18:22:23.158, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.30, 66 +2026-05-14T18:22:28+08:00 +2026/05/14 18:22:28.185, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.28, 64 +2026-05-14T18:22:33+08:00 +2026/05/14 18:22:33.209, NVIDIA GeForce RTX 5090, 87, 36, 9607, 32607, 345.29, 65 +2026-05-14T18:22:38+08:00 +2026/05/14 18:22:38.235, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.18, 66 +2026-05-14T18:22:43+08:00 +2026/05/14 18:22:43.260, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.98, 65 +2026-05-14T18:22:48+08:00 +2026/05/14 18:22:48.283, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.24, 64 +2026-05-14T18:22:53+08:00 +2026/05/14 18:22:53.305, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.69, 65 +2026-05-14T18:22:58+08:00 +2026/05/14 18:22:58.329, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.42, 65 +2026-05-14T18:23:03+08:00 +2026/05/14 18:23:03.353, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.11, 64 +2026-05-14T18:23:08+08:00 +2026/05/14 18:23:08.377, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.99, 65 +2026-05-14T18:23:13+08:00 +2026/05/14 18:23:13.401, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.49, 65 +2026-05-14T18:23:18+08:00 +2026/05/14 18:23:18.424, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.18, 65 +2026-05-14T18:23:23+08:00 +2026/05/14 18:23:23.449, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.87, 64 +2026-05-14T18:23:28+08:00 +2026/05/14 18:23:28.472, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.04, 64 +2026-05-14T18:23:33+08:00 +2026/05/14 18:23:33.496, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.28, 65 +2026-05-14T18:23:38+08:00 +2026/05/14 18:23:38.520, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 359.61, 65 +2026-05-14T18:23:43+08:00 +2026/05/14 18:23:43.544, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.02, 65 +2026-05-14T18:23:48+08:00 +2026/05/14 18:23:48.567, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.06, 65 +2026-05-14T18:23:53+08:00 +2026/05/14 18:23:53.593, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.39, 64 +2026-05-14T18:23:58+08:00 +2026/05/14 18:23:58.617, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.37, 65 +2026-05-14T18:24:03+08:00 +2026/05/14 18:24:03.640, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.25, 64 +2026-05-14T18:24:08+08:00 +2026/05/14 18:24:08.661, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.02, 66 +2026-05-14T18:24:13+08:00 +2026/05/14 18:24:13.685, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.07, 65 +2026-05-14T18:24:18+08:00 +2026/05/14 18:24:18.708, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.41, 65 +2026-05-14T18:24:23+08:00 +2026/05/14 18:24:23.731, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.90, 63 +2026-05-14T18:24:28+08:00 +2026/05/14 18:24:28.755, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.35, 64 +2026-05-14T18:24:33+08:00 +2026/05/14 18:24:33.777, NVIDIA GeForce RTX 5090, 42, 15, 9607, 32607, 323.00, 60 +2026-05-14T18:24:38+08:00 +2026/05/14 18:24:38.799, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 362.89, 65 +2026-05-14T18:24:43+08:00 +2026/05/14 18:24:43.822, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.97, 65 +2026-05-14T18:24:48+08:00 +2026/05/14 18:24:48.843, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.41, 64 +2026-05-14T18:24:53+08:00 +2026/05/14 18:24:53.867, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.73, 64 +2026-05-14T18:24:58+08:00 +2026/05/14 18:24:58.888, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.65, 66 +2026-05-14T18:25:03+08:00 +2026/05/14 18:25:03.910, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.51, 65 +2026-05-14T18:25:08+08:00 +2026/05/14 18:25:08.933, NVIDIA GeForce RTX 5090, 87, 35, 9607, 32607, 361.13, 66 +2026-05-14T18:25:13+08:00 +2026/05/14 18:25:13.956, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.85, 65 +2026-05-14T18:25:18+08:00 +2026/05/14 18:25:18.977, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.98, 65 +2026-05-14T18:25:23+08:00 +2026/05/14 18:25:24.001, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.24, 65 +2026-05-14T18:25:29+08:00 +2026/05/14 18:25:29.026, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.30, 64 +2026-05-14T18:25:34+08:00 +2026/05/14 18:25:34.047, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.21, 65 +2026-05-14T18:25:39+08:00 +2026/05/14 18:25:39.072, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.44, 65 +2026-05-14T18:25:44+08:00 +2026/05/14 18:25:44.095, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.37, 65 +2026-05-14T18:25:49+08:00 +2026/05/14 18:25:49.118, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.73, 65 +2026-05-14T18:25:54+08:00 +2026/05/14 18:25:54.141, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.67, 66 +2026-05-14T18:25:59+08:00 +2026/05/14 18:25:59.167, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.38, 65 +2026-05-14T18:26:04+08:00 +2026/05/14 18:26:04.191, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.11, 66 +2026-05-14T18:26:09+08:00 +2026/05/14 18:26:09.215, NVIDIA GeForce RTX 5090, 86, 36, 9607, 32607, 362.16, 65 +2026-05-14T18:26:14+08:00 +2026/05/14 18:26:14.238, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.79, 65 +2026-05-14T18:26:19+08:00 +2026/05/14 18:26:19.261, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.05, 65 +2026-05-14T18:26:24+08:00 +2026/05/14 18:26:24.288, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.38, 65 +2026-05-14T18:26:29+08:00 +2026/05/14 18:26:29.312, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 358.74, 65 +2026-05-14T18:26:34+08:00 +2026/05/14 18:26:34.334, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.26, 66 +2026-05-14T18:26:39+08:00 +2026/05/14 18:26:39.357, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.14, 64 +2026-05-14T18:26:44+08:00 +2026/05/14 18:26:44.383, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.25, 65 +2026-05-14T18:26:49+08:00 +2026/05/14 18:26:49.408, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.04, 65 +2026-05-14T18:26:54+08:00 +2026/05/14 18:26:54.432, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.01, 65 +2026-05-14T18:26:59+08:00 +2026/05/14 18:26:59.455, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.66, 66 +2026-05-14T18:27:04+08:00 +2026/05/14 18:27:04.480, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 360.90, 65 +2026-05-14T18:27:09+08:00 +2026/05/14 18:27:09.504, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.00, 65 +2026-05-14T18:27:14+08:00 +2026/05/14 18:27:14.528, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.28, 65 +2026-05-14T18:27:19+08:00 +2026/05/14 18:27:19.551, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 363.87, 65 +2026-05-14T18:27:24+08:00 +2026/05/14 18:27:24.576, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.66, 65 +2026-05-14T18:27:29+08:00 +2026/05/14 18:27:29.599, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.63, 64 +2026-05-14T18:27:34+08:00 +2026/05/14 18:27:34.623, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.64, 64 +2026-05-14T18:27:39+08:00 +2026/05/14 18:27:39.646, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.67, 64 +2026-05-14T18:27:44+08:00 +2026/05/14 18:27:44.671, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.33, 66 +2026-05-14T18:27:49+08:00 +2026/05/14 18:27:49.693, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.15, 64 +2026-05-14T18:27:54+08:00 +2026/05/14 18:27:54.717, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.73, 65 +2026-05-14T18:27:59+08:00 +2026/05/14 18:27:59.740, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.56, 65 +2026-05-14T18:28:04+08:00 +2026/05/14 18:28:04.763, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.66, 65 +2026-05-14T18:28:09+08:00 +2026/05/14 18:28:09.788, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.81, 65 +2026-05-14T18:28:14+08:00 +2026/05/14 18:28:14.813, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.93, 65 +2026-05-14T18:28:19+08:00 +2026/05/14 18:28:19.838, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.89, 66 +2026-05-14T18:28:24+08:00 +2026/05/14 18:28:24.860, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.72, 65 +2026-05-14T18:28:29+08:00 +2026/05/14 18:28:29.884, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.96, 66 +2026-05-14T18:28:34+08:00 +2026/05/14 18:28:34.907, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.46, 65 +2026-05-14T18:28:39+08:00 +2026/05/14 18:28:39.930, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.74, 64 +2026-05-14T18:28:44+08:00 +2026/05/14 18:28:44.954, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 65 +2026-05-14T18:28:49+08:00 +2026/05/14 18:28:49.977, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.17, 66 +2026-05-14T18:28:54+08:00 +2026/05/14 18:28:55.001, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 356.28, 65 +2026-05-14T18:29:00+08:00 +2026/05/14 18:29:00.024, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 353.48, 65 +2026-05-14T18:29:05+08:00 +2026/05/14 18:29:05.049, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.11, 66 +2026-05-14T18:29:10+08:00 +2026/05/14 18:29:10.075, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.68, 64 +2026-05-14T18:29:15+08:00 +2026/05/14 18:29:15.098, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.19, 65 +2026-05-14T18:29:20+08:00 +2026/05/14 18:29:20.143, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.83, 65 +2026-05-14T18:29:25+08:00 +2026/05/14 18:29:25.167, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.46, 66 +2026-05-14T18:29:30+08:00 +2026/05/14 18:29:30.217, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.87, 65 +2026-05-14T18:29:35+08:00 +2026/05/14 18:29:35.240, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 294.93, 61 +2026-05-14T18:29:40+08:00 +2026/05/14 18:29:40.283, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 65 +2026-05-14T18:29:45+08:00 +2026/05/14 18:29:45.325, NVIDIA GeForce RTX 5090, 87, 36, 9607, 32607, 359.79, 65 +2026-05-14T18:29:50+08:00 +2026/05/14 18:29:50.349, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.12, 65 +2026-05-14T18:29:55+08:00 +2026/05/14 18:29:55.373, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.46, 64 +2026-05-14T18:30:00+08:00 +2026/05/14 18:30:00.396, NVIDIA GeForce RTX 5090, 87, 33, 9607, 32607, 359.92, 66 +2026-05-14T18:30:05+08:00 +2026/05/14 18:30:05.423, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.75, 65 +2026-05-14T18:30:10+08:00 +2026/05/14 18:30:10.447, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.60, 65 +2026-05-14T18:30:15+08:00 +2026/05/14 18:30:15.470, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.95, 65 +2026-05-14T18:30:20+08:00 +2026/05/14 18:30:20.495, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.16, 64 +2026-05-14T18:30:25+08:00 +2026/05/14 18:30:25.518, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.93, 65 +2026-05-14T18:30:30+08:00 +2026/05/14 18:30:30.542, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.69, 65 +2026-05-14T18:30:35+08:00 +2026/05/14 18:30:35.565, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.69, 64 +2026-05-14T18:30:40+08:00 +2026/05/14 18:30:40.587, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.40, 66 +2026-05-14T18:30:45+08:00 +2026/05/14 18:30:45.612, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.79, 65 +2026-05-14T18:30:50+08:00 +2026/05/14 18:30:50.636, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.13, 65 +2026-05-14T18:30:55+08:00 +2026/05/14 18:30:55.660, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.60, 65 +2026-05-14T18:31:00+08:00 +2026/05/14 18:31:00.687, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.33, 65 +2026-05-14T18:31:05+08:00 +2026/05/14 18:31:05.711, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.92, 64 +2026-05-14T18:31:10+08:00 +2026/05/14 18:31:10.738, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 64 +2026-05-14T18:31:15+08:00 +2026/05/14 18:31:15.762, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 65 +2026-05-14T18:31:20+08:00 +2026/05/14 18:31:20.786, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.13, 66 +2026-05-14T18:31:25+08:00 +2026/05/14 18:31:25.811, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 366.62, 66 +2026-05-14T18:31:30+08:00 +2026/05/14 18:31:30.836, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.52, 65 +2026-05-14T18:31:35+08:00 +2026/05/14 18:31:35.860, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.44, 65 +2026-05-14T18:31:40+08:00 +2026/05/14 18:31:40.886, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.76, 65 +2026-05-14T18:31:45+08:00 +2026/05/14 18:31:45.912, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.13, 66 +2026-05-14T18:31:50+08:00 +2026/05/14 18:31:50.935, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.26, 65 +2026-05-14T18:31:55+08:00 +2026/05/14 18:31:55.959, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.28, 65 +2026-05-14T18:32:00+08:00 +2026/05/14 18:32:00.981, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.97, 66 +2026-05-14T18:32:05+08:00 +2026/05/14 18:32:06.006, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 319.23, 60 +2026-05-14T18:32:11+08:00 +2026/05/14 18:32:11.027, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.24, 66 +2026-05-14T18:32:16+08:00 +2026/05/14 18:32:16.051, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.72, 65 +2026-05-14T18:32:21+08:00 +2026/05/14 18:32:21.075, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.11, 66 +2026-05-14T18:32:26+08:00 +2026/05/14 18:32:26.102, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.14, 65 +2026-05-14T18:32:31+08:00 +2026/05/14 18:32:31.126, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.32, 65 +2026-05-14T18:32:36+08:00 +2026/05/14 18:32:36.150, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.01, 66 +2026-05-14T18:32:41+08:00 +2026/05/14 18:32:41.176, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.86, 65 +2026-05-14T18:32:46+08:00 +2026/05/14 18:32:46.201, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.80, 64 +2026-05-14T18:32:51+08:00 +2026/05/14 18:32:51.225, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.50, 64 +2026-05-14T18:32:56+08:00 +2026/05/14 18:32:56.246, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.60, 64 +2026-05-14T18:33:01+08:00 +2026/05/14 18:33:01.270, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.42, 64 +2026-05-14T18:33:06+08:00 +2026/05/14 18:33:06.293, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.67, 64 +2026-05-14T18:33:11+08:00 +2026/05/14 18:33:11.318, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.33, 64 +2026-05-14T18:33:16+08:00 +2026/05/14 18:33:16.342, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 211.60, 65 +2026-05-14T18:33:21+08:00 +2026/05/14 18:33:21.365, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.76, 65 +2026-05-14T18:33:26+08:00 +2026/05/14 18:33:26.389, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.55, 65 +2026-05-14T18:33:31+08:00 +2026/05/14 18:33:31.414, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.70, 65 +2026-05-14T18:33:36+08:00 +2026/05/14 18:33:36.438, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.27, 65 +2026-05-14T18:33:41+08:00 +2026/05/14 18:33:41.467, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.40, 66 +2026-05-14T18:33:46+08:00 +2026/05/14 18:33:46.494, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.84, 65 +2026-05-14T18:33:51+08:00 +2026/05/14 18:33:51.521, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 64 +2026-05-14T18:33:56+08:00 +2026/05/14 18:33:56.547, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.91, 65 +2026-05-14T18:34:01+08:00 +2026/05/14 18:34:01.571, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.83, 66 +2026-05-14T18:34:06+08:00 +2026/05/14 18:34:06.599, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.42, 66 +2026-05-14T18:34:11+08:00 +2026/05/14 18:34:11.622, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.14, 66 +2026-05-14T18:34:16+08:00 +2026/05/14 18:34:16.645, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.03, 65 +2026-05-14T18:34:21+08:00 +2026/05/14 18:34:21.672, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.42, 64 +2026-05-14T18:34:26+08:00 +2026/05/14 18:34:26.693, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.62, 65 +2026-05-14T18:34:31+08:00 +2026/05/14 18:34:31.720, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.51, 66 +2026-05-14T18:34:36+08:00 +2026/05/14 18:34:36.742, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.20, 66 +2026-05-14T18:34:41+08:00 +2026/05/14 18:34:41.766, NVIDIA GeForce RTX 5090, 19, 7, 9607, 32607, 342.73, 61 +2026-05-14T18:34:46+08:00 +2026/05/14 18:34:46.789, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.01, 65 +2026-05-14T18:34:51+08:00 +2026/05/14 18:34:51.816, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.65, 64 +2026-05-14T18:34:56+08:00 +2026/05/14 18:34:56.840, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.26, 65 +2026-05-14T18:35:01+08:00 +2026/05/14 18:35:01.865, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.98, 65 +2026-05-14T18:35:06+08:00 +2026/05/14 18:35:06.888, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.85, 66 +2026-05-14T18:35:11+08:00 +2026/05/14 18:35:11.911, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.93, 64 +2026-05-14T18:35:16+08:00 +2026/05/14 18:35:16.936, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.00, 65 +2026-05-14T18:35:21+08:00 +2026/05/14 18:35:21.959, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.58, 66 +2026-05-14T18:35:26+08:00 +2026/05/14 18:35:26.983, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.34, 65 +2026-05-14T18:35:31+08:00 +2026/05/14 18:35:32.007, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.80, 64 +2026-05-14T18:35:37+08:00 +2026/05/14 18:35:37.033, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.57, 64 +2026-05-14T18:35:42+08:00 +2026/05/14 18:35:42.058, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.24, 64 +2026-05-14T18:35:47+08:00 +2026/05/14 18:35:47.082, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.80, 64 +2026-05-14T18:35:52+08:00 +2026/05/14 18:35:52.105, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.97, 66 +2026-05-14T18:35:57+08:00 +2026/05/14 18:35:57.130, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.39, 65 +2026-05-14T18:36:02+08:00 +2026/05/14 18:36:02.153, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 65 +2026-05-14T18:36:07+08:00 +2026/05/14 18:36:07.178, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.66, 66 +2026-05-14T18:36:12+08:00 +2026/05/14 18:36:12.202, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.20, 66 +2026-05-14T18:36:17+08:00 +2026/05/14 18:36:17.227, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.73, 64 +2026-05-14T18:36:22+08:00 +2026/05/14 18:36:22.252, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.06, 65 +2026-05-14T18:36:27+08:00 +2026/05/14 18:36:27.275, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.96, 66 +2026-05-14T18:36:32+08:00 +2026/05/14 18:36:32.302, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.70, 65 +2026-05-14T18:36:37+08:00 +2026/05/14 18:36:37.330, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.83, 65 +2026-05-14T18:36:42+08:00 +2026/05/14 18:36:42.358, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.46, 65 +2026-05-14T18:36:47+08:00 +2026/05/14 18:36:47.382, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.52, 65 +2026-05-14T18:36:52+08:00 +2026/05/14 18:36:52.405, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.10, 66 +2026-05-14T18:36:57+08:00 +2026/05/14 18:36:57.429, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.79, 64 +2026-05-14T18:37:02+08:00 +2026/05/14 18:37:02.452, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.38, 65 +2026-05-14T18:37:07+08:00 +2026/05/14 18:37:07.475, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.89, 66 +2026-05-14T18:37:12+08:00 +2026/05/14 18:37:12.498, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.51, 65 +2026-05-14T18:37:17+08:00 +2026/05/14 18:37:17.522, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.76, 65 +2026-05-14T18:37:22+08:00 +2026/05/14 18:37:22.546, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.74, 66 +2026-05-14T18:37:27+08:00 +2026/05/14 18:37:27.573, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 64 +2026-05-14T18:37:32+08:00 +2026/05/14 18:37:32.597, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.01, 65 +2026-05-14T18:37:37+08:00 +2026/05/14 18:37:37.624, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.12, 65 +2026-05-14T18:37:42+08:00 +2026/05/14 18:37:42.648, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 365.75, 66 +2026-05-14T18:37:47+08:00 +2026/05/14 18:37:47.690, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.43, 66 +2026-05-14T18:37:52+08:00 +2026/05/14 18:37:52.730, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.17, 65 +2026-05-14T18:37:57+08:00 +2026/05/14 18:37:57.773, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.72, 65 +2026-05-14T18:38:02+08:00 +2026/05/14 18:38:02.827, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.14, 65 +2026-05-14T18:38:07+08:00 +2026/05/14 18:38:07.851, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 66 +2026-05-14T18:38:12+08:00 +2026/05/14 18:38:12.905, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 366.55, 65 +2026-05-14T18:38:17+08:00 +2026/05/14 18:38:17.938, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.08, 65 +2026-05-14T18:38:22+08:00 +2026/05/14 18:38:22.961, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.52, 65 +2026-05-14T18:38:27+08:00 +2026/05/14 18:38:27.986, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.49, 65 +2026-05-14T18:38:32+08:00 +2026/05/14 18:38:33.011, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.67, 66 +2026-05-14T18:38:38+08:00 +2026/05/14 18:38:38.036, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.47, 66 +2026-05-14T18:38:43+08:00 +2026/05/14 18:38:43.062, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.53, 66 +2026-05-14T18:38:48+08:00 +2026/05/14 18:38:48.084, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 66 +2026-05-14T18:38:53+08:00 +2026/05/14 18:38:53.108, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.98, 66 +2026-05-14T18:38:58+08:00 +2026/05/14 18:38:58.132, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.27, 66 +2026-05-14T18:39:03+08:00 +2026/05/14 18:39:03.156, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.19, 66 +2026-05-14T18:39:08+08:00 +2026/05/14 18:39:08.178, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.44, 66 +2026-05-14T18:39:13+08:00 +2026/05/14 18:39:13.203, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 65 +2026-05-14T18:39:18+08:00 +2026/05/14 18:39:18.228, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.39, 65 +2026-05-14T18:39:23+08:00 +2026/05/14 18:39:23.250, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.84, 65 +2026-05-14T18:39:28+08:00 +2026/05/14 18:39:28.274, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.77, 65 +2026-05-14T18:39:33+08:00 +2026/05/14 18:39:33.298, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 330.13, 61 +2026-05-14T18:39:38+08:00 +2026/05/14 18:39:38.319, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.90, 64 +2026-05-14T18:39:43+08:00 +2026/05/14 18:39:43.344, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 357.60, 66 +2026-05-14T18:39:48+08:00 +2026/05/14 18:39:48.366, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.43, 66 +2026-05-14T18:39:53+08:00 +2026/05/14 18:39:53.389, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.27, 65 +2026-05-14T18:39:58+08:00 +2026/05/14 18:39:58.411, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.62, 65 +2026-05-14T18:40:03+08:00 +2026/05/14 18:40:03.434, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.56, 65 +2026-05-14T18:40:08+08:00 +2026/05/14 18:40:08.459, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.77, 65 +2026-05-14T18:40:13+08:00 +2026/05/14 18:40:13.481, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.93, 66 +2026-05-14T18:40:18+08:00 +2026/05/14 18:40:18.507, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.42, 66 +2026-05-14T18:40:23+08:00 +2026/05/14 18:40:23.531, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.08, 66 +2026-05-14T18:40:28+08:00 +2026/05/14 18:40:28.556, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.04, 65 +2026-05-14T18:40:33+08:00 +2026/05/14 18:40:33.579, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.03, 66 +2026-05-14T18:40:38+08:00 +2026/05/14 18:40:38.620, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.27, 64 +2026-05-14T18:40:43+08:00 +2026/05/14 18:40:43.669, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.16, 65 +2026-05-14T18:40:48+08:00 +2026/05/14 18:40:48.693, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.91, 66 +2026-05-14T18:40:53+08:00 +2026/05/14 18:40:53.719, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 367.62, 66 +2026-05-14T18:40:58+08:00 +2026/05/14 18:40:58.743, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.40, 66 +2026-05-14T18:41:03+08:00 +2026/05/14 18:41:03.786, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 292.99, 65 +2026-05-14T18:41:08+08:00 +2026/05/14 18:41:08.813, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.90, 65 +2026-05-14T18:41:13+08:00 +2026/05/14 18:41:13.856, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.62, 66 +2026-05-14T18:41:18+08:00 +2026/05/14 18:41:18.896, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.83, 66 +2026-05-14T18:41:23+08:00 +2026/05/14 18:41:23.920, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.54, 66 +2026-05-14T18:41:28+08:00 +2026/05/14 18:41:28.947, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.48, 65 +2026-05-14T18:41:33+08:00 +2026/05/14 18:41:33.972, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.79, 66 +2026-05-14T18:41:38+08:00 +2026/05/14 18:41:38.997, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 367.10, 65 +2026-05-14T18:41:44+08:00 +2026/05/14 18:41:44.020, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 344.61, 65 +2026-05-14T18:41:49+08:00 +2026/05/14 18:41:49.043, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.36, 65 +2026-05-14T18:41:54+08:00 +2026/05/14 18:41:54.070, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.69, 65 +2026-05-14T18:41:59+08:00 +2026/05/14 18:41:59.095, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.57, 65 +2026-05-14T18:42:04+08:00 +2026/05/14 18:42:04.123, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.34, 67 +2026-05-14T18:42:09+08:00 +2026/05/14 18:42:09.145, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.71, 66 +2026-05-14T18:42:14+08:00 +2026/05/14 18:42:14.171, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 212.39, 63 +2026-05-14T18:42:19+08:00 +2026/05/14 18:42:19.194, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.26, 65 +2026-05-14T18:42:24+08:00 +2026/05/14 18:42:24.217, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 366.53, 66 +2026-05-14T18:42:29+08:00 +2026/05/14 18:42:29.240, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.72, 66 +2026-05-14T18:42:34+08:00 +2026/05/14 18:42:34.260, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 365.41, 65 +2026-05-14T18:42:39+08:00 +2026/05/14 18:42:39.284, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.29, 66 +2026-05-14T18:42:44+08:00 +2026/05/14 18:42:44.308, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.15, 66 +2026-05-14T18:42:49+08:00 +2026/05/14 18:42:49.331, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 65 +2026-05-14T18:42:54+08:00 +2026/05/14 18:42:54.355, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.29, 66 +2026-05-14T18:42:59+08:00 +2026/05/14 18:42:59.377, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.75, 66 +2026-05-14T18:43:04+08:00 +2026/05/14 18:43:04.398, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.59, 65 +2026-05-14T18:43:09+08:00 +2026/05/14 18:43:09.427, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.39, 65 +2026-05-14T18:43:14+08:00 +2026/05/14 18:43:14.449, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 363.77, 66 +2026-05-14T18:43:19+08:00 +2026/05/14 18:43:19.472, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.89, 66 +2026-05-14T18:43:24+08:00 +2026/05/14 18:43:24.497, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.89, 66 +2026-05-14T18:43:29+08:00 +2026/05/14 18:43:29.521, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 67 +2026-05-14T18:43:34+08:00 +2026/05/14 18:43:34.545, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 365.34, 66 +2026-05-14T18:43:39+08:00 +2026/05/14 18:43:39.568, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.58, 65 +2026-05-14T18:43:44+08:00 +2026/05/14 18:43:44.591, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.55, 66 +2026-05-14T18:43:49+08:00 +2026/05/14 18:43:49.617, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.57, 66 +2026-05-14T18:43:54+08:00 +2026/05/14 18:43:54.639, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.75, 65 +2026-05-14T18:43:59+08:00 +2026/05/14 18:43:59.661, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.46, 66 +2026-05-14T18:44:04+08:00 +2026/05/14 18:44:04.684, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.09, 66 +2026-05-14T18:44:09+08:00 +2026/05/14 18:44:09.709, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.24, 66 +2026-05-14T18:44:14+08:00 +2026/05/14 18:44:14.736, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 325.20, 60 +2026-05-14T18:44:19+08:00 +2026/05/14 18:44:19.757, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.86, 65 +2026-05-14T18:44:24+08:00 +2026/05/14 18:44:24.779, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.30, 66 +2026-05-14T18:44:29+08:00 +2026/05/14 18:44:29.803, NVIDIA GeForce RTX 5090, 88, 36, 9607, 32607, 363.30, 65 +2026-05-14T18:44:34+08:00 +2026/05/14 18:44:34.825, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.69, 66 +2026-05-14T18:44:39+08:00 +2026/05/14 18:44:39.849, NVIDIA GeForce RTX 5090, 87, 36, 9607, 32607, 361.82, 65 +2026-05-14T18:44:44+08:00 +2026/05/14 18:44:44.873, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.70, 66 +2026-05-14T18:44:49+08:00 +2026/05/14 18:44:49.897, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.49, 66 +2026-05-14T18:44:54+08:00 +2026/05/14 18:44:54.921, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 341.76, 65 +2026-05-14T18:44:59+08:00 +2026/05/14 18:44:59.944, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.15, 66 +2026-05-14T18:45:04+08:00 +2026/05/14 18:45:04.972, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.70, 66 +2026-05-14T18:45:09+08:00 +2026/05/14 18:45:09.996, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.88, 66 +2026-05-14T18:45:15+08:00 +2026/05/14 18:45:15.021, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 355.71, 65 +2026-05-14T18:45:20+08:00 +2026/05/14 18:45:20.043, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.89, 65 +2026-05-14T18:45:25+08:00 +2026/05/14 18:45:25.065, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.59, 66 +2026-05-14T18:45:30+08:00 +2026/05/14 18:45:30.088, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.21, 66 +2026-05-14T18:45:35+08:00 +2026/05/14 18:45:35.115, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.52, 65 +2026-05-14T18:45:40+08:00 +2026/05/14 18:45:40.138, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.80, 65 +2026-05-14T18:45:45+08:00 +2026/05/14 18:45:45.162, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.82, 65 +2026-05-14T18:45:50+08:00 +2026/05/14 18:45:50.187, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.83, 65 +2026-05-14T18:45:55+08:00 +2026/05/14 18:45:55.211, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.56, 65 +2026-05-14T18:46:00+08:00 +2026/05/14 18:46:00.234, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.86, 65 +2026-05-14T18:46:05+08:00 +2026/05/14 18:46:05.282, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.02, 65 +2026-05-14T18:46:10+08:00 +2026/05/14 18:46:10.305, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.21, 65 +2026-05-14T18:46:15+08:00 +2026/05/14 18:46:15.367, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.06, 64 +2026-05-14T18:46:20+08:00 +2026/05/14 18:46:20.390, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.14, 64 +2026-05-14T18:46:25+08:00 +2026/05/14 18:46:25.432, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.01, 64 +2026-05-14T18:46:30+08:00 +2026/05/14 18:46:30.510, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.03, 66 +2026-05-14T18:46:35+08:00 +2026/05/14 18:46:35.535, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.90, 66 +2026-05-14T18:46:40+08:00 +2026/05/14 18:46:40.560, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.19, 65 +2026-05-14T18:46:45+08:00 +2026/05/14 18:46:45.617, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.94, 65 +2026-05-14T18:46:50+08:00 +2026/05/14 18:46:50.641, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 248.98, 65 +2026-05-14T18:46:55+08:00 +2026/05/14 18:46:55.664, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.61, 66 +2026-05-14T18:47:00+08:00 +2026/05/14 18:47:00.707, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 365.52, 66 +2026-05-14T18:47:05+08:00 +2026/05/14 18:47:05.747, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.74, 66 +2026-05-14T18:47:10+08:00 +2026/05/14 18:47:10.770, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.05, 65 +2026-05-14T18:47:15+08:00 +2026/05/14 18:47:15.793, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.49, 66 +2026-05-14T18:47:20+08:00 +2026/05/14 18:47:20.818, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.52, 65 +2026-05-14T18:47:25+08:00 +2026/05/14 18:47:25.842, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 66 +2026-05-14T18:47:30+08:00 +2026/05/14 18:47:30.866, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.96, 65 +2026-05-14T18:47:35+08:00 +2026/05/14 18:47:35.889, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.71, 64 +2026-05-14T18:47:40+08:00 +2026/05/14 18:47:40.913, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 283.45, 58 +2026-05-14T18:47:45+08:00 +2026/05/14 18:47:45.937, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.98, 65 +2026-05-14T18:47:50+08:00 +2026/05/14 18:47:50.961, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.83, 65 +2026-05-14T18:47:55+08:00 +2026/05/14 18:47:55.984, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.39, 65 +2026-05-14T18:48:00+08:00 +2026/05/14 18:48:01.005, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.03, 64 +2026-05-14T18:48:06+08:00 +2026/05/14 18:48:06.033, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.07, 64 +2026-05-14T18:48:11+08:00 +2026/05/14 18:48:11.062, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 65 +2026-05-14T18:48:16+08:00 +2026/05/14 18:48:16.086, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.68, 65 +2026-05-14T18:48:21+08:00 +2026/05/14 18:48:21.112, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 65 +2026-05-14T18:48:26+08:00 +2026/05/14 18:48:26.137, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 364.22, 65 +2026-05-14T18:48:31+08:00 +2026/05/14 18:48:31.162, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.83, 64 +2026-05-14T18:48:36+08:00 +2026/05/14 18:48:36.185, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.79, 65 +2026-05-14T18:48:41+08:00 +2026/05/14 18:48:41.213, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 65 +2026-05-14T18:48:46+08:00 +2026/05/14 18:48:46.237, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.13, 65 +2026-05-14T18:48:51+08:00 +2026/05/14 18:48:51.261, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 65 +2026-05-14T18:48:56+08:00 +2026/05/14 18:48:56.285, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.39, 64 +2026-05-14T18:49:01+08:00 +2026/05/14 18:49:01.310, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.45, 65 +2026-05-14T18:49:06+08:00 +2026/05/14 18:49:06.332, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.23, 65 +2026-05-14T18:49:11+08:00 +2026/05/14 18:49:11.358, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.45, 66 +2026-05-14T18:49:16+08:00 +2026/05/14 18:49:16.381, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 210.24, 65 +2026-05-14T18:49:21+08:00 +2026/05/14 18:49:21.404, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.27, 64 +2026-05-14T18:49:26+08:00 +2026/05/14 18:49:26.427, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.32, 64 +2026-05-14T18:49:31+08:00 +2026/05/14 18:49:31.451, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.81, 65 +2026-05-14T18:49:36+08:00 +2026/05/14 18:49:36.475, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.22, 65 +2026-05-14T18:49:41+08:00 +2026/05/14 18:49:41.500, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.94, 65 +2026-05-14T18:49:46+08:00 +2026/05/14 18:49:46.524, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 363.68, 65 +2026-05-14T18:49:51+08:00 +2026/05/14 18:49:51.551, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 363.11, 65 +2026-05-14T18:49:56+08:00 +2026/05/14 18:49:56.575, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.56, 64 +2026-05-14T18:50:01+08:00 +2026/05/14 18:50:01.599, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 327.48, 64 +2026-05-14T18:50:06+08:00 +2026/05/14 18:50:06.622, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.52, 65 +2026-05-14T18:50:11+08:00 +2026/05/14 18:50:11.646, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.28, 65 +2026-05-14T18:50:16+08:00 +2026/05/14 18:50:16.673, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.34, 64 +2026-05-14T18:50:21+08:00 +2026/05/14 18:50:21.698, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.85, 65 +2026-05-14T18:50:26+08:00 +2026/05/14 18:50:26.723, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.33, 65 +2026-05-14T18:50:31+08:00 +2026/05/14 18:50:31.746, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.70, 65 +2026-05-14T18:50:36+08:00 +2026/05/14 18:50:36.770, NVIDIA GeForce RTX 5090, 1, 0, 9607, 32607, 281.04, 58 +2026-05-14T18:50:41+08:00 +2026/05/14 18:50:41.793, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.53, 64 +2026-05-14T18:50:46+08:00 +2026/05/14 18:50:46.817, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.82, 64 +2026-05-14T18:50:51+08:00 +2026/05/14 18:50:51.838, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.18, 63 +2026-05-14T18:50:56+08:00 +2026/05/14 18:50:56.863, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.76, 63 +2026-05-14T18:51:01+08:00 +2026/05/14 18:51:01.885, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.38, 63 +2026-05-14T18:51:06+08:00 +2026/05/14 18:51:06.908, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.42, 63 +2026-05-14T18:51:11+08:00 +2026/05/14 18:51:11.934, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.23, 64 +2026-05-14T18:51:16+08:00 +2026/05/14 18:51:16.957, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.79, 65 +2026-05-14T18:51:21+08:00 +2026/05/14 18:51:22.030, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.65, 64 +2026-05-14T18:51:27+08:00 +2026/05/14 18:51:27.054, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.24, 65 +2026-05-14T18:51:32+08:00 +2026/05/14 18:51:32.077, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 357.22, 66 +2026-05-14T18:51:37+08:00 +2026/05/14 18:51:37.101, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.94, 64 +2026-05-14T18:51:42+08:00 +2026/05/14 18:51:42.127, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.57, 64 +2026-05-14T18:51:47+08:00 +2026/05/14 18:51:47.151, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.04, 64 +2026-05-14T18:51:52+08:00 +2026/05/14 18:51:52.177, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.00, 64 +2026-05-14T18:51:57+08:00 +2026/05/14 18:51:57.201, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.97, 65 +2026-05-14T18:52:02+08:00 +2026/05/14 18:52:02.243, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.01, 65 +2026-05-14T18:52:07+08:00 +2026/05/14 18:52:07.305, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.18, 65 +2026-05-14T18:52:12+08:00 +2026/05/14 18:52:12.328, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.87, 64 +2026-05-14T18:52:17+08:00 +2026/05/14 18:52:17.370, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.79, 65 +2026-05-14T18:52:22+08:00 +2026/05/14 18:52:22.395, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.94, 65 +2026-05-14T18:52:27+08:00 +2026/05/14 18:52:27.419, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.15, 65 +2026-05-14T18:52:32+08:00 +2026/05/14 18:52:32.441, NVIDIA GeForce RTX 5090, 82, 36, 9607, 32607, 319.96, 64 +2026-05-14T18:52:37+08:00 +2026/05/14 18:52:37.484, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.30, 65 +2026-05-14T18:52:42+08:00 +2026/05/14 18:52:42.560, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.80, 64 +2026-05-14T18:52:47+08:00 +2026/05/14 18:52:47.583, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.69, 65 +2026-05-14T18:52:52+08:00 +2026/05/14 18:52:52.608, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.89, 64 +2026-05-14T18:52:57+08:00 +2026/05/14 18:52:57.635, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 64 +2026-05-14T18:53:02+08:00 +2026/05/14 18:53:02.658, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.93, 64 +2026-05-14T18:53:07+08:00 +2026/05/14 18:53:07.681, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 64 +2026-05-14T18:53:12+08:00 +2026/05/14 18:53:12.705, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.71, 64 +2026-05-14T18:53:17+08:00 +2026/05/14 18:53:17.730, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.89, 63 +2026-05-14T18:53:22+08:00 +2026/05/14 18:53:22.754, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.33, 64 +2026-05-14T18:53:27+08:00 +2026/05/14 18:53:27.779, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.16, 65 +2026-05-14T18:53:32+08:00 +2026/05/14 18:53:32.807, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.81, 64 +2026-05-14T18:53:37+08:00 +2026/05/14 18:53:37.831, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.95, 64 +2026-05-14T18:53:42+08:00 +2026/05/14 18:53:42.856, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.19, 64 +2026-05-14T18:53:47+08:00 +2026/05/14 18:53:47.882, NVIDIA GeForce RTX 5090, 69, 32, 9607, 32607, 361.74, 65 +2026-05-14T18:53:52+08:00 +2026/05/14 18:53:52.903, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.20, 65 +2026-05-14T18:53:57+08:00 +2026/05/14 18:53:57.926, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.60, 65 +2026-05-14T18:54:02+08:00 +2026/05/14 18:54:02.953, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 64 +2026-05-14T18:54:07+08:00 +2026/05/14 18:54:07.977, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.95, 65 +2026-05-14T18:54:12+08:00 +2026/05/14 18:54:13.005, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.10, 65 +2026-05-14T18:54:18+08:00 +2026/05/14 18:54:18.029, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.94, 65 +2026-05-14T18:54:23+08:00 +2026/05/14 18:54:23.055, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.66, 64 +2026-05-14T18:54:28+08:00 +2026/05/14 18:54:28.079, NVIDIA GeForce RTX 5090, 29, 18, 9607, 32607, 351.98, 62 +2026-05-14T18:54:33+08:00 +2026/05/14 18:54:33.099, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 364.38, 65 +2026-05-14T18:54:38+08:00 +2026/05/14 18:54:38.125, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.66, 63 +2026-05-14T18:54:43+08:00 +2026/05/14 18:54:43.151, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.74, 65 +2026-05-14T18:54:48+08:00 +2026/05/14 18:54:48.175, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.49, 65 +2026-05-14T18:54:53+08:00 +2026/05/14 18:54:53.203, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.69, 64 +2026-05-14T18:54:58+08:00 +2026/05/14 18:54:58.226, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.32, 64 +2026-05-14T18:55:03+08:00 +2026/05/14 18:55:03.252, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.21, 65 +2026-05-14T18:55:08+08:00 +2026/05/14 18:55:08.276, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.66, 64 +2026-05-14T18:55:13+08:00 +2026/05/14 18:55:13.300, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.28, 64 +2026-05-14T18:55:18+08:00 +2026/05/14 18:55:18.322, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.28, 64 +2026-05-14T18:55:23+08:00 +2026/05/14 18:55:23.348, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.34, 64 +2026-05-14T18:55:28+08:00 +2026/05/14 18:55:28.374, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.61, 64 +2026-05-14T18:55:33+08:00 +2026/05/14 18:55:33.407, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.69, 65 +2026-05-14T18:55:38+08:00 +2026/05/14 18:55:38.429, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.53, 65 +2026-05-14T18:55:43+08:00 +2026/05/14 18:55:43.455, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.80, 65 +2026-05-14T18:55:48+08:00 +2026/05/14 18:55:48.479, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.47, 65 +2026-05-14T18:55:53+08:00 +2026/05/14 18:55:53.505, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.66, 65 +2026-05-14T18:55:58+08:00 +2026/05/14 18:55:58.529, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.30, 65 +2026-05-14T18:56:03+08:00 +2026/05/14 18:56:03.553, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.08, 65 +2026-05-14T18:56:08+08:00 +2026/05/14 18:56:08.574, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 356.01, 65 +2026-05-14T18:56:13+08:00 +2026/05/14 18:56:13.599, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.35, 64 +2026-05-14T18:56:18+08:00 +2026/05/14 18:56:18.622, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.77, 64 +2026-05-14T18:56:23+08:00 +2026/05/14 18:56:23.648, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.80, 64 +2026-05-14T18:56:28+08:00 +2026/05/14 18:56:28.672, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.93, 65 +2026-05-14T18:56:33+08:00 +2026/05/14 18:56:33.697, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.25, 64 +2026-05-14T18:56:38+08:00 +2026/05/14 18:56:38.721, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.09, 65 +2026-05-14T18:56:43+08:00 +2026/05/14 18:56:43.745, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.62, 65 +2026-05-14T18:56:48+08:00 +2026/05/14 18:56:48.771, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.23, 65 +2026-05-14T18:56:53+08:00 +2026/05/14 18:56:53.794, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.93, 65 +2026-05-14T18:56:58+08:00 +2026/05/14 18:56:58.818, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.84, 65 +2026-05-14T18:57:03+08:00 +2026/05/14 18:57:03.859, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.09, 64 +2026-05-14T18:57:08+08:00 +2026/05/14 18:57:08.931, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.08, 65 +2026-05-14T18:57:13+08:00 +2026/05/14 18:57:13.967, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.42, 64 +2026-05-14T18:57:18+08:00 +2026/05/14 18:57:18.990, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.28, 65 +2026-05-14T18:57:23+08:00 +2026/05/14 18:57:24.014, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.31, 65 +2026-05-14T18:57:29+08:00 +2026/05/14 18:57:29.036, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.68, 65 +2026-05-14T18:57:34+08:00 +2026/05/14 18:57:34.061, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.64, 65 +2026-05-14T18:57:39+08:00 +2026/05/14 18:57:39.085, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 241.99, 62 +2026-05-14T18:57:44+08:00 +2026/05/14 18:57:44.109, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.27, 64 +2026-05-14T18:57:49+08:00 +2026/05/14 18:57:49.132, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.58, 64 +2026-05-14T18:57:54+08:00 +2026/05/14 18:57:54.160, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.38, 64 +2026-05-14T18:57:59+08:00 +2026/05/14 18:57:59.187, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.67, 64 +2026-05-14T18:58:04+08:00 +2026/05/14 18:58:04.210, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.73, 64 +2026-05-14T18:58:09+08:00 +2026/05/14 18:58:09.234, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 362.47, 65 +2026-05-14T18:58:14+08:00 +2026/05/14 18:58:14.258, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 362.93, 65 +2026-05-14T18:58:19+08:00 +2026/05/14 18:58:19.283, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.07, 65 +2026-05-14T18:58:24+08:00 +2026/05/14 18:58:24.307, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.11, 65 +2026-05-14T18:58:29+08:00 +2026/05/14 18:58:29.330, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.25, 65 +2026-05-14T18:58:34+08:00 +2026/05/14 18:58:34.354, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 65 +2026-05-14T18:58:39+08:00 +2026/05/14 18:58:39.378, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.69, 65 +2026-05-14T18:58:44+08:00 +2026/05/14 18:58:44.400, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.64, 64 +2026-05-14T18:58:49+08:00 +2026/05/14 18:58:49.424, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.58, 65 +2026-05-14T18:58:54+08:00 +2026/05/14 18:58:54.450, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.70, 65 +2026-05-14T18:58:59+08:00 +2026/05/14 18:58:59.474, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.62, 65 +2026-05-14T18:59:04+08:00 +2026/05/14 18:59:04.502, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.30, 65 +2026-05-14T18:59:09+08:00 +2026/05/14 18:59:09.526, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.71, 65 +2026-05-14T18:59:14+08:00 +2026/05/14 18:59:14.550, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.26, 64 +2026-05-14T18:59:19+08:00 +2026/05/14 18:59:19.574, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.91, 65 +2026-05-14T18:59:24+08:00 +2026/05/14 18:59:24.599, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.31, 66 +2026-05-14T18:59:29+08:00 +2026/05/14 18:59:29.623, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.17, 64 +2026-05-14T18:59:34+08:00 +2026/05/14 18:59:34.647, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 364.68, 65 +2026-05-14T18:59:39+08:00 +2026/05/14 18:59:39.670, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.60, 65 +2026-05-14T18:59:44+08:00 +2026/05/14 18:59:44.694, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.46, 65 +2026-05-14T18:59:49+08:00 +2026/05/14 18:59:49.717, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.81, 64 +2026-05-14T18:59:54+08:00 +2026/05/14 18:59:54.739, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 364.86, 64 +2026-05-14T18:59:59+08:00 +2026/05/14 18:59:59.762, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.72, 66 +2026-05-14T19:00:04+08:00 +2026/05/14 19:00:04.785, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 324.25, 60 +2026-05-14T19:00:09+08:00 +2026/05/14 19:00:09.807, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.48, 63 +2026-05-14T19:00:14+08:00 +2026/05/14 19:00:14.829, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 223.14, 63 +2026-05-14T19:00:19+08:00 +2026/05/14 19:00:19.856, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.37, 65 +2026-05-14T19:00:24+08:00 +2026/05/14 19:00:24.880, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.71, 64 +2026-05-14T19:00:29+08:00 +2026/05/14 19:00:29.904, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.84, 65 +2026-05-14T19:00:34+08:00 +2026/05/14 19:00:34.926, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.94, 65 +2026-05-14T19:00:39+08:00 +2026/05/14 19:00:39.948, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.77, 65 +2026-05-14T19:00:44+08:00 +2026/05/14 19:00:44.974, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 343.07, 65 +2026-05-14T19:00:49+08:00 +2026/05/14 19:00:49.997, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.95, 65 +2026-05-14T19:00:55+08:00 +2026/05/14 19:00:55.020, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.46, 65 +2026-05-14T19:01:00+08:00 +2026/05/14 19:01:00.044, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.29, 65 +2026-05-14T19:01:05+08:00 +2026/05/14 19:01:05.071, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.28, 65 +2026-05-14T19:01:10+08:00 +2026/05/14 19:01:10.097, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.21, 65 +2026-05-14T19:01:15+08:00 +2026/05/14 19:01:15.120, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.64, 65 +2026-05-14T19:01:20+08:00 +2026/05/14 19:01:20.145, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.35, 65 +2026-05-14T19:01:25+08:00 +2026/05/14 19:01:25.169, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 363.04, 64 +2026-05-14T19:01:30+08:00 +2026/05/14 19:01:30.192, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.75, 64 +2026-05-14T19:01:35+08:00 +2026/05/14 19:01:35.218, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.02, 64 +2026-05-14T19:01:40+08:00 +2026/05/14 19:01:40.242, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 363.42, 64 +2026-05-14T19:01:45+08:00 +2026/05/14 19:01:45.269, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.80, 64 +2026-05-14T19:01:50+08:00 +2026/05/14 19:01:50.292, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.74, 64 +2026-05-14T19:01:55+08:00 +2026/05/14 19:01:55.316, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.84, 64 +2026-05-14T19:02:00+08:00 +2026/05/14 19:02:00.340, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.03, 64 +2026-05-14T19:02:05+08:00 +2026/05/14 19:02:05.367, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.78, 65 +2026-05-14T19:02:10+08:00 +2026/05/14 19:02:10.391, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.15, 66 +2026-05-14T19:02:15+08:00 +2026/05/14 19:02:15.417, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.05, 65 +2026-05-14T19:02:20+08:00 +2026/05/14 19:02:20.440, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.01, 65 +2026-05-14T19:02:25+08:00 +2026/05/14 19:02:25.462, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 66 +2026-05-14T19:02:30+08:00 +2026/05/14 19:02:30.487, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 65 +2026-05-14T19:02:35+08:00 +2026/05/14 19:02:35.514, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.17, 65 +2026-05-14T19:02:40+08:00 +2026/05/14 19:02:40.537, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 352.51, 65 +2026-05-14T19:02:45+08:00 +2026/05/14 19:02:45.561, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.58, 66 +2026-05-14T19:02:50+08:00 +2026/05/14 19:02:50.587, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.26, 65 +2026-05-14T19:02:55+08:00 +2026/05/14 19:02:55.613, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 363.78, 66 +2026-05-14T19:03:00+08:00 +2026/05/14 19:03:00.636, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.08, 64 +2026-05-14T19:03:05+08:00 +2026/05/14 19:03:05.661, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.19, 64 +2026-05-14T19:03:10+08:00 +2026/05/14 19:03:10.686, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.59, 64 +2026-05-14T19:03:15+08:00 +2026/05/14 19:03:15.710, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.83, 64 +2026-05-14T19:03:20+08:00 +2026/05/14 19:03:20.734, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.90, 65 +2026-05-14T19:03:25+08:00 +2026/05/14 19:03:25.756, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.32, 66 +2026-05-14T19:03:30+08:00 +2026/05/14 19:03:30.780, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.92, 66 +2026-05-14T19:03:35+08:00 +2026/05/14 19:03:35.806, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.13, 66 +2026-05-14T19:03:40+08:00 +2026/05/14 19:03:40.831, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.18, 65 +2026-05-14T19:03:45+08:00 +2026/05/14 19:03:45.854, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.03, 65 +2026-05-14T19:03:50+08:00 +2026/05/14 19:03:50.877, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.92, 65 +2026-05-14T19:03:55+08:00 +2026/05/14 19:03:55.902, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.51, 65 +2026-05-14T19:04:00+08:00 +2026/05/14 19:04:00.926, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.48, 64 +2026-05-14T19:04:05+08:00 +2026/05/14 19:04:05.951, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.50, 66 +2026-05-14T19:04:10+08:00 +2026/05/14 19:04:10.974, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.74, 65 +2026-05-14T19:04:15+08:00 +2026/05/14 19:04:15.998, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.72, 66 +2026-05-14T19:04:21+08:00 +2026/05/14 19:04:21.021, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.53, 66 +2026-05-14T19:04:26+08:00 +2026/05/14 19:04:26.046, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.22, 65 +2026-05-14T19:04:31+08:00 +2026/05/14 19:04:31.069, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.47, 65 +2026-05-14T19:04:36+08:00 +2026/05/14 19:04:36.094, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.87, 66 +2026-05-14T19:04:41+08:00 +2026/05/14 19:04:41.117, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.36, 63 +2026-05-14T19:04:46+08:00 +2026/05/14 19:04:46.146, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.02, 64 +2026-05-14T19:04:51+08:00 +2026/05/14 19:04:51.172, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.06, 64 +2026-05-14T19:04:56+08:00 +2026/05/14 19:04:56.195, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.88, 64 +2026-05-14T19:05:01+08:00 +2026/05/14 19:05:01.218, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.13, 65 +2026-05-14T19:05:06+08:00 +2026/05/14 19:05:06.243, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.73, 65 +2026-05-14T19:05:11+08:00 +2026/05/14 19:05:11.267, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.27, 65 +2026-05-14T19:05:16+08:00 +2026/05/14 19:05:16.291, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.42, 64 +2026-05-14T19:05:21+08:00 +2026/05/14 19:05:21.314, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 363.59, 64 +2026-05-14T19:05:26+08:00 +2026/05/14 19:05:26.337, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.60, 64 +2026-05-14T19:05:31+08:00 +2026/05/14 19:05:31.365, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.51, 64 +2026-05-14T19:05:36+08:00 +2026/05/14 19:05:36.389, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.51, 64 +2026-05-14T19:05:41+08:00 +2026/05/14 19:05:41.412, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.84, 65 +2026-05-14T19:05:46+08:00 +2026/05/14 19:05:46.437, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.76, 64 +2026-05-14T19:05:51+08:00 +2026/05/14 19:05:51.462, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 363.73, 64 +2026-05-14T19:05:56+08:00 +2026/05/14 19:05:56.485, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 271.04, 58 +2026-05-14T19:06:01+08:00 +2026/05/14 19:06:01.510, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.38, 65 +2026-05-14T19:06:06+08:00 +2026/05/14 19:06:06.536, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.55, 65 +2026-05-14T19:06:11+08:00 +2026/05/14 19:06:11.559, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.09, 65 +2026-05-14T19:06:16+08:00 +2026/05/14 19:06:16.585, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 354.32, 64 +2026-05-14T19:06:21+08:00 +2026/05/14 19:06:21.609, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.29, 64 +2026-05-14T19:06:26+08:00 +2026/05/14 19:06:26.636, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.51, 64 +2026-05-14T19:06:31+08:00 +2026/05/14 19:06:31.660, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.53, 66 +2026-05-14T19:06:36+08:00 +2026/05/14 19:06:36.684, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.52, 65 +2026-05-14T19:06:41+08:00 +2026/05/14 19:06:41.707, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 364.16, 65 +2026-05-14T19:06:46+08:00 +2026/05/14 19:06:46.731, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 363.84, 65 +2026-05-14T19:06:51+08:00 +2026/05/14 19:06:51.754, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.58, 65 +2026-05-14T19:06:56+08:00 +2026/05/14 19:06:56.777, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.71, 65 +2026-05-14T19:07:01+08:00 +2026/05/14 19:07:01.806, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.53, 65 +2026-05-14T19:07:06+08:00 +2026/05/14 19:07:06.830, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.98, 65 +2026-05-14T19:07:11+08:00 +2026/05/14 19:07:11.854, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.66, 65 +2026-05-14T19:07:16+08:00 +2026/05/14 19:07:16.877, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.93, 65 +2026-05-14T19:07:21+08:00 +2026/05/14 19:07:21.900, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.68, 64 +2026-05-14T19:07:26+08:00 +2026/05/14 19:07:26.924, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.42, 65 +2026-05-14T19:07:31+08:00 +2026/05/14 19:07:31.947, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 332.10, 64 +2026-05-14T19:07:36+08:00 +2026/05/14 19:07:36.974, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.79, 65 +2026-05-14T19:07:41+08:00 +2026/05/14 19:07:41.997, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.58, 65 +2026-05-14T19:07:47+08:00 +2026/05/14 19:07:47.021, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.99, 66 +2026-05-14T19:07:52+08:00 +2026/05/14 19:07:52.044, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.26, 65 +2026-05-14T19:07:57+08:00 +2026/05/14 19:07:57.067, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.90, 66 +2026-05-14T19:08:02+08:00 +2026/05/14 19:08:02.097, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.43, 65 +2026-05-14T19:08:07+08:00 +2026/05/14 19:08:07.120, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.03, 65 +2026-05-14T19:08:12+08:00 +2026/05/14 19:08:12.142, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.70, 66 +2026-05-14T19:08:17+08:00 +2026/05/14 19:08:17.168, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.05, 65 +2026-05-14T19:08:22+08:00 +2026/05/14 19:08:22.192, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.67, 65 +2026-05-14T19:08:27+08:00 +2026/05/14 19:08:27.215, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.33, 65 +2026-05-14T19:08:32+08:00 +2026/05/14 19:08:32.245, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.15, 65 +2026-05-14T19:08:37+08:00 +2026/05/14 19:08:37.271, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.77, 65 +2026-05-14T19:08:42+08:00 +2026/05/14 19:08:42.297, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.03, 65 +2026-05-14T19:08:47+08:00 +2026/05/14 19:08:47.321, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.79, 65 +2026-05-14T19:08:52+08:00 +2026/05/14 19:08:52.344, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.24, 65 +2026-05-14T19:08:57+08:00 +2026/05/14 19:08:57.368, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.12, 64 +2026-05-14T19:09:02+08:00 +2026/05/14 19:09:02.391, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 64 +2026-05-14T19:09:07+08:00 +2026/05/14 19:09:07.415, NVIDIA GeForce RTX 5090, 72, 33, 9607, 32607, 257.87, 61 +2026-05-14T19:09:12+08:00 +2026/05/14 19:09:12.439, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.75, 65 +2026-05-14T19:09:17+08:00 +2026/05/14 19:09:17.462, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.82, 65 +2026-05-14T19:09:22+08:00 +2026/05/14 19:09:22.486, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.01, 65 +2026-05-14T19:09:27+08:00 +2026/05/14 19:09:27.513, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.21, 65 +2026-05-14T19:09:32+08:00 +2026/05/14 19:09:32.537, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.14, 65 +2026-05-14T19:09:37+08:00 +2026/05/14 19:09:37.560, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.85, 65 +2026-05-14T19:09:42+08:00 +2026/05/14 19:09:42.584, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.58, 65 +2026-05-14T19:09:47+08:00 +2026/05/14 19:09:47.609, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.07, 65 +2026-05-14T19:09:52+08:00 +2026/05/14 19:09:52.634, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.32, 65 +2026-05-14T19:09:57+08:00 +2026/05/14 19:09:57.657, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.87, 65 +2026-05-14T19:10:02+08:00 +2026/05/14 19:10:02.681, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.52, 65 +2026-05-14T19:10:07+08:00 +2026/05/14 19:10:07.708, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.02, 65 +2026-05-14T19:10:12+08:00 +2026/05/14 19:10:12.733, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.49, 65 +2026-05-14T19:10:17+08:00 +2026/05/14 19:10:17.758, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.26, 65 +2026-05-14T19:10:22+08:00 +2026/05/14 19:10:22.785, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.04, 65 +2026-05-14T19:10:27+08:00 +2026/05/14 19:10:27.816, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.33, 63 +2026-05-14T19:10:32+08:00 +2026/05/14 19:10:32.843, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.70, 64 +2026-05-14T19:10:37+08:00 +2026/05/14 19:10:37.868, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.15, 64 +2026-05-14T19:10:42+08:00 +2026/05/14 19:10:42.894, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.58, 64 +2026-05-14T19:10:47+08:00 +2026/05/14 19:10:47.919, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.00, 64 +2026-05-14T19:10:52+08:00 +2026/05/14 19:10:52.947, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.97, 64 +2026-05-14T19:10:57+08:00 +2026/05/14 19:10:57.971, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.29, 64 +2026-05-14T19:11:02+08:00 +2026/05/14 19:11:02.995, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 253.60, 64 +2026-05-14T19:11:08+08:00 +2026/05/14 19:11:08.019, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.88, 64 +2026-05-14T19:11:13+08:00 +2026/05/14 19:11:13.042, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.59, 65 +2026-05-14T19:11:18+08:00 +2026/05/14 19:11:18.067, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.81, 65 +2026-05-14T19:11:23+08:00 +2026/05/14 19:11:23.089, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.28, 65 +2026-05-14T19:11:28+08:00 +2026/05/14 19:11:28.112, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.51, 65 +2026-05-14T19:11:33+08:00 +2026/05/14 19:11:33.137, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.92, 65 +2026-05-14T19:11:38+08:00 +2026/05/14 19:11:38.160, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.99, 65 +2026-05-14T19:11:43+08:00 +2026/05/14 19:11:43.183, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.74, 63 +2026-05-14T19:11:48+08:00 +2026/05/14 19:11:48.207, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.37, 63 +2026-05-14T19:11:53+08:00 +2026/05/14 19:11:53.233, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.66, 64 +2026-05-14T19:11:58+08:00 +2026/05/14 19:11:58.258, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.46, 64 +2026-05-14T19:12:03+08:00 +2026/05/14 19:12:03.281, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.70, 64 +2026-05-14T19:12:08+08:00 +2026/05/14 19:12:08.305, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.89, 64 +2026-05-14T19:12:13+08:00 +2026/05/14 19:12:13.330, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.65, 64 +2026-05-14T19:12:18+08:00 +2026/05/14 19:12:18.355, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.99, 64 +2026-05-14T19:12:23+08:00 +2026/05/14 19:12:23.377, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.15, 65 +2026-05-14T19:12:28+08:00 +2026/05/14 19:12:28.407, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 65 +2026-05-14T19:12:33+08:00 +2026/05/14 19:12:33.430, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.58, 65 +2026-05-14T19:12:38+08:00 +2026/05/14 19:12:38.455, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.32, 65 +2026-05-14T19:12:43+08:00 +2026/05/14 19:12:43.478, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.18, 65 +2026-05-14T19:12:48+08:00 +2026/05/14 19:12:48.503, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.70, 65 +2026-05-14T19:12:53+08:00 +2026/05/14 19:12:53.526, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 65 +2026-05-14T19:12:58+08:00 +2026/05/14 19:12:58.551, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.05, 66 +2026-05-14T19:13:03+08:00 +2026/05/14 19:13:03.574, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.99, 64 +2026-05-14T19:13:08+08:00 +2026/05/14 19:13:08.598, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.72, 65 +2026-05-14T19:13:13+08:00 +2026/05/14 19:13:13.621, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.97, 65 +2026-05-14T19:13:18+08:00 +2026/05/14 19:13:18.644, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.36, 66 +2026-05-14T19:13:23+08:00 +2026/05/14 19:13:23.668, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 255.61, 64 +2026-05-14T19:13:28+08:00 +2026/05/14 19:13:28.693, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.71, 65 +2026-05-14T19:13:33+08:00 +2026/05/14 19:13:33.764, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.08, 66 +2026-05-14T19:13:38+08:00 +2026/05/14 19:13:38.804, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.67, 64 +2026-05-14T19:13:43+08:00 +2026/05/14 19:13:43.827, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.15, 64 +2026-05-14T19:13:48+08:00 +2026/05/14 19:13:48.851, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.30, 64 +2026-05-14T19:13:53+08:00 +2026/05/14 19:13:53.900, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.07, 64 +2026-05-14T19:13:58+08:00 +2026/05/14 19:13:58.924, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.47, 65 +2026-05-14T19:14:03+08:00 +2026/05/14 19:14:03.981, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.01, 64 +2026-05-14T19:14:08+08:00 +2026/05/14 19:14:09.005, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.31, 65 +2026-05-14T19:14:14+08:00 +2026/05/14 19:14:14.044, NVIDIA GeForce RTX 5090, 32, 19, 9607, 32607, 353.25, 60 +2026-05-14T19:14:19+08:00 +2026/05/14 19:14:19.106, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.67, 65 +2026-05-14T19:14:24+08:00 +2026/05/14 19:14:24.165, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.21, 64 +2026-05-14T19:14:29+08:00 +2026/05/14 19:14:29.193, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.25, 65 +2026-05-14T19:14:34+08:00 +2026/05/14 19:14:34.217, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.52, 65 +2026-05-14T19:14:39+08:00 +2026/05/14 19:14:39.276, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 65 +2026-05-14T19:14:44+08:00 +2026/05/14 19:14:44.300, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 65 +2026-05-14T19:14:49+08:00 +2026/05/14 19:14:49.339, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.03, 65 +2026-05-14T19:14:54+08:00 +2026/05/14 19:14:54.379, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 208.49, 65 +2026-05-14T19:14:59+08:00 +2026/05/14 19:14:59.402, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.83, 64 +2026-05-14T19:15:04+08:00 +2026/05/14 19:15:04.426, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.01, 64 +2026-05-14T19:15:09+08:00 +2026/05/14 19:15:09.483, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.31, 64 +2026-05-14T19:15:14+08:00 +2026/05/14 19:15:14.508, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.56, 65 +2026-05-14T19:15:19+08:00 +2026/05/14 19:15:19.562, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.14, 65 +2026-05-14T19:15:24+08:00 +2026/05/14 19:15:24.587, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.06, 65 +2026-05-14T19:15:29+08:00 +2026/05/14 19:15:29.626, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.92, 65 +2026-05-14T19:15:34+08:00 +2026/05/14 19:15:34.700, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.39, 64 +2026-05-14T19:15:39+08:00 +2026/05/14 19:15:39.723, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.87, 64 +2026-05-14T19:15:44+08:00 +2026/05/14 19:15:44.797, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.32, 64 +2026-05-14T19:15:49+08:00 +2026/05/14 19:15:49.822, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.76, 64 +2026-05-14T19:15:54+08:00 +2026/05/14 19:15:54.862, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.49, 64 +2026-05-14T19:15:59+08:00 +2026/05/14 19:15:59.886, NVIDIA GeForce RTX 5090, 67, 31, 9607, 32607, 359.64, 61 +2026-05-14T19:16:04+08:00 +2026/05/14 19:16:04.908, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 311.35, 63 +2026-05-14T19:16:09+08:00 +2026/05/14 19:16:09.931, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.02, 63 +2026-05-14T19:16:14+08:00 +2026/05/14 19:16:14.956, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.88, 64 +2026-05-14T19:16:19+08:00 +2026/05/14 19:16:19.980, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.80, 63 +2026-05-14T19:16:24+08:00 +2026/05/14 19:16:25.003, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.80, 63 +2026-05-14T19:16:30+08:00 +2026/05/14 19:16:30.027, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.06, 64 +2026-05-14T19:16:35+08:00 +2026/05/14 19:16:35.054, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.50, 65 +2026-05-14T19:16:40+08:00 +2026/05/14 19:16:40.078, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.14, 65 +2026-05-14T19:16:45+08:00 +2026/05/14 19:16:45.102, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.44, 65 +2026-05-14T19:16:50+08:00 +2026/05/14 19:16:50.125, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 288.39, 58 +2026-05-14T19:16:55+08:00 +2026/05/14 19:16:55.148, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.66, 65 +2026-05-14T19:17:00+08:00 +2026/05/14 19:17:00.175, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.02, 65 +2026-05-14T19:17:05+08:00 +2026/05/14 19:17:05.203, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.00, 64 +2026-05-14T19:17:10+08:00 +2026/05/14 19:17:10.227, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.31, 64 +2026-05-14T19:17:15+08:00 +2026/05/14 19:17:15.251, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.12, 66 +2026-05-14T19:17:20+08:00 +2026/05/14 19:17:20.273, NVIDIA GeForce RTX 5090, 77, 35, 9607, 32607, 258.05, 64 +2026-05-14T19:17:25+08:00 +2026/05/14 19:17:25.298, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.77, 65 +2026-05-14T19:17:30+08:00 +2026/05/14 19:17:30.323, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 363.64, 66 +2026-05-14T19:17:35+08:00 +2026/05/14 19:17:35.347, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 363.70, 65 +2026-05-14T19:17:40+08:00 +2026/05/14 19:17:40.375, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.40, 65 +2026-05-14T19:17:45+08:00 +2026/05/14 19:17:45.399, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.02, 66 +2026-05-14T19:17:50+08:00 +2026/05/14 19:17:50.427, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.67, 65 +2026-05-14T19:17:55+08:00 +2026/05/14 19:17:55.451, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.35, 65 +2026-05-14T19:18:00+08:00 +2026/05/14 19:18:00.477, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.91, 65 +2026-05-14T19:18:05+08:00 +2026/05/14 19:18:05.501, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.71, 65 +2026-05-14T19:18:10+08:00 +2026/05/14 19:18:10.524, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.20, 66 +2026-05-14T19:18:15+08:00 +2026/05/14 19:18:15.547, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.56, 65 +2026-05-14T19:18:20+08:00 +2026/05/14 19:18:20.570, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.33, 65 +2026-05-14T19:18:25+08:00 +2026/05/14 19:18:25.593, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 288.12, 65 +2026-05-14T19:18:30+08:00 +2026/05/14 19:18:30.619, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.10, 65 +2026-05-14T19:18:35+08:00 +2026/05/14 19:18:35.644, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.52, 64 +2026-05-14T19:18:40+08:00 +2026/05/14 19:18:40.666, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.92, 64 +2026-05-14T19:18:45+08:00 +2026/05/14 19:18:45.694, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.04, 64 +2026-05-14T19:18:50+08:00 +2026/05/14 19:18:50.719, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.87, 64 +2026-05-14T19:18:55+08:00 +2026/05/14 19:18:55.743, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.12, 64 +2026-05-14T19:19:00+08:00 +2026/05/14 19:19:00.818, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.20, 65 +2026-05-14T19:19:05+08:00 +2026/05/14 19:19:05.841, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.34, 65 +2026-05-14T19:19:10+08:00 +2026/05/14 19:19:10.921, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.03, 65 +2026-05-14T19:19:15+08:00 +2026/05/14 19:19:15.950, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.48, 65 +2026-05-14T19:19:20+08:00 +2026/05/14 19:19:20.974, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.58, 65 +2026-05-14T19:19:26+08:00 +2026/05/14 19:19:26.044, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.83, 65 +2026-05-14T19:19:31+08:00 +2026/05/14 19:19:31.069, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.91, 65 +2026-05-14T19:19:36+08:00 +2026/05/14 19:19:36.110, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.51, 64 +2026-05-14T19:19:41+08:00 +2026/05/14 19:19:41.182, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 64 +2026-05-14T19:19:46+08:00 +2026/05/14 19:19:46.205, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 65 +2026-05-14T19:19:51+08:00 +2026/05/14 19:19:51.251, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.37, 63 +2026-05-14T19:19:56+08:00 +2026/05/14 19:19:56.303, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.08, 64 +2026-05-14T19:20:01+08:00 +2026/05/14 19:20:01.358, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.93, 64 +2026-05-14T19:20:06+08:00 +2026/05/14 19:20:06.382, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.45, 64 +2026-05-14T19:20:11+08:00 +2026/05/14 19:20:11.407, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.17, 64 +2026-05-14T19:20:16+08:00 +2026/05/14 19:20:16.431, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.71, 65 +2026-05-14T19:20:21+08:00 +2026/05/14 19:20:21.455, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.19, 65 +2026-05-14T19:20:26+08:00 +2026/05/14 19:20:26.478, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.24, 65 +2026-05-14T19:20:31+08:00 +2026/05/14 19:20:31.502, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 257.56, 58 +2026-05-14T19:20:36+08:00 +2026/05/14 19:20:36.526, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 65 +2026-05-14T19:20:41+08:00 +2026/05/14 19:20:41.550, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.79, 65 +2026-05-14T19:20:46+08:00 +2026/05/14 19:20:46.573, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.89, 64 +2026-05-14T19:20:51+08:00 +2026/05/14 19:20:51.596, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.64, 64 +2026-05-14T19:20:56+08:00 +2026/05/14 19:20:56.621, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.28, 64 +2026-05-14T19:21:01+08:00 +2026/05/14 19:21:01.647, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.63, 64 +2026-05-14T19:21:06+08:00 +2026/05/14 19:21:06.671, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.52, 64 +2026-05-14T19:21:11+08:00 +2026/05/14 19:21:11.694, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.03, 65 +2026-05-14T19:21:16+08:00 +2026/05/14 19:21:16.719, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.11, 64 +2026-05-14T19:21:21+08:00 +2026/05/14 19:21:21.742, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.82, 64 +2026-05-14T19:21:26+08:00 +2026/05/14 19:21:26.767, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.89, 64 +2026-05-14T19:21:31+08:00 +2026/05/14 19:21:31.791, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.35, 64 +2026-05-14T19:21:36+08:00 +2026/05/14 19:21:36.814, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.35, 64 +2026-05-14T19:21:41+08:00 +2026/05/14 19:21:41.839, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.92, 64 +2026-05-14T19:21:46+08:00 +2026/05/14 19:21:46.860, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.22, 65 +2026-05-14T19:21:51+08:00 +2026/05/14 19:21:51.885, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.09, 65 +2026-05-14T19:21:56+08:00 +2026/05/14 19:21:56.911, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.45, 65 +2026-05-14T19:22:01+08:00 +2026/05/14 19:22:01.935, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.40, 65 +2026-05-14T19:22:06+08:00 +2026/05/14 19:22:06.959, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.75, 65 +2026-05-14T19:22:11+08:00 +2026/05/14 19:22:11.983, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.07, 65 +2026-05-14T19:22:16+08:00 +2026/05/14 19:22:17.010, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.19, 66 +2026-05-14T19:22:22+08:00 +2026/05/14 19:22:22.033, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 255.52, 62 +2026-05-14T19:22:27+08:00 +2026/05/14 19:22:27.056, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.23, 65 +2026-05-14T19:22:32+08:00 +2026/05/14 19:22:32.081, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.82, 65 +2026-05-14T19:22:37+08:00 +2026/05/14 19:22:37.104, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.05, 66 +2026-05-14T19:22:42+08:00 +2026/05/14 19:22:42.128, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.92, 66 +2026-05-14T19:22:47+08:00 +2026/05/14 19:22:47.152, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.11, 65 +2026-05-14T19:22:52+08:00 +2026/05/14 19:22:52.177, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.43, 65 +2026-05-14T19:22:57+08:00 +2026/05/14 19:22:57.202, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.82, 65 +2026-05-14T19:23:02+08:00 +2026/05/14 19:23:02.226, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.82, 65 +2026-05-14T19:23:07+08:00 +2026/05/14 19:23:07.250, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.18, 65 +2026-05-14T19:23:12+08:00 +2026/05/14 19:23:12.273, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.39, 65 +2026-05-14T19:23:17+08:00 +2026/05/14 19:23:17.296, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.57, 65 +2026-05-14T19:23:22+08:00 +2026/05/14 19:23:22.321, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 325.51, 65 +2026-05-14T19:23:27+08:00 +2026/05/14 19:23:27.344, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.83, 65 +2026-05-14T19:23:32+08:00 +2026/05/14 19:23:32.366, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.14, 65 +2026-05-14T19:23:37+08:00 +2026/05/14 19:23:37.388, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.81, 65 +2026-05-14T19:23:42+08:00 +2026/05/14 19:23:42.412, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.80, 64 +2026-05-14T19:23:47+08:00 +2026/05/14 19:23:47.435, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.03, 65 +2026-05-14T19:23:52+08:00 +2026/05/14 19:23:52.462, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.97, 65 +2026-05-14T19:23:57+08:00 +2026/05/14 19:23:57.491, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.70, 65 +2026-05-14T19:24:02+08:00 +2026/05/14 19:24:02.514, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.93, 66 +2026-05-14T19:24:07+08:00 +2026/05/14 19:24:07.538, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.48, 66 +2026-05-14T19:24:12+08:00 +2026/05/14 19:24:12.570, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.16, 65 +2026-05-14T19:24:17+08:00 +2026/05/14 19:24:17.593, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 65 +2026-05-14T19:24:22+08:00 +2026/05/14 19:24:22.613, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.08, 65 +2026-05-14T19:24:27+08:00 +2026/05/14 19:24:27.637, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.60, 65 +2026-05-14T19:24:32+08:00 +2026/05/14 19:24:32.662, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 364.01, 65 +2026-05-14T19:24:37+08:00 +2026/05/14 19:24:37.686, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.15, 65 +2026-05-14T19:24:42+08:00 +2026/05/14 19:24:42.709, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.54, 64 +2026-05-14T19:24:47+08:00 +2026/05/14 19:24:47.733, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.99, 64 +2026-05-14T19:24:52+08:00 +2026/05/14 19:24:52.759, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.01, 63 +2026-05-14T19:24:57+08:00 +2026/05/14 19:24:57.782, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.96, 64 +2026-05-14T19:25:02+08:00 +2026/05/14 19:25:02.806, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.66, 65 +2026-05-14T19:25:07+08:00 +2026/05/14 19:25:07.829, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.47, 65 +2026-05-14T19:25:12+08:00 +2026/05/14 19:25:12.852, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.59, 66 +2026-05-14T19:25:17+08:00 +2026/05/14 19:25:17.877, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.51, 64 +2026-05-14T19:25:22+08:00 +2026/05/14 19:25:22.902, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.10, 65 +2026-05-14T19:25:27+08:00 +2026/05/14 19:25:27.927, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.82, 66 +2026-05-14T19:25:32+08:00 +2026/05/14 19:25:32.951, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.53, 64 +2026-05-14T19:25:37+08:00 +2026/05/14 19:25:37.995, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.10, 65 +2026-05-14T19:25:43+08:00 +2026/05/14 19:25:43.017, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.24, 65 +2026-05-14T19:25:48+08:00 +2026/05/14 19:25:48.042, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.88, 65 +2026-05-14T19:25:53+08:00 +2026/05/14 19:25:53.064, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.04, 65 +2026-05-14T19:25:58+08:00 +2026/05/14 19:25:58.090, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.24, 65 +2026-05-14T19:26:03+08:00 +2026/05/14 19:26:03.128, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.04, 65 +2026-05-14T19:26:08+08:00 +2026/05/14 19:26:08.152, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.73, 64 +2026-05-14T19:26:13+08:00 +2026/05/14 19:26:13.174, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.85, 64 +2026-05-14T19:26:18+08:00 +2026/05/14 19:26:18.196, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.33, 64 +2026-05-14T19:26:23+08:00 +2026/05/14 19:26:23.239, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.20, 65 +2026-05-14T19:26:28+08:00 +2026/05/14 19:26:28.292, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.85, 65 +2026-05-14T19:26:33+08:00 +2026/05/14 19:26:33.316, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.13, 65 +2026-05-14T19:26:38+08:00 +2026/05/14 19:26:38.355, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.12, 65 +2026-05-14T19:26:43+08:00 +2026/05/14 19:26:43.380, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 262.22, 59 +2026-05-14T19:26:48+08:00 +2026/05/14 19:26:48.406, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.70, 66 +2026-05-14T19:26:53+08:00 +2026/05/14 19:26:53.449, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.26, 66 +2026-05-14T19:26:58+08:00 +2026/05/14 19:26:58.473, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.02, 65 +2026-05-14T19:27:03+08:00 +2026/05/14 19:27:03.516, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.61, 65 +2026-05-14T19:27:08+08:00 +2026/05/14 19:27:08.589, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.60, 65 +2026-05-14T19:27:13+08:00 +2026/05/14 19:27:13.613, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.67, 65 +2026-05-14T19:27:18+08:00 +2026/05/14 19:27:18.637, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.47, 65 +2026-05-14T19:27:23+08:00 +2026/05/14 19:27:23.660, NVIDIA GeForce RTX 5090, 69, 32, 9607, 32607, 245.99, 62 +2026-05-14T19:27:28+08:00 +2026/05/14 19:27:28.685, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 65 +2026-05-14T19:27:33+08:00 +2026/05/14 19:27:33.706, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 364.48, 66 +2026-05-14T19:27:38+08:00 +2026/05/14 19:27:38.730, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.19, 66 +2026-05-14T19:27:43+08:00 +2026/05/14 19:27:43.753, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.15, 65 +2026-05-14T19:27:48+08:00 +2026/05/14 19:27:48.777, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.17, 65 +2026-05-14T19:27:53+08:00 +2026/05/14 19:27:53.803, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.19, 64 +2026-05-14T19:27:58+08:00 +2026/05/14 19:27:58.828, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.41, 65 +2026-05-14T19:28:03+08:00 +2026/05/14 19:28:03.851, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.11, 64 +2026-05-14T19:28:08+08:00 +2026/05/14 19:28:08.879, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.04, 65 +2026-05-14T19:28:13+08:00 +2026/05/14 19:28:13.902, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.20, 66 +2026-05-14T19:28:18+08:00 +2026/05/14 19:28:18.930, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.52, 65 +2026-05-14T19:28:23+08:00 +2026/05/14 19:28:23.955, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.55, 64 +2026-05-14T19:28:28+08:00 +2026/05/14 19:28:28.976, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.69, 65 +2026-05-14T19:28:33+08:00 +2026/05/14 19:28:34.000, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.77, 65 +2026-05-14T19:28:39+08:00 +2026/05/14 19:28:39.026, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.17, 65 +2026-05-14T19:28:44+08:00 +2026/05/14 19:28:44.049, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.77, 64 +2026-05-14T19:28:49+08:00 +2026/05/14 19:28:49.073, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.19, 66 +2026-05-14T19:28:54+08:00 +2026/05/14 19:28:54.098, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.02, 66 +2026-05-14T19:28:59+08:00 +2026/05/14 19:28:59.120, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.23, 65 +2026-05-14T19:29:04+08:00 +2026/05/14 19:29:04.145, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 364.89, 64 +2026-05-14T19:29:09+08:00 +2026/05/14 19:29:09.170, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.78, 65 +2026-05-14T19:29:14+08:00 +2026/05/14 19:29:14.193, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.38, 66 +2026-05-14T19:29:19+08:00 +2026/05/14 19:29:19.220, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.91, 64 +2026-05-14T19:29:24+08:00 +2026/05/14 19:29:24.243, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.78, 65 +2026-05-14T19:29:29+08:00 +2026/05/14 19:29:29.267, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.42, 66 +2026-05-14T19:29:34+08:00 +2026/05/14 19:29:34.292, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.72, 65 +2026-05-14T19:29:39+08:00 +2026/05/14 19:29:39.317, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.72, 64 +2026-05-14T19:29:44+08:00 +2026/05/14 19:29:44.341, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.17, 65 +2026-05-14T19:29:49+08:00 +2026/05/14 19:29:49.366, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.48, 65 +2026-05-14T19:29:54+08:00 +2026/05/14 19:29:54.388, NVIDIA GeForce RTX 5090, 1, 0, 9607, 32607, 260.74, 63 +2026-05-14T19:29:59+08:00 +2026/05/14 19:29:59.413, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.19, 65 +2026-05-14T19:30:04+08:00 +2026/05/14 19:30:04.464, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.20, 65 +2026-05-14T19:30:09+08:00 +2026/05/14 19:30:09.489, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 364.94, 65 +2026-05-14T19:30:14+08:00 +2026/05/14 19:30:14.531, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.76, 65 +2026-05-14T19:30:19+08:00 +2026/05/14 19:30:19.555, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.41, 66 +2026-05-14T19:30:24+08:00 +2026/05/14 19:30:24.595, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.55, 64 +2026-05-14T19:30:29+08:00 +2026/05/14 19:30:29.620, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.97, 65 +2026-05-14T19:30:34+08:00 +2026/05/14 19:30:34.648, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 364.17, 65 +2026-05-14T19:30:39+08:00 +2026/05/14 19:30:39.674, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.92, 64 +2026-05-14T19:30:44+08:00 +2026/05/14 19:30:44.698, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.45, 65 +2026-05-14T19:30:49+08:00 +2026/05/14 19:30:49.723, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.90, 65 +2026-05-14T19:30:54+08:00 +2026/05/14 19:30:54.747, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.88, 65 +2026-05-14T19:30:59+08:00 +2026/05/14 19:30:59.772, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 65 +2026-05-14T19:31:04+08:00 +2026/05/14 19:31:04.795, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.80, 65 +2026-05-14T19:31:09+08:00 +2026/05/14 19:31:09.818, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.46, 64 +2026-05-14T19:31:14+08:00 +2026/05/14 19:31:14.841, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.99, 65 +2026-05-14T19:31:19+08:00 +2026/05/14 19:31:19.867, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.33, 66 +2026-05-14T19:31:24+08:00 +2026/05/14 19:31:24.911, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.05, 65 +2026-05-14T19:31:29+08:00 +2026/05/14 19:31:29.954, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.54, 65 +2026-05-14T19:31:34+08:00 +2026/05/14 19:31:34.976, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 365.16, 66 +2026-05-14T19:31:40+08:00 +2026/05/14 19:31:40.019, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.77, 65 +2026-05-14T19:31:45+08:00 +2026/05/14 19:31:45.059, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.64, 65 +2026-05-14T19:31:50+08:00 +2026/05/14 19:31:50.125, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.84, 65 +2026-05-14T19:31:55+08:00 +2026/05/14 19:31:55.149, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.37, 64 +2026-05-14T19:32:00+08:00 +2026/05/14 19:32:00.199, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.64, 64 +2026-05-14T19:32:05+08:00 +2026/05/14 19:32:05.223, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.76, 65 +2026-05-14T19:32:10+08:00 +2026/05/14 19:32:10.265, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.38, 65 +2026-05-14T19:32:15+08:00 +2026/05/14 19:32:15.292, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.47, 66 +2026-05-14T19:32:20+08:00 +2026/05/14 19:32:20.334, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.04, 66 +2026-05-14T19:32:25+08:00 +2026/05/14 19:32:25.360, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.97, 65 +2026-05-14T19:32:30+08:00 +2026/05/14 19:32:30.382, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.29, 65 +2026-05-14T19:32:35+08:00 +2026/05/14 19:32:35.407, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.95, 65 +2026-05-14T19:32:40+08:00 +2026/05/14 19:32:40.431, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.66, 66 +2026-05-14T19:32:45+08:00 +2026/05/14 19:32:45.454, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.91, 65 +2026-05-14T19:32:50+08:00 +2026/05/14 19:32:50.479, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.91, 65 +2026-05-14T19:32:55+08:00 +2026/05/14 19:32:55.502, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.88, 63 +2026-05-14T19:33:00+08:00 +2026/05/14 19:33:00.526, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.16, 65 +2026-05-14T19:33:05+08:00 +2026/05/14 19:33:05.550, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.82, 65 +2026-05-14T19:33:10+08:00 +2026/05/14 19:33:10.574, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.96, 66 +2026-05-14T19:33:15+08:00 +2026/05/14 19:33:15.597, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.22, 65 +2026-05-14T19:33:20+08:00 +2026/05/14 19:33:20.621, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 65 +2026-05-14T19:33:25+08:00 +2026/05/14 19:33:25.645, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.07, 65 +2026-05-14T19:33:30+08:00 +2026/05/14 19:33:30.669, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.16, 66 +2026-05-14T19:33:35+08:00 +2026/05/14 19:33:35.693, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.78, 67 +2026-05-14T19:33:40+08:00 +2026/05/14 19:33:40.717, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 221.27, 64 +2026-05-14T19:33:45+08:00 +2026/05/14 19:33:45.740, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.58, 66 +2026-05-14T19:33:50+08:00 +2026/05/14 19:33:50.764, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.23, 65 +2026-05-14T19:33:55+08:00 +2026/05/14 19:33:55.787, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.10, 66 +2026-05-14T19:34:00+08:00 +2026/05/14 19:34:00.846, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.04, 66 +2026-05-14T19:34:05+08:00 +2026/05/14 19:34:05.890, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.43, 66 +2026-05-14T19:34:10+08:00 +2026/05/14 19:34:10.943, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.32, 65 +2026-05-14T19:34:15+08:00 +2026/05/14 19:34:15.985, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 262.80, 64 +2026-05-14T19:34:20+08:00 +2026/05/14 19:34:21.011, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.61, 65 +2026-05-14T19:34:26+08:00 +2026/05/14 19:34:26.036, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.55, 65 +2026-05-14T19:34:31+08:00 +2026/05/14 19:34:31.076, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.14, 64 +2026-05-14T19:34:36+08:00 +2026/05/14 19:34:36.131, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.55, 66 +2026-05-14T19:34:41+08:00 +2026/05/14 19:34:41.155, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.88, 65 +2026-05-14T19:34:46+08:00 +2026/05/14 19:34:46.197, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.28, 66 +2026-05-14T19:34:51+08:00 +2026/05/14 19:34:51.222, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.19, 66 +2026-05-14T19:34:56+08:00 +2026/05/14 19:34:56.247, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.02, 65 +2026-05-14T19:35:01+08:00 +2026/05/14 19:35:01.289, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.01, 64 +2026-05-14T19:35:06+08:00 +2026/05/14 19:35:06.328, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.91, 64 +2026-05-14T19:35:11+08:00 +2026/05/14 19:35:11.351, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.78, 64 +2026-05-14T19:35:16+08:00 +2026/05/14 19:35:16.393, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.43, 64 +2026-05-14T19:35:21+08:00 +2026/05/14 19:35:21.438, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.11, 65 +2026-05-14T19:35:26+08:00 +2026/05/14 19:35:26.464, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.90, 65 +2026-05-14T19:35:31+08:00 +2026/05/14 19:35:31.487, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.24, 65 +2026-05-14T19:35:36+08:00 +2026/05/14 19:35:36.529, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 306.53, 59 +2026-05-14T19:35:41+08:00 +2026/05/14 19:35:41.553, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.38, 65 +2026-05-14T19:35:46+08:00 +2026/05/14 19:35:46.596, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 363.61, 65 +2026-05-14T19:35:51+08:00 +2026/05/14 19:35:51.637, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.93, 65 +2026-05-14T19:35:56+08:00 +2026/05/14 19:35:56.661, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.09, 64 +2026-05-14T19:36:01+08:00 +2026/05/14 19:36:01.713, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.24, 64 +2026-05-14T19:36:06+08:00 +2026/05/14 19:36:06.740, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.79, 65 +2026-05-14T19:36:11+08:00 +2026/05/14 19:36:11.763, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.43, 65 +2026-05-14T19:36:16+08:00 +2026/05/14 19:36:16.786, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.24, 66 +2026-05-14T19:36:21+08:00 +2026/05/14 19:36:21.811, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.65, 66 +2026-05-14T19:36:26+08:00 +2026/05/14 19:36:26.834, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.43, 66 +2026-05-14T19:36:31+08:00 +2026/05/14 19:36:31.858, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.63, 63 +2026-05-14T19:36:36+08:00 +2026/05/14 19:36:36.884, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.12, 65 +2026-05-14T19:36:41+08:00 +2026/05/14 19:36:41.909, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.10, 66 +2026-05-14T19:36:46+08:00 +2026/05/14 19:36:46.951, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.43, 65 +2026-05-14T19:36:51+08:00 +2026/05/14 19:36:51.976, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 251.35, 65 +2026-05-14T19:36:56+08:00 +2026/05/14 19:36:56.999, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.53, 65 +2026-05-14T19:37:02+08:00 +2026/05/14 19:37:02.075, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.62, 65 +2026-05-14T19:37:07+08:00 +2026/05/14 19:37:07.099, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 344.46, 65 +2026-05-14T19:37:12+08:00 +2026/05/14 19:37:12.138, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.07, 65 +2026-05-14T19:37:17+08:00 +2026/05/14 19:37:17.178, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.53, 65 +2026-05-14T19:37:22+08:00 +2026/05/14 19:37:22.201, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.62, 64 +2026-05-14T19:37:27+08:00 +2026/05/14 19:37:27.240, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.29, 65 +2026-05-14T19:37:32+08:00 +2026/05/14 19:37:32.285, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.03, 64 +2026-05-14T19:37:37+08:00 +2026/05/14 19:37:37.339, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.79, 65 +2026-05-14T19:37:42+08:00 +2026/05/14 19:37:42.362, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.99, 65 +2026-05-14T19:37:47+08:00 +2026/05/14 19:37:47.411, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.05, 65 +2026-05-14T19:37:52+08:00 +2026/05/14 19:37:52.470, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.30, 66 +2026-05-14T19:37:57+08:00 +2026/05/14 19:37:57.493, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.79, 66 +2026-05-14T19:38:02+08:00 +2026/05/14 19:38:02.517, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.94, 65 +2026-05-14T19:38:07+08:00 +2026/05/14 19:38:07.565, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.49, 66 +2026-05-14T19:38:12+08:00 +2026/05/14 19:38:12.619, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.34, 64 +2026-05-14T19:38:17+08:00 +2026/05/14 19:38:17.641, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.10, 64 +2026-05-14T19:38:22+08:00 +2026/05/14 19:38:22.665, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.26, 65 +2026-05-14T19:38:27+08:00 +2026/05/14 19:38:27.707, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.37, 65 +2026-05-14T19:38:32+08:00 +2026/05/14 19:38:32.782, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.55, 65 +2026-05-14T19:38:37+08:00 +2026/05/14 19:38:37.804, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.24, 65 +2026-05-14T19:38:42+08:00 +2026/05/14 19:38:42.827, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.64, 64 +2026-05-14T19:38:47+08:00 +2026/05/14 19:38:47.850, NVIDIA GeForce RTX 5090, 1, 0, 9607, 32607, 307.76, 60 +2026-05-14T19:38:52+08:00 +2026/05/14 19:38:52.871, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 65 +2026-05-14T19:38:57+08:00 +2026/05/14 19:38:57.894, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.46, 65 +2026-05-14T19:39:02+08:00 +2026/05/14 19:39:02.917, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.38, 65 +2026-05-14T19:39:07+08:00 +2026/05/14 19:39:07.940, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.77, 66 +2026-05-14T19:39:12+08:00 +2026/05/14 19:39:12.963, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.39, 65 +2026-05-14T19:39:17+08:00 +2026/05/14 19:39:17.985, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.11, 65 +2026-05-14T19:39:22+08:00 +2026/05/14 19:39:23.010, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.57, 66 +2026-05-14T19:39:28+08:00 +2026/05/14 19:39:28.032, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.97, 64 +2026-05-14T19:39:33+08:00 +2026/05/14 19:39:33.059, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.42, 64 +2026-05-14T19:39:38+08:00 +2026/05/14 19:39:38.082, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.59, 64 +2026-05-14T19:39:43+08:00 +2026/05/14 19:39:43.106, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.23, 64 +2026-05-14T19:39:48+08:00 +2026/05/14 19:39:48.129, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.58, 65 +2026-05-14T19:39:53+08:00 +2026/05/14 19:39:53.153, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 364.42, 65 +2026-05-14T19:39:58+08:00 +2026/05/14 19:39:58.175, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.37, 65 +2026-05-14T19:40:03+08:00 +2026/05/14 19:40:03.200, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.82, 65 +2026-05-14T19:40:08+08:00 +2026/05/14 19:40:08.223, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.71, 65 +2026-05-14T19:40:13+08:00 +2026/05/14 19:40:13.248, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.85, 66 +2026-05-14T19:40:18+08:00 +2026/05/14 19:40:18.270, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.22, 65 +2026-05-14T19:40:23+08:00 +2026/05/14 19:40:23.297, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.71, 65 +2026-05-14T19:40:28+08:00 +2026/05/14 19:40:28.321, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.33, 65 +2026-05-14T19:40:33+08:00 +2026/05/14 19:40:33.345, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.11, 64 +2026-05-14T19:40:38+08:00 +2026/05/14 19:40:38.369, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.77, 65 +2026-05-14T19:40:43+08:00 +2026/05/14 19:40:43.393, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 274.96, 59 +2026-05-14T19:40:48+08:00 +2026/05/14 19:40:48.415, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.24, 65 +2026-05-14T19:40:53+08:00 +2026/05/14 19:40:53.439, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.87, 65 +2026-05-14T19:40:58+08:00 +2026/05/14 19:40:58.464, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.88, 65 +2026-05-14T19:41:03+08:00 +2026/05/14 19:41:03.486, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.96, 65 +2026-05-14T19:41:08+08:00 +2026/05/14 19:41:08.515, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 66 +2026-05-14T19:41:13+08:00 +2026/05/14 19:41:13.537, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.43, 65 +2026-05-14T19:41:18+08:00 +2026/05/14 19:41:18.561, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.88, 65 +2026-05-14T19:41:23+08:00 +2026/05/14 19:41:23.584, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.55, 64 +2026-05-14T19:41:28+08:00 +2026/05/14 19:41:28.607, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.35, 64 +2026-05-14T19:41:33+08:00 +2026/05/14 19:41:33.629, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.48, 64 +2026-05-14T19:41:38+08:00 +2026/05/14 19:41:38.654, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.33, 64 +2026-05-14T19:41:43+08:00 +2026/05/14 19:41:43.677, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.13, 64 +2026-05-14T19:41:48+08:00 +2026/05/14 19:41:48.701, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.66, 64 +2026-05-14T19:41:53+08:00 +2026/05/14 19:41:53.724, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.02, 64 +2026-05-14T19:41:58+08:00 +2026/05/14 19:41:58.747, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.61, 66 +2026-05-14T19:42:03+08:00 +2026/05/14 19:42:03.773, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 314.12, 60 +2026-05-14T19:42:08+08:00 +2026/05/14 19:42:08.798, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.78, 65 +2026-05-14T19:42:13+08:00 +2026/05/14 19:42:13.822, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.29, 66 +2026-05-14T19:42:18+08:00 +2026/05/14 19:42:18.846, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.54, 64 +2026-05-14T19:42:23+08:00 +2026/05/14 19:42:23.871, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.08, 64 +2026-05-14T19:42:28+08:00 +2026/05/14 19:42:28.896, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.12, 64 +2026-05-14T19:42:33+08:00 +2026/05/14 19:42:33.918, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.03, 65 +2026-05-14T19:42:38+08:00 +2026/05/14 19:42:38.943, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.73, 65 +2026-05-14T19:42:43+08:00 +2026/05/14 19:42:43.966, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.10, 65 +2026-05-14T19:42:48+08:00 +2026/05/14 19:42:48.990, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.00, 64 +2026-05-14T19:42:54+08:00 +2026/05/14 19:42:54.015, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.00, 65 +2026-05-14T19:42:59+08:00 +2026/05/14 19:42:59.037, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.74, 65 +2026-05-14T19:43:04+08:00 +2026/05/14 19:43:04.060, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 66 +2026-05-14T19:43:09+08:00 +2026/05/14 19:43:09.089, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.16, 63 +2026-05-14T19:43:14+08:00 +2026/05/14 19:43:14.114, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.51, 65 +2026-05-14T19:43:19+08:00 +2026/05/14 19:43:19.140, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.93, 66 +2026-05-14T19:43:24+08:00 +2026/05/14 19:43:24.163, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 283.74, 64 +2026-05-14T19:43:29+08:00 +2026/05/14 19:43:29.186, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.57, 64 +2026-05-14T19:43:34+08:00 +2026/05/14 19:43:34.210, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.51, 64 +2026-05-14T19:43:39+08:00 +2026/05/14 19:43:39.253, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.38, 64 +2026-05-14T19:43:44+08:00 +2026/05/14 19:43:44.330, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.91, 65 +2026-05-14T19:43:49+08:00 +2026/05/14 19:43:49.354, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.73, 65 +2026-05-14T19:43:54+08:00 +2026/05/14 19:43:54.395, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.37, 65 +2026-05-14T19:43:59+08:00 +2026/05/14 19:43:59.469, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.99, 65 +2026-05-14T19:44:04+08:00 +2026/05/14 19:44:04.527, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.23, 65 +2026-05-14T19:44:09+08:00 +2026/05/14 19:44:09.564, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.88, 65 +2026-05-14T19:44:14+08:00 +2026/05/14 19:44:14.586, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.91, 65 +2026-05-14T19:44:19+08:00 +2026/05/14 19:44:19.647, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.27, 65 +2026-05-14T19:44:24+08:00 +2026/05/14 19:44:24.670, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.73, 66 +2026-05-14T19:44:29+08:00 +2026/05/14 19:44:29.732, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.91, 66 +2026-05-14T19:44:34+08:00 +2026/05/14 19:44:34.757, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.95, 65 +2026-05-14T19:44:39+08:00 +2026/05/14 19:44:39.782, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 258.52, 64 +2026-05-14T19:44:44+08:00 +2026/05/14 19:44:44.831, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.33, 65 +2026-05-14T19:44:49+08:00 +2026/05/14 19:44:49.855, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.56, 65 +2026-05-14T19:44:54+08:00 +2026/05/14 19:44:54.880, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.30, 65 +2026-05-14T19:44:59+08:00 +2026/05/14 19:44:59.903, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.55, 65 +2026-05-14T19:45:04+08:00 +2026/05/14 19:45:04.944, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.27, 65 +2026-05-14T19:45:09+08:00 +2026/05/14 19:45:09.968, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.69, 65 +2026-05-14T19:45:14+08:00 +2026/05/14 19:45:15.009, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 273.01, 62 +2026-05-14T19:45:20+08:00 +2026/05/14 19:45:20.030, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.68, 65 +2026-05-14T19:45:25+08:00 +2026/05/14 19:45:25.072, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.76, 66 +2026-05-14T19:45:30+08:00 +2026/05/14 19:45:30.094, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.26, 65 +2026-05-14T19:45:35+08:00 +2026/05/14 19:45:35.118, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.73, 65 +2026-05-14T19:45:40+08:00 +2026/05/14 19:45:40.143, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.89, 65 +2026-05-14T19:45:45+08:00 +2026/05/14 19:45:45.218, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.29, 65 +2026-05-14T19:45:50+08:00 +2026/05/14 19:45:50.242, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.70, 66 +2026-05-14T19:45:55+08:00 +2026/05/14 19:45:55.266, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.93, 65 +2026-05-14T19:46:00+08:00 +2026/05/14 19:46:00.291, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.06, 65 +2026-05-14T19:46:05+08:00 +2026/05/14 19:46:05.348, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.54, 65 +2026-05-14T19:46:10+08:00 +2026/05/14 19:46:10.391, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 65 +2026-05-14T19:46:15+08:00 +2026/05/14 19:46:15.413, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.89, 65 +2026-05-14T19:46:20+08:00 +2026/05/14 19:46:20.486, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.80, 65 +2026-05-14T19:46:25+08:00 +2026/05/14 19:46:25.509, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.39, 65 +2026-05-14T19:46:30+08:00 +2026/05/14 19:46:30.582, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.58, 65 +2026-05-14T19:46:35+08:00 +2026/05/14 19:46:35.633, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.25, 65 +2026-05-14T19:46:40+08:00 +2026/05/14 19:46:40.656, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.86, 65 +2026-05-14T19:46:45+08:00 +2026/05/14 19:46:45.678, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.49, 66 +2026-05-14T19:46:50+08:00 +2026/05/14 19:46:50.721, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.25, 66 +2026-05-14T19:46:55+08:00 +2026/05/14 19:46:55.780, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.55, 65 +2026-05-14T19:47:00+08:00 +2026/05/14 19:47:00.803, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.88, 66 +2026-05-14T19:47:05+08:00 +2026/05/14 19:47:05.877, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.56, 65 +2026-05-14T19:47:10+08:00 +2026/05/14 19:47:10.901, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 323.72, 65 +2026-05-14T19:47:15+08:00 +2026/05/14 19:47:15.924, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 65 +2026-05-14T19:47:20+08:00 +2026/05/14 19:47:20.965, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.78, 65 +2026-05-14T19:47:25+08:00 +2026/05/14 19:47:25.988, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.12, 65 +2026-05-14T19:47:30+08:00 +2026/05/14 19:47:31.011, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.86, 65 +2026-05-14T19:47:36+08:00 +2026/05/14 19:47:36.036, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.39, 65 +2026-05-14T19:47:41+08:00 +2026/05/14 19:47:41.062, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.08, 65 +2026-05-14T19:47:46+08:00 +2026/05/14 19:47:46.087, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.33, 65 +2026-05-14T19:47:51+08:00 +2026/05/14 19:47:51.110, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 65 +2026-05-14T19:47:56+08:00 +2026/05/14 19:47:56.132, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.76, 65 +2026-05-14T19:48:01+08:00 +2026/05/14 19:48:01.157, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.84, 63 +2026-05-14T19:48:06+08:00 +2026/05/14 19:48:06.179, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.65, 65 +2026-05-14T19:48:11+08:00 +2026/05/14 19:48:11.208, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.26, 65 +2026-05-14T19:48:16+08:00 +2026/05/14 19:48:16.237, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.43, 65 +2026-05-14T19:48:21+08:00 +2026/05/14 19:48:21.262, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 364.78, 66 +2026-05-14T19:48:26+08:00 +2026/05/14 19:48:26.285, NVIDIA GeForce RTX 5090, 77, 35, 9607, 32607, 261.82, 63 +2026-05-14T19:48:31+08:00 +2026/05/14 19:48:31.308, NVIDIA GeForce RTX 5090, 88, 36, 9607, 32607, 360.91, 64 +2026-05-14T19:48:36+08:00 +2026/05/14 19:48:36.331, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.12, 65 +2026-05-14T19:48:41+08:00 +2026/05/14 19:48:41.354, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.84, 65 +2026-05-14T19:48:46+08:00 +2026/05/14 19:48:46.380, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.08, 64 +2026-05-14T19:48:51+08:00 +2026/05/14 19:48:51.404, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.44, 66 +2026-05-14T19:48:56+08:00 +2026/05/14 19:48:56.429, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.60, 65 +2026-05-14T19:49:01+08:00 +2026/05/14 19:49:01.453, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.11, 65 +2026-05-14T19:49:06+08:00 +2026/05/14 19:49:06.476, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.23, 66 +2026-05-14T19:49:11+08:00 +2026/05/14 19:49:11.503, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 363.24, 66 +2026-05-14T19:49:16+08:00 +2026/05/14 19:49:16.526, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.76, 65 +2026-05-14T19:49:21+08:00 +2026/05/14 19:49:21.551, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 221.81, 64 +2026-05-14T19:49:26+08:00 +2026/05/14 19:49:26.576, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.85, 66 +2026-05-14T19:49:31+08:00 +2026/05/14 19:49:31.599, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.00, 65 +2026-05-14T19:49:36+08:00 +2026/05/14 19:49:36.623, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 65 +2026-05-14T19:49:41+08:00 +2026/05/14 19:49:41.645, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.00, 62 +2026-05-14T19:49:46+08:00 +2026/05/14 19:49:46.669, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.82, 65 +2026-05-14T19:49:51+08:00 +2026/05/14 19:49:51.697, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 364.43, 66 +2026-05-14T19:49:56+08:00 +2026/05/14 19:49:56.720, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.19, 66 +2026-05-14T19:50:01+08:00 +2026/05/14 19:50:01.744, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.24, 66 +2026-05-14T19:50:06+08:00 +2026/05/14 19:50:06.768, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.99, 65 +2026-05-14T19:50:11+08:00 +2026/05/14 19:50:11.793, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.91, 65 +2026-05-14T19:50:16+08:00 +2026/05/14 19:50:16.814, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.50, 66 +2026-05-14T19:50:21+08:00 +2026/05/14 19:50:21.838, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.18, 65 +2026-05-14T19:50:26+08:00 +2026/05/14 19:50:26.862, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.59, 65 +2026-05-14T19:50:31+08:00 +2026/05/14 19:50:31.885, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.66, 65 +2026-05-14T19:50:36+08:00 +2026/05/14 19:50:36.910, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.07, 65 +2026-05-14T19:50:41+08:00 +2026/05/14 19:50:41.933, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.59, 65 +2026-05-14T19:50:46+08:00 +2026/05/14 19:50:46.958, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.09, 65 +2026-05-14T19:50:51+08:00 +2026/05/14 19:50:51.982, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.40, 65 +2026-05-14T19:50:56+08:00 +2026/05/14 19:50:57.007, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 255.40, 64 +2026-05-14T19:51:02+08:00 +2026/05/14 19:51:02.032, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 293.16, 65 +2026-05-14T19:51:07+08:00 +2026/05/14 19:51:07.059, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.46, 65 +2026-05-14T19:51:12+08:00 +2026/05/14 19:51:12.080, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.61, 65 +2026-05-14T19:51:17+08:00 +2026/05/14 19:51:17.103, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.45, 65 +2026-05-14T19:51:22+08:00 +2026/05/14 19:51:22.125, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.09, 65 +2026-05-14T19:51:27+08:00 +2026/05/14 19:51:27.148, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.60, 65 +2026-05-14T19:51:32+08:00 +2026/05/14 19:51:32.169, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.31, 65 +2026-05-14T19:51:37+08:00 +2026/05/14 19:51:37.192, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.58, 65 +2026-05-14T19:51:42+08:00 +2026/05/14 19:51:42.215, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.08, 66 +2026-05-14T19:51:47+08:00 +2026/05/14 19:51:47.238, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.23, 66 +2026-05-14T19:51:52+08:00 +2026/05/14 19:51:52.262, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.09, 66 +2026-05-14T19:51:57+08:00 +2026/05/14 19:51:57.286, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.48, 65 +2026-05-14T19:52:02+08:00 +2026/05/14 19:52:02.309, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.38, 65 +2026-05-14T19:52:07+08:00 +2026/05/14 19:52:07.331, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.00, 66 +2026-05-14T19:52:12+08:00 +2026/05/14 19:52:12.355, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.75, 64 +2026-05-14T19:52:17+08:00 +2026/05/14 19:52:17.377, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.87, 65 +2026-05-14T19:52:22+08:00 +2026/05/14 19:52:22.406, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.10, 65 +2026-05-14T19:52:27+08:00 +2026/05/14 19:52:27.429, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.28, 65 +2026-05-14T19:52:32+08:00 +2026/05/14 19:52:32.457, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.67, 66 +2026-05-14T19:52:37+08:00 +2026/05/14 19:52:37.482, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 366.08, 66 +2026-05-14T19:52:42+08:00 +2026/05/14 19:52:42.537, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 365.37, 65 +2026-05-14T19:52:47+08:00 +2026/05/14 19:52:47.560, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.46, 64 +2026-05-14T19:52:52+08:00 +2026/05/14 19:52:52.584, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.52, 65 +2026-05-14T19:52:57+08:00 +2026/05/14 19:52:57.627, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 65 +2026-05-14T19:53:02+08:00 +2026/05/14 19:53:02.669, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.71, 65 +2026-05-14T19:53:07+08:00 +2026/05/14 19:53:07.692, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.61, 65 +2026-05-14T19:53:12+08:00 +2026/05/14 19:53:12.717, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.66, 66 +2026-05-14T19:53:17+08:00 +2026/05/14 19:53:17.742, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.93, 65 +2026-05-14T19:53:22+08:00 +2026/05/14 19:53:22.765, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.18, 64 +2026-05-14T19:53:27+08:00 +2026/05/14 19:53:27.788, NVIDIA GeForce RTX 5090, 75, 33, 9607, 32607, 234.41, 59 +2026-05-14T19:53:32+08:00 +2026/05/14 19:53:32.810, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.81, 64 +2026-05-14T19:53:37+08:00 +2026/05/14 19:53:37.834, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.80, 65 +2026-05-14T19:53:42+08:00 +2026/05/14 19:53:42.864, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.05, 65 +2026-05-14T19:53:47+08:00 +2026/05/14 19:53:47.890, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.33, 65 +2026-05-14T19:53:52+08:00 +2026/05/14 19:53:52.916, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.39, 65 +2026-05-14T19:53:57+08:00 +2026/05/14 19:53:57.943, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 65 +2026-05-14T19:54:02+08:00 +2026/05/14 19:54:02.966, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 64 +2026-05-14T19:54:07+08:00 +2026/05/14 19:54:07.991, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.17, 65 +2026-05-14T19:54:13+08:00 +2026/05/14 19:54:13.014, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.53, 65 +2026-05-14T19:54:18+08:00 +2026/05/14 19:54:18.036, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 64 +2026-05-14T19:54:23+08:00 +2026/05/14 19:54:23.062, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.88, 65 +2026-05-14T19:54:28+08:00 +2026/05/14 19:54:28.086, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.39, 65 +2026-05-14T19:54:33+08:00 +2026/05/14 19:54:33.109, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.64, 65 +2026-05-14T19:54:38+08:00 +2026/05/14 19:54:38.132, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.05, 64 +2026-05-14T19:54:43+08:00 +2026/05/14 19:54:43.155, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.98, 65 +2026-05-14T19:54:48+08:00 +2026/05/14 19:54:48.178, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.20, 65 +2026-05-14T19:54:53+08:00 +2026/05/14 19:54:53.201, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 268.53, 65 +2026-05-14T19:54:58+08:00 +2026/05/14 19:54:58.224, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.23, 65 +2026-05-14T19:55:03+08:00 +2026/05/14 19:55:03.251, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.96, 65 +2026-05-14T19:55:08+08:00 +2026/05/14 19:55:08.274, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.78, 65 +2026-05-14T19:55:13+08:00 +2026/05/14 19:55:13.298, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.27, 65 +2026-05-14T19:55:18+08:00 +2026/05/14 19:55:18.320, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.72, 65 +2026-05-14T19:55:23+08:00 +2026/05/14 19:55:23.344, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.65, 65 +2026-05-14T19:55:28+08:00 +2026/05/14 19:55:28.368, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.16, 66 +2026-05-14T19:55:33+08:00 +2026/05/14 19:55:33.390, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 284.30, 65 +2026-05-14T19:55:38+08:00 +2026/05/14 19:55:38.413, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.72, 66 +2026-05-14T19:55:43+08:00 +2026/05/14 19:55:43.436, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.19, 65 +2026-05-14T19:55:48+08:00 +2026/05/14 19:55:48.460, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.96, 66 +2026-05-14T19:55:53+08:00 +2026/05/14 19:55:53.483, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.93, 66 +2026-05-14T19:55:58+08:00 +2026/05/14 19:55:58.506, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.25, 65 +2026-05-14T19:56:03+08:00 +2026/05/14 19:56:03.529, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.12, 65 +2026-05-14T19:56:08+08:00 +2026/05/14 19:56:08.554, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.24, 65 +2026-05-14T19:56:13+08:00 +2026/05/14 19:56:13.595, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.92, 65 +2026-05-14T19:56:18+08:00 +2026/05/14 19:56:18.619, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.03, 65 +2026-05-14T19:56:23+08:00 +2026/05/14 19:56:23.659, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.30, 65 +2026-05-14T19:56:28+08:00 +2026/05/14 19:56:28.684, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.38, 65 +2026-05-14T19:56:33+08:00 +2026/05/14 19:56:33.707, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.70, 65 +2026-05-14T19:56:38+08:00 +2026/05/14 19:56:38.733, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.56, 65 +2026-05-14T19:56:43+08:00 +2026/05/14 19:56:43.756, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.25, 66 +2026-05-14T19:56:48+08:00 +2026/05/14 19:56:48.781, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 364.57, 66 +2026-05-14T19:56:53+08:00 +2026/05/14 19:56:53.804, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.89, 65 +2026-05-14T19:56:58+08:00 +2026/05/14 19:56:58.828, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.45, 66 +2026-05-14T19:57:03+08:00 +2026/05/14 19:57:03.851, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.31, 65 +2026-05-14T19:57:08+08:00 +2026/05/14 19:57:08.874, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.49, 65 +2026-05-14T19:57:13+08:00 +2026/05/14 19:57:13.897, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.61, 66 +2026-05-14T19:57:18+08:00 +2026/05/14 19:57:18.923, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.69, 65 +2026-05-14T19:57:23+08:00 +2026/05/14 19:57:23.947, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.99, 66 +2026-05-14T19:57:28+08:00 +2026/05/14 19:57:28.971, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 314.74, 64 +2026-05-14T19:57:33+08:00 +2026/05/14 19:57:33.996, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.61, 65 +2026-05-14T19:57:39+08:00 +2026/05/14 19:57:39.019, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.58, 65 +2026-05-14T19:57:44+08:00 +2026/05/14 19:57:44.042, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.82, 65 +2026-05-14T19:57:49+08:00 +2026/05/14 19:57:49.065, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.84, 66 +2026-05-14T19:57:54+08:00 +2026/05/14 19:57:54.089, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.51, 66 +2026-05-14T19:57:59+08:00 +2026/05/14 19:57:59.112, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.42, 66 +2026-05-14T19:58:04+08:00 +2026/05/14 19:58:04.136, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.59, 66 +2026-05-14T19:58:09+08:00 +2026/05/14 19:58:09.158, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.95, 64 +2026-05-14T19:58:14+08:00 +2026/05/14 19:58:14.183, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.07, 64 +2026-05-14T19:58:19+08:00 +2026/05/14 19:58:19.207, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.76, 64 +2026-05-14T19:58:24+08:00 +2026/05/14 19:58:24.231, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.86, 64 +2026-05-14T19:58:29+08:00 +2026/05/14 19:58:29.255, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.74, 64 +2026-05-14T19:58:34+08:00 +2026/05/14 19:58:34.283, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.72, 64 +2026-05-14T19:58:39+08:00 +2026/05/14 19:58:39.307, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.78, 64 +2026-05-14T19:58:44+08:00 +2026/05/14 19:58:44.329, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.23, 63 +2026-05-14T19:58:49+08:00 +2026/05/14 19:58:49.355, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.54, 65 +2026-05-14T19:58:54+08:00 +2026/05/14 19:58:54.377, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.73, 65 +2026-05-14T19:58:59+08:00 +2026/05/14 19:58:59.410, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.42, 65 +2026-05-14T19:59:04+08:00 +2026/05/14 19:59:04.432, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.83, 65 +2026-05-14T19:59:09+08:00 +2026/05/14 19:59:09.504, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.85, 65 +2026-05-14T19:59:14+08:00 +2026/05/14 19:59:14.528, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.49, 65 +2026-05-14T19:59:19+08:00 +2026/05/14 19:59:19.551, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.42, 65 +2026-05-14T19:59:24+08:00 +2026/05/14 19:59:24.575, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.40, 65 +2026-05-14T19:59:29+08:00 +2026/05/14 19:59:29.600, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.38, 65 +2026-05-14T19:59:34+08:00 +2026/05/14 19:59:34.624, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.07, 66 +2026-05-14T19:59:39+08:00 +2026/05/14 19:59:39.648, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.00, 65 +2026-05-14T19:59:44+08:00 +2026/05/14 19:59:44.672, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.84, 66 +2026-05-14T19:59:49+08:00 +2026/05/14 19:59:49.695, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.71, 65 +2026-05-14T19:59:54+08:00 +2026/05/14 19:59:54.723, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.27, 65 +2026-05-14T19:59:59+08:00 +2026/05/14 19:59:59.746, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.32, 65 +2026-05-14T20:00:04+08:00 +2026/05/14 20:00:04.771, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.95, 66 +2026-05-14T20:00:09+08:00 +2026/05/14 20:00:09.797, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 221.03, 65 +2026-05-14T20:00:14+08:00 +2026/05/14 20:00:14.823, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.66, 65 +2026-05-14T20:00:19+08:00 +2026/05/14 20:00:19.846, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.77, 65 +2026-05-14T20:00:24+08:00 +2026/05/14 20:00:24.871, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 358.50, 65 +2026-05-14T20:00:29+08:00 +2026/05/14 20:00:29.895, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.71, 64 +2026-05-14T20:00:34+08:00 +2026/05/14 20:00:34.920, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.85, 65 +2026-05-14T20:00:39+08:00 +2026/05/14 20:00:39.943, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 321.06, 65 +2026-05-14T20:00:44+08:00 +2026/05/14 20:00:44.968, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.32, 66 +2026-05-14T20:00:49+08:00 +2026/05/14 20:00:49.990, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.16, 66 +2026-05-14T20:00:55+08:00 +2026/05/14 20:00:55.050, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.25, 65 +2026-05-14T20:01:00+08:00 +2026/05/14 20:01:00.074, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.86, 64 +2026-05-14T20:01:05+08:00 +2026/05/14 20:01:05.126, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.22, 64 +2026-05-14T20:01:10+08:00 +2026/05/14 20:01:10.151, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.64, 65 +2026-05-14T20:01:15+08:00 +2026/05/14 20:01:15.202, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.16, 65 +2026-05-14T20:01:20+08:00 +2026/05/14 20:01:20.254, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.73, 65 +2026-05-14T20:01:25+08:00 +2026/05/14 20:01:25.278, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 64 +2026-05-14T20:01:30+08:00 +2026/05/14 20:01:30.302, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.70, 65 +2026-05-14T20:01:35+08:00 +2026/05/14 20:01:35.325, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.36, 65 +2026-05-14T20:01:40+08:00 +2026/05/14 20:01:40.349, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 365.40, 66 +2026-05-14T20:01:45+08:00 +2026/05/14 20:01:45.374, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.66, 65 +2026-05-14T20:01:50+08:00 +2026/05/14 20:01:50.398, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.84, 66 +2026-05-14T20:01:55+08:00 +2026/05/14 20:01:55.423, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.42, 66 +2026-05-14T20:02:00+08:00 +2026/05/14 20:02:00.445, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.63, 66 +2026-05-14T20:02:05+08:00 +2026/05/14 20:02:05.472, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.45, 65 +2026-05-14T20:02:10+08:00 +2026/05/14 20:02:10.495, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.98, 65 +2026-05-14T20:02:15+08:00 +2026/05/14 20:02:15.520, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.74, 65 +2026-05-14T20:02:20+08:00 +2026/05/14 20:02:20.544, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 65 +2026-05-14T20:02:25+08:00 +2026/05/14 20:02:25.566, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.75, 65 +2026-05-14T20:02:30+08:00 +2026/05/14 20:02:30.589, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.38, 65 +2026-05-14T20:02:35+08:00 +2026/05/14 20:02:35.611, NVIDIA GeForce RTX 5090, 8, 3, 9607, 32607, 247.84, 63 +2026-05-14T20:02:40+08:00 +2026/05/14 20:02:40.636, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.53, 64 +2026-05-14T20:02:45+08:00 +2026/05/14 20:02:45.657, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.74, 64 +2026-05-14T20:02:50+08:00 +2026/05/14 20:02:50.679, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.73, 64 +2026-05-14T20:02:55+08:00 +2026/05/14 20:02:55.705, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.14, 64 +2026-05-14T20:03:00+08:00 +2026/05/14 20:03:00.726, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.72, 64 +2026-05-14T20:03:05+08:00 +2026/05/14 20:03:05.750, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.10, 64 +2026-05-14T20:03:10+08:00 +2026/05/14 20:03:10.771, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.38, 64 +2026-05-14T20:03:15+08:00 +2026/05/14 20:03:15.792, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 266.27, 64 +2026-05-14T20:03:20+08:00 +2026/05/14 20:03:20.819, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.27, 66 +2026-05-14T20:03:25+08:00 +2026/05/14 20:03:25.842, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.47, 66 +2026-05-14T20:03:30+08:00 +2026/05/14 20:03:30.866, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.93, 65 +2026-05-14T20:03:35+08:00 +2026/05/14 20:03:35.890, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.14, 65 +2026-05-14T20:03:40+08:00 +2026/05/14 20:03:40.917, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.38, 66 +2026-05-14T20:03:45+08:00 +2026/05/14 20:03:45.940, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.87, 65 +2026-05-14T20:03:50+08:00 +2026/05/14 20:03:50.964, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.45, 66 +2026-05-14T20:03:55+08:00 +2026/05/14 20:03:55.988, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.72, 64 +2026-05-14T20:04:00+08:00 +2026/05/14 20:04:01.011, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.52, 65 +2026-05-14T20:04:06+08:00 +2026/05/14 20:04:06.034, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.94, 66 +2026-05-14T20:04:11+08:00 +2026/05/14 20:04:11.059, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.61, 66 +2026-05-14T20:04:16+08:00 +2026/05/14 20:04:16.084, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 64 +2026-05-14T20:04:21+08:00 +2026/05/14 20:04:21.110, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.79, 65 +2026-05-14T20:04:26+08:00 +2026/05/14 20:04:26.133, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.53, 66 +2026-05-14T20:04:31+08:00 +2026/05/14 20:04:31.156, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.90, 65 +2026-05-14T20:04:36+08:00 +2026/05/14 20:04:36.177, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 355.32, 65 +2026-05-14T20:04:41+08:00 +2026/05/14 20:04:41.200, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.96, 64 +2026-05-14T20:04:46+08:00 +2026/05/14 20:04:46.224, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.03, 65 +2026-05-14T20:04:51+08:00 +2026/05/14 20:04:51.246, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.95, 65 +2026-05-14T20:04:56+08:00 +2026/05/14 20:04:56.267, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.35, 65 +2026-05-14T20:05:01+08:00 +2026/05/14 20:05:01.290, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.61, 64 +2026-05-14T20:05:06+08:00 +2026/05/14 20:05:06.312, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.76, 65 +2026-05-14T20:05:11+08:00 +2026/05/14 20:05:11.336, NVIDIA GeForce RTX 5090, 81, 36, 9607, 32607, 264.96, 62 +2026-05-14T20:05:16+08:00 +2026/05/14 20:05:16.359, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.64, 65 +2026-05-14T20:05:21+08:00 +2026/05/14 20:05:21.383, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.55, 66 +2026-05-14T20:05:26+08:00 +2026/05/14 20:05:26.407, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.49, 65 +2026-05-14T20:05:31+08:00 +2026/05/14 20:05:31.429, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.36, 65 +2026-05-14T20:05:36+08:00 +2026/05/14 20:05:36.451, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.98, 65 +2026-05-14T20:05:41+08:00 +2026/05/14 20:05:41.475, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.89, 65 +2026-05-14T20:05:46+08:00 +2026/05/14 20:05:46.497, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.97, 65 +2026-05-14T20:05:51+08:00 +2026/05/14 20:05:51.520, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.92, 65 +2026-05-14T20:05:56+08:00 +2026/05/14 20:05:56.542, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.04, 66 +2026-05-14T20:06:01+08:00 +2026/05/14 20:06:01.565, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.67, 65 +2026-05-14T20:06:06+08:00 +2026/05/14 20:06:06.589, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.16, 65 +2026-05-14T20:06:11+08:00 +2026/05/14 20:06:11.610, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.06, 65 +2026-05-14T20:06:16+08:00 +2026/05/14 20:06:16.635, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.25, 64 +2026-05-14T20:06:21+08:00 +2026/05/14 20:06:21.657, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.48, 65 +2026-05-14T20:06:26+08:00 +2026/05/14 20:06:26.680, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 362.59, 65 +2026-05-14T20:06:31+08:00 +2026/05/14 20:06:31.702, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.17, 65 +2026-05-14T20:06:36+08:00 +2026/05/14 20:06:36.728, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 65 +2026-05-14T20:06:41+08:00 +2026/05/14 20:06:41.752, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 360.71, 64 +2026-05-14T20:06:46+08:00 +2026/05/14 20:06:46.775, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.37, 64 +2026-05-14T20:06:51+08:00 +2026/05/14 20:06:51.799, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.34, 64 +2026-05-14T20:06:56+08:00 +2026/05/14 20:06:56.821, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 363.42, 64 +2026-05-14T20:07:01+08:00 +2026/05/14 20:07:01.842, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.26, 64 +2026-05-14T20:07:06+08:00 +2026/05/14 20:07:06.865, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.68, 64 +2026-05-14T20:07:11+08:00 +2026/05/14 20:07:11.891, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.52, 65 +2026-05-14T20:07:16+08:00 +2026/05/14 20:07:16.914, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.07, 65 +2026-05-14T20:07:21+08:00 +2026/05/14 20:07:21.936, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.14, 65 +2026-05-14T20:07:26+08:00 +2026/05/14 20:07:26.958, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.69, 65 +2026-05-14T20:07:31+08:00 +2026/05/14 20:07:31.980, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.25, 65 +2026-05-14T20:07:36+08:00 +2026/05/14 20:07:37.003, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.24, 65 +2026-05-14T20:07:42+08:00 +2026/05/14 20:07:42.031, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 364.65, 66 +2026-05-14T20:07:47+08:00 +2026/05/14 20:07:47.053, NVIDIA GeForce RTX 5090, 5, 2, 9607, 32607, 342.91, 61 +2026-05-14T20:07:52+08:00 +2026/05/14 20:07:52.073, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.83, 65 +2026-05-14T20:07:57+08:00 +2026/05/14 20:07:57.096, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.22, 65 +2026-05-14T20:08:02+08:00 +2026/05/14 20:08:02.120, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.24, 65 +2026-05-14T20:08:07+08:00 +2026/05/14 20:08:07.142, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.14, 65 +2026-05-14T20:08:12+08:00 +2026/05/14 20:08:12.168, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.61, 65 +2026-05-14T20:08:17+08:00 +2026/05/14 20:08:17.192, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.66, 64 +2026-05-14T20:08:22+08:00 +2026/05/14 20:08:22.213, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.97, 64 +2026-05-14T20:08:27+08:00 +2026/05/14 20:08:27.237, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.51, 64 +2026-05-14T20:08:32+08:00 +2026/05/14 20:08:32.259, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.26, 65 +2026-05-14T20:08:37+08:00 +2026/05/14 20:08:37.283, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.98, 65 +2026-05-14T20:08:42+08:00 +2026/05/14 20:08:42.307, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.34, 65 +2026-05-14T20:08:47+08:00 +2026/05/14 20:08:47.330, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.69, 65 +2026-05-14T20:08:52+08:00 +2026/05/14 20:08:52.354, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.05, 65 +2026-05-14T20:08:57+08:00 +2026/05/14 20:08:57.396, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.14, 65 +2026-05-14T20:09:02+08:00 +2026/05/14 20:09:02.440, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.34, 66 +2026-05-14T20:09:07+08:00 +2026/05/14 20:09:07.463, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.20, 65 +2026-05-14T20:09:12+08:00 +2026/05/14 20:09:12.505, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.88, 65 +2026-05-14T20:09:17+08:00 +2026/05/14 20:09:17.580, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.92, 65 +2026-05-14T20:09:22+08:00 +2026/05/14 20:09:22.627, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.04, 65 +2026-05-14T20:09:27+08:00 +2026/05/14 20:09:27.676, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.83, 66 +2026-05-14T20:09:32+08:00 +2026/05/14 20:09:32.700, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.86, 65 +2026-05-14T20:09:37+08:00 +2026/05/14 20:09:37.724, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 65 +2026-05-14T20:09:42+08:00 +2026/05/14 20:09:42.748, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.96, 65 +2026-05-14T20:09:47+08:00 +2026/05/14 20:09:47.771, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.07, 65 +2026-05-14T20:09:52+08:00 +2026/05/14 20:09:52.794, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.85, 65 +2026-05-14T20:09:57+08:00 +2026/05/14 20:09:57.816, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 65 +2026-05-14T20:10:02+08:00 +2026/05/14 20:10:02.841, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.64, 65 +2026-05-14T20:10:07+08:00 +2026/05/14 20:10:07.864, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.13, 65 +2026-05-14T20:10:12+08:00 +2026/05/14 20:10:12.889, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.07, 66 +2026-05-14T20:10:17+08:00 +2026/05/14 20:10:17.911, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.96, 65 +2026-05-14T20:10:22+08:00 +2026/05/14 20:10:22.934, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 341.64, 64 +2026-05-14T20:10:27+08:00 +2026/05/14 20:10:27.957, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.50, 64 +2026-05-14T20:10:32+08:00 +2026/05/14 20:10:32.980, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.73, 64 +2026-05-14T20:10:37+08:00 +2026/05/14 20:10:38.004, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.42, 64 +2026-05-14T20:10:43+08:00 +2026/05/14 20:10:43.028, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.61, 64 +2026-05-14T20:10:48+08:00 +2026/05/14 20:10:48.049, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.72, 64 +2026-05-14T20:10:53+08:00 +2026/05/14 20:10:53.073, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.19, 64 +2026-05-14T20:10:58+08:00 +2026/05/14 20:10:58.094, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.33, 64 +2026-05-14T20:11:03+08:00 +2026/05/14 20:11:03.118, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.43, 65 +2026-05-14T20:11:08+08:00 +2026/05/14 20:11:08.142, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.96, 65 +2026-05-14T20:11:13+08:00 +2026/05/14 20:11:13.166, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 300.19, 59 +2026-05-14T20:11:18+08:00 +2026/05/14 20:11:18.189, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.81, 66 +2026-05-14T20:11:23+08:00 +2026/05/14 20:11:23.233, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.40, 65 +2026-05-14T20:11:28+08:00 +2026/05/14 20:11:28.294, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.54, 65 +2026-05-14T20:11:33+08:00 +2026/05/14 20:11:33.317, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.83, 65 +2026-05-14T20:11:38+08:00 +2026/05/14 20:11:38.367, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.79, 65 +2026-05-14T20:11:43+08:00 +2026/05/14 20:11:43.392, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.63, 66 +2026-05-14T20:11:48+08:00 +2026/05/14 20:11:48.463, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.47, 65 +2026-05-14T20:11:53+08:00 +2026/05/14 20:11:53.486, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.27, 65 +2026-05-14T20:11:58+08:00 +2026/05/14 20:11:58.526, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.71, 66 +2026-05-14T20:12:03+08:00 +2026/05/14 20:12:03.569, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.67, 65 +2026-05-14T20:12:08+08:00 +2026/05/14 20:12:08.649, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.21, 65 +2026-05-14T20:12:13+08:00 +2026/05/14 20:12:13.674, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.40, 64 +2026-05-14T20:12:18+08:00 +2026/05/14 20:12:18.714, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.05, 64 +2026-05-14T20:12:23+08:00 +2026/05/14 20:12:23.739, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.89, 65 +2026-05-14T20:12:28+08:00 +2026/05/14 20:12:28.763, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.85, 65 +2026-05-14T20:12:33+08:00 +2026/05/14 20:12:33.785, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.91, 66 +2026-05-14T20:12:38+08:00 +2026/05/14 20:12:38.810, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.59, 65 +2026-05-14T20:12:43+08:00 +2026/05/14 20:12:43.836, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.72, 65 +2026-05-14T20:12:48+08:00 +2026/05/14 20:12:48.861, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.61, 66 +2026-05-14T20:12:53+08:00 +2026/05/14 20:12:53.884, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.92, 65 +2026-05-14T20:12:58+08:00 +2026/05/14 20:12:58.907, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.21, 66 +2026-05-14T20:13:03+08:00 +2026/05/14 20:13:03.932, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 354.99, 66 +2026-05-14T20:13:08+08:00 +2026/05/14 20:13:08.955, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 355.97, 65 +2026-05-14T20:13:13+08:00 +2026/05/14 20:13:13.983, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.28, 64 +2026-05-14T20:13:18+08:00 +2026/05/14 20:13:19.009, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.46, 64 +2026-05-14T20:13:24+08:00 +2026/05/14 20:13:24.032, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.28, 65 +2026-05-14T20:13:29+08:00 +2026/05/14 20:13:29.056, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.84, 66 +2026-05-14T20:13:34+08:00 +2026/05/14 20:13:34.079, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.68, 66 +2026-05-14T20:13:39+08:00 +2026/05/14 20:13:39.104, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.57, 65 +2026-05-14T20:13:44+08:00 +2026/05/14 20:13:44.131, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.91, 65 +2026-05-14T20:13:49+08:00 +2026/05/14 20:13:49.172, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.04, 66 +2026-05-14T20:13:54+08:00 +2026/05/14 20:13:54.194, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.99, 65 +2026-05-14T20:13:59+08:00 +2026/05/14 20:13:59.263, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.95, 65 +2026-05-14T20:14:04+08:00 +2026/05/14 20:14:04.286, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.08, 65 +2026-05-14T20:14:09+08:00 +2026/05/14 20:14:09.311, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.35, 65 +2026-05-14T20:14:14+08:00 +2026/05/14 20:14:14.355, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.83, 62 +2026-05-14T20:14:19+08:00 +2026/05/14 20:14:19.382, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.99, 64 +2026-05-14T20:14:24+08:00 +2026/05/14 20:14:24.405, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.56, 65 +2026-05-14T20:14:29+08:00 +2026/05/14 20:14:29.447, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 65 +2026-05-14T20:14:34+08:00 +2026/05/14 20:14:34.488, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.35, 66 +2026-05-14T20:14:39+08:00 +2026/05/14 20:14:39.561, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.34, 65 +2026-05-14T20:14:44+08:00 +2026/05/14 20:14:44.584, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.03, 66 +2026-05-14T20:14:49+08:00 +2026/05/14 20:14:49.626, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.10, 66 +2026-05-14T20:14:54+08:00 +2026/05/14 20:14:54.652, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.01, 64 +2026-05-14T20:14:59+08:00 +2026/05/14 20:14:59.678, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.34, 64 +2026-05-14T20:15:04+08:00 +2026/05/14 20:15:04.716, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.56, 65 +2026-05-14T20:15:09+08:00 +2026/05/14 20:15:09.793, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.53, 65 +2026-05-14T20:15:14+08:00 +2026/05/14 20:15:14.815, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.05, 66 +2026-05-14T20:15:19+08:00 +2026/05/14 20:15:19.857, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.09, 65 +2026-05-14T20:15:24+08:00 +2026/05/14 20:15:24.881, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.83, 66 +2026-05-14T20:15:29+08:00 +2026/05/14 20:15:29.904, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 261.34, 66 +2026-05-14T20:15:34+08:00 +2026/05/14 20:15:34.932, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.34, 65 +2026-05-14T20:15:39+08:00 +2026/05/14 20:15:40.005, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 65 +2026-05-14T20:15:45+08:00 +2026/05/14 20:15:45.028, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 66 +2026-05-14T20:15:50+08:00 +2026/05/14 20:15:50.070, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.96, 65 +2026-05-14T20:15:55+08:00 +2026/05/14 20:15:55.203, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 65 +2026-05-14T20:16:00+08:00 +2026/05/14 20:16:00.226, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.01, 65 +2026-05-14T20:16:05+08:00 +2026/05/14 20:16:05.250, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.08, 66 +2026-05-14T20:16:10+08:00 +2026/05/14 20:16:10.311, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.81, 64 +2026-05-14T20:16:15+08:00 +2026/05/14 20:16:15.333, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.57, 65 +2026-05-14T20:16:20+08:00 +2026/05/14 20:16:20.383, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.47, 65 +2026-05-14T20:16:25+08:00 +2026/05/14 20:16:25.408, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 365.28, 65 +2026-05-14T20:16:30+08:00 +2026/05/14 20:16:30.461, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.63, 65 +2026-05-14T20:16:35+08:00 +2026/05/14 20:16:35.485, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.64, 64 +2026-05-14T20:16:40+08:00 +2026/05/14 20:16:40.506, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.49, 65 +2026-05-14T20:16:45+08:00 +2026/05/14 20:16:45.529, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.05, 64 +2026-05-14T20:16:50+08:00 +2026/05/14 20:16:50.555, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.05, 65 +2026-05-14T20:16:55+08:00 +2026/05/14 20:16:55.577, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.23, 65 +2026-05-14T20:17:00+08:00 +2026/05/14 20:17:00.601, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.62, 66 +2026-05-14T20:17:05+08:00 +2026/05/14 20:17:05.625, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.15, 64 +2026-05-14T20:17:10+08:00 +2026/05/14 20:17:10.648, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.49, 64 +2026-05-14T20:17:15+08:00 +2026/05/14 20:17:15.673, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.45, 65 +2026-05-14T20:17:20+08:00 +2026/05/14 20:17:20.695, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.91, 66 +2026-05-14T20:17:25+08:00 +2026/05/14 20:17:25.718, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 365.32, 65 +2026-05-14T20:17:30+08:00 +2026/05/14 20:17:30.740, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.89, 64 +2026-05-14T20:17:35+08:00 +2026/05/14 20:17:35.764, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.76, 65 +2026-05-14T20:17:40+08:00 +2026/05/14 20:17:40.785, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.20, 65 +2026-05-14T20:17:45+08:00 +2026/05/14 20:17:45.808, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.32, 65 +2026-05-14T20:17:50+08:00 +2026/05/14 20:17:50.830, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 364.34, 66 +2026-05-14T20:17:55+08:00 +2026/05/14 20:17:55.854, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.22, 66 +2026-05-14T20:18:00+08:00 +2026/05/14 20:18:00.876, NVIDIA GeForce RTX 5090, 67, 23, 9607, 32607, 255.80, 65 +2026-05-14T20:18:05+08:00 +2026/05/14 20:18:05.899, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.92, 65 +2026-05-14T20:18:10+08:00 +2026/05/14 20:18:10.922, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.46, 65 +2026-05-14T20:18:15+08:00 +2026/05/14 20:18:15.944, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.50, 65 +2026-05-14T20:18:20+08:00 +2026/05/14 20:18:20.968, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.16, 66 +2026-05-14T20:18:25+08:00 +2026/05/14 20:18:25.993, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 363.79, 65 +2026-05-14T20:18:31+08:00 +2026/05/14 20:18:31.017, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.87, 65 +2026-05-14T20:18:36+08:00 +2026/05/14 20:18:36.039, NVIDIA GeForce RTX 5090, 55, 26, 9607, 32607, 355.02, 60 +2026-05-14T20:18:41+08:00 +2026/05/14 20:18:41.060, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 221.88, 64 +2026-05-14T20:18:46+08:00 +2026/05/14 20:18:46.087, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.79, 64 +2026-05-14T20:18:51+08:00 +2026/05/14 20:18:51.112, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 362.56, 65 +2026-05-14T20:18:56+08:00 +2026/05/14 20:18:56.136, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.08, 66 +2026-05-14T20:19:01+08:00 +2026/05/14 20:19:01.158, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.08, 65 +2026-05-14T20:19:06+08:00 +2026/05/14 20:19:06.181, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 366.09, 65 +2026-05-14T20:19:11+08:00 +2026/05/14 20:19:11.204, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 65 +2026-05-14T20:19:16+08:00 +2026/05/14 20:19:16.226, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 303.56, 65 +2026-05-14T20:19:21+08:00 +2026/05/14 20:19:21.248, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.19, 64 +2026-05-14T20:19:26+08:00 +2026/05/14 20:19:26.272, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.97, 65 +2026-05-14T20:19:31+08:00 +2026/05/14 20:19:31.294, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.03, 65 +2026-05-14T20:19:36+08:00 +2026/05/14 20:19:36.316, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.25, 65 +2026-05-14T20:19:41+08:00 +2026/05/14 20:19:41.341, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 365.92, 65 +2026-05-14T20:19:46+08:00 +2026/05/14 20:19:46.364, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.25, 65 +2026-05-14T20:19:51+08:00 +2026/05/14 20:19:51.387, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.93, 64 +2026-05-14T20:19:56+08:00 +2026/05/14 20:19:56.411, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.82, 65 +2026-05-14T20:20:01+08:00 +2026/05/14 20:20:01.435, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.37, 64 +2026-05-14T20:20:06+08:00 +2026/05/14 20:20:06.459, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.88, 65 +2026-05-14T20:20:11+08:00 +2026/05/14 20:20:11.483, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.72, 65 +2026-05-14T20:20:16+08:00 +2026/05/14 20:20:16.506, NVIDIA GeForce RTX 5090, 88, 39, 9607, 32607, 365.38, 65 +2026-05-14T20:20:21+08:00 +2026/05/14 20:20:21.546, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.98, 66 +2026-05-14T20:20:26+08:00 +2026/05/14 20:20:26.588, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.56, 64 +2026-05-14T20:20:31+08:00 +2026/05/14 20:20:31.613, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.92, 64 +2026-05-14T20:20:36+08:00 +2026/05/14 20:20:36.636, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 65 +2026-05-14T20:20:41+08:00 +2026/05/14 20:20:41.692, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.12, 65 +2026-05-14T20:20:46+08:00 +2026/05/14 20:20:46.717, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.59, 66 +2026-05-14T20:20:51+08:00 +2026/05/14 20:20:51.741, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.13, 65 +2026-05-14T20:20:56+08:00 +2026/05/14 20:20:56.782, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.32, 64 +2026-05-14T20:21:01+08:00 +2026/05/14 20:21:01.830, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.44, 64 +2026-05-14T20:21:06+08:00 +2026/05/14 20:21:06.854, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 223.44, 62 +2026-05-14T20:21:11+08:00 +2026/05/14 20:21:11.895, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.05, 65 +2026-05-14T20:21:16+08:00 +2026/05/14 20:21:16.936, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.53, 64 +2026-05-14T20:21:21+08:00 +2026/05/14 20:21:21.977, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.67, 65 +2026-05-14T20:21:27+08:00 +2026/05/14 20:21:27.030, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.15, 65 +2026-05-14T20:21:32+08:00 +2026/05/14 20:21:32.071, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.25, 65 +2026-05-14T20:21:37+08:00 +2026/05/14 20:21:37.113, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.17, 65 +2026-05-14T20:21:42+08:00 +2026/05/14 20:21:42.137, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 362.93, 64 +2026-05-14T20:21:47+08:00 +2026/05/14 20:21:47.195, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.10, 65 +2026-05-14T20:21:52+08:00 +2026/05/14 20:21:52.219, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.83, 65 +2026-05-14T20:21:57+08:00 +2026/05/14 20:21:57.261, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 362.57, 64 +2026-05-14T20:22:02+08:00 +2026/05/14 20:22:02.302, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.14, 65 +2026-05-14T20:22:07+08:00 +2026/05/14 20:22:07.325, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.99, 66 +2026-05-14T20:22:12+08:00 +2026/05/14 20:22:12.352, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.60, 65 +2026-05-14T20:22:17+08:00 +2026/05/14 20:22:17.394, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 365.13, 65 +2026-05-14T20:22:22+08:00 +2026/05/14 20:22:22.422, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.01, 65 +2026-05-14T20:22:27+08:00 +2026/05/14 20:22:27.445, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 358.32, 65 +2026-05-14T20:22:32+08:00 +2026/05/14 20:22:32.468, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.53, 64 +2026-05-14T20:22:37+08:00 +2026/05/14 20:22:37.496, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.39, 65 +2026-05-14T20:22:42+08:00 +2026/05/14 20:22:42.520, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.79, 65 +2026-05-14T20:22:47+08:00 +2026/05/14 20:22:47.544, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.42, 66 +2026-05-14T20:22:52+08:00 +2026/05/14 20:22:52.568, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.54, 64 +2026-05-14T20:22:57+08:00 +2026/05/14 20:22:57.597, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.08, 65 +2026-05-14T20:23:02+08:00 +2026/05/14 20:23:02.622, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.20, 66 +2026-05-14T20:23:07+08:00 +2026/05/14 20:23:07.647, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.71, 65 +2026-05-14T20:23:12+08:00 +2026/05/14 20:23:12.670, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.90, 65 +2026-05-14T20:23:17+08:00 +2026/05/14 20:23:17.695, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.91, 65 +2026-05-14T20:23:22+08:00 +2026/05/14 20:23:22.719, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.30, 66 +2026-05-14T20:23:27+08:00 +2026/05/14 20:23:27.743, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.89, 64 +2026-05-14T20:23:32+08:00 +2026/05/14 20:23:32.766, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.20, 65 +2026-05-14T20:23:37+08:00 +2026/05/14 20:23:37.789, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.45, 66 +2026-05-14T20:23:42+08:00 +2026/05/14 20:23:42.812, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 360.85, 65 +2026-05-14T20:23:47+08:00 +2026/05/14 20:23:47.837, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.59, 64 +2026-05-14T20:23:52+08:00 +2026/05/14 20:23:52.861, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.25, 65 +2026-05-14T20:23:57+08:00 +2026/05/14 20:23:57.885, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.09, 66 +2026-05-14T20:24:02+08:00 +2026/05/14 20:24:02.908, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.02, 66 +2026-05-14T20:24:07+08:00 +2026/05/14 20:24:07.932, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.33, 64 +2026-05-14T20:24:12+08:00 +2026/05/14 20:24:12.957, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.77, 66 +2026-05-14T20:24:17+08:00 +2026/05/14 20:24:17.980, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 366.79, 66 +2026-05-14T20:24:22+08:00 +2026/05/14 20:24:23.003, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.45, 65 +2026-05-14T20:24:28+08:00 +2026/05/14 20:24:28.026, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.13, 64 +2026-05-14T20:24:33+08:00 +2026/05/14 20:24:33.050, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 235.10, 65 +2026-05-14T20:24:38+08:00 +2026/05/14 20:24:38.073, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.12, 66 +2026-05-14T20:24:43+08:00 +2026/05/14 20:24:43.097, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.13, 66 +2026-05-14T20:24:48+08:00 +2026/05/14 20:24:48.122, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.79, 66 +2026-05-14T20:24:53+08:00 +2026/05/14 20:24:53.146, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.91, 65 +2026-05-14T20:24:58+08:00 +2026/05/14 20:24:58.168, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.04, 66 +2026-05-14T20:25:03+08:00 +2026/05/14 20:25:03.192, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.99, 65 +2026-05-14T20:25:08+08:00 +2026/05/14 20:25:08.216, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.67, 66 +2026-05-14T20:25:13+08:00 +2026/05/14 20:25:13.245, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.68, 66 +2026-05-14T20:25:18+08:00 +2026/05/14 20:25:18.267, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.97, 66 +2026-05-14T20:25:23+08:00 +2026/05/14 20:25:23.291, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.93, 66 +2026-05-14T20:25:28+08:00 +2026/05/14 20:25:28.315, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.80, 66 +2026-05-14T20:25:33+08:00 +2026/05/14 20:25:33.341, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.12, 66 +2026-05-14T20:25:38+08:00 +2026/05/14 20:25:38.364, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.36, 66 +2026-05-14T20:25:43+08:00 +2026/05/14 20:25:43.386, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.36, 65 +2026-05-14T20:25:48+08:00 +2026/05/14 20:25:48.412, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.84, 65 +2026-05-14T20:25:53+08:00 +2026/05/14 20:25:53.439, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.51, 65 +2026-05-14T20:25:58+08:00 +2026/05/14 20:25:58.462, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.94, 66 +2026-05-14T20:26:03+08:00 +2026/05/14 20:26:03.487, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.08, 65 +2026-05-14T20:26:08+08:00 +2026/05/14 20:26:08.510, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.65, 65 +2026-05-14T20:26:13+08:00 +2026/05/14 20:26:13.533, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.16, 65 +2026-05-14T20:26:18+08:00 +2026/05/14 20:26:18.578, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.25, 65 +2026-05-14T20:26:23+08:00 +2026/05/14 20:26:23.623, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.52, 65 +2026-05-14T20:26:28+08:00 +2026/05/14 20:26:28.646, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.22, 66 +2026-05-14T20:26:33+08:00 +2026/05/14 20:26:33.684, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.57, 64 +2026-05-14T20:26:38+08:00 +2026/05/14 20:26:38.713, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.23, 65 +2026-05-14T20:26:43+08:00 +2026/05/14 20:26:43.738, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.77, 64 +2026-05-14T20:26:48+08:00 +2026/05/14 20:26:48.761, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.90, 65 +2026-05-14T20:26:53+08:00 +2026/05/14 20:26:53.811, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.82, 65 +2026-05-14T20:26:58+08:00 +2026/05/14 20:26:58.856, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.70, 65 +2026-05-14T20:27:03+08:00 +2026/05/14 20:27:03.879, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.42, 63 +2026-05-14T20:27:08+08:00 +2026/05/14 20:27:08.953, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.15, 64 +2026-05-14T20:27:13+08:00 +2026/05/14 20:27:13.977, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.97, 64 +2026-05-14T20:27:18+08:00 +2026/05/14 20:27:19.001, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.94, 64 +2026-05-14T20:27:24+08:00 +2026/05/14 20:27:24.021, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.05, 64 +2026-05-14T20:27:29+08:00 +2026/05/14 20:27:29.043, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.84, 65 +2026-05-14T20:27:34+08:00 +2026/05/14 20:27:34.065, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 264.91, 65 +2026-05-14T20:27:39+08:00 +2026/05/14 20:27:39.088, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.74, 64 +2026-05-14T20:27:44+08:00 +2026/05/14 20:27:44.111, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.42, 64 +2026-05-14T20:27:49+08:00 +2026/05/14 20:27:49.133, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.71, 64 +2026-05-14T20:27:54+08:00 +2026/05/14 20:27:54.155, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.60, 64 +2026-05-14T20:27:59+08:00 +2026/05/14 20:27:59.179, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.16, 66 +2026-05-14T20:28:04+08:00 +2026/05/14 20:28:04.204, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.49, 65 +2026-05-14T20:28:09+08:00 +2026/05/14 20:28:09.227, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.98, 65 +2026-05-14T20:28:14+08:00 +2026/05/14 20:28:14.250, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.23, 66 +2026-05-14T20:28:19+08:00 +2026/05/14 20:28:19.273, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.85, 66 +2026-05-14T20:28:24+08:00 +2026/05/14 20:28:24.293, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.88, 65 +2026-05-14T20:28:29+08:00 +2026/05/14 20:28:29.317, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.24, 65 +2026-05-14T20:28:34+08:00 +2026/05/14 20:28:34.340, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.57, 64 +2026-05-14T20:28:39+08:00 +2026/05/14 20:28:39.361, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.49, 65 +2026-05-14T20:28:44+08:00 +2026/05/14 20:28:44.387, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.80, 65 +2026-05-14T20:28:49+08:00 +2026/05/14 20:28:49.411, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.78, 65 +2026-05-14T20:28:54+08:00 +2026/05/14 20:28:54.434, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.08, 65 +2026-05-14T20:28:59+08:00 +2026/05/14 20:28:59.457, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.36, 65 +2026-05-14T20:29:04+08:00 +2026/05/14 20:29:04.480, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.83, 64 +2026-05-14T20:29:09+08:00 +2026/05/14 20:29:09.504, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.67, 65 +2026-05-14T20:29:14+08:00 +2026/05/14 20:29:14.527, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.44, 65 +2026-05-14T20:29:19+08:00 +2026/05/14 20:29:19.551, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.46, 65 +2026-05-14T20:29:24+08:00 +2026/05/14 20:29:24.573, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.73, 66 +2026-05-14T20:29:29+08:00 +2026/05/14 20:29:29.597, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.84, 65 +2026-05-14T20:29:34+08:00 +2026/05/14 20:29:34.622, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.56, 65 +2026-05-14T20:29:39+08:00 +2026/05/14 20:29:39.645, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.44, 65 +2026-05-14T20:29:44+08:00 +2026/05/14 20:29:44.670, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.24, 65 +2026-05-14T20:29:49+08:00 +2026/05/14 20:29:49.694, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.02, 65 +2026-05-14T20:29:54+08:00 +2026/05/14 20:29:54.718, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.89, 65 +2026-05-14T20:29:59+08:00 +2026/05/14 20:29:59.745, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.37, 66 +2026-05-14T20:30:04+08:00 +2026/05/14 20:30:04.768, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.73, 65 +2026-05-14T20:30:09+08:00 +2026/05/14 20:30:09.792, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.44, 65 +2026-05-14T20:30:14+08:00 +2026/05/14 20:30:14.818, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 366.33, 65 +2026-05-14T20:30:19+08:00 +2026/05/14 20:30:19.846, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.11, 65 +2026-05-14T20:30:24+08:00 +2026/05/14 20:30:24.870, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.32, 64 +2026-05-14T20:30:29+08:00 +2026/05/14 20:30:29.898, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.60, 65 +2026-05-14T20:30:34+08:00 +2026/05/14 20:30:34.925, NVIDIA GeForce RTX 5090, 88, 36, 9607, 32607, 363.73, 65 +2026-05-14T20:30:39+08:00 +2026/05/14 20:30:39.946, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.67, 65 +2026-05-14T20:30:44+08:00 +2026/05/14 20:30:44.971, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.01, 66 +2026-05-14T20:30:49+08:00 +2026/05/14 20:30:49.992, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 317.85, 60 +2026-05-14T20:30:55+08:00 +2026/05/14 20:30:55.012, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.17, 65 +2026-05-14T20:31:00+08:00 +2026/05/14 20:31:00.036, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.17, 66 +2026-05-14T20:31:05+08:00 +2026/05/14 20:31:05.065, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.36, 66 +2026-05-14T20:31:10+08:00 +2026/05/14 20:31:10.088, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 356.29, 64 +2026-05-14T20:31:15+08:00 +2026/05/14 20:31:15.113, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.59, 65 +2026-05-14T20:31:20+08:00 +2026/05/14 20:31:20.136, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 269.69, 65 +2026-05-14T20:31:25+08:00 +2026/05/14 20:31:25.159, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 66 +2026-05-14T20:31:30+08:00 +2026/05/14 20:31:30.182, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 65 +2026-05-14T20:31:35+08:00 +2026/05/14 20:31:35.205, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.04, 65 +2026-05-14T20:31:40+08:00 +2026/05/14 20:31:40.228, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.83, 65 +2026-05-14T20:31:45+08:00 +2026/05/14 20:31:45.304, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.71, 66 +2026-05-14T20:31:50+08:00 +2026/05/14 20:31:50.328, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.93, 66 +2026-05-14T20:31:55+08:00 +2026/05/14 20:31:55.388, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 301.88, 59 +2026-05-14T20:32:00+08:00 +2026/05/14 20:32:00.423, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.70, 65 +2026-05-14T20:32:05+08:00 +2026/05/14 20:32:05.457, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.05, 65 +2026-05-14T20:32:10+08:00 +2026/05/14 20:32:10.481, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.57, 64 +2026-05-14T20:32:15+08:00 +2026/05/14 20:32:15.523, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.17, 64 +2026-05-14T20:32:20+08:00 +2026/05/14 20:32:20.565, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.63, 64 +2026-05-14T20:32:25+08:00 +2026/05/14 20:32:25.588, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.26, 64 +2026-05-14T20:32:30+08:00 +2026/05/14 20:32:30.612, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.00, 65 +2026-05-14T20:32:35+08:00 +2026/05/14 20:32:35.638, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.14, 66 +2026-05-14T20:32:40+08:00 +2026/05/14 20:32:40.662, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.80, 65 +2026-05-14T20:32:45+08:00 +2026/05/14 20:32:45.688, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.95, 65 +2026-05-14T20:32:50+08:00 +2026/05/14 20:32:50.712, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.50, 66 +2026-05-14T20:32:55+08:00 +2026/05/14 20:32:55.736, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.61, 65 +2026-05-14T20:33:00+08:00 +2026/05/14 20:33:00.760, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.77, 66 +2026-05-14T20:33:05+08:00 +2026/05/14 20:33:05.788, NVIDIA GeForce RTX 5090, 88, 39, 9607, 32607, 364.90, 66 +2026-05-14T20:33:10+08:00 +2026/05/14 20:33:10.812, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.24, 64 +2026-05-14T20:33:15+08:00 +2026/05/14 20:33:15.834, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.95, 65 +2026-05-14T20:33:20+08:00 +2026/05/14 20:33:20.857, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.78, 64 +2026-05-14T20:33:25+08:00 +2026/05/14 20:33:25.883, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.73, 65 +2026-05-14T20:33:30+08:00 +2026/05/14 20:33:30.907, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.19, 65 +2026-05-14T20:33:35+08:00 +2026/05/14 20:33:35.930, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.33, 66 +2026-05-14T20:33:40+08:00 +2026/05/14 20:33:40.954, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.85, 64 +2026-05-14T20:33:45+08:00 +2026/05/14 20:33:45.977, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.22, 65 +2026-05-14T20:33:50+08:00 +2026/05/14 20:33:51.001, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.91, 65 +2026-05-14T20:33:56+08:00 +2026/05/14 20:33:56.024, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.87, 65 +2026-05-14T20:34:01+08:00 +2026/05/14 20:34:01.051, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.45, 65 +2026-05-14T20:34:06+08:00 +2026/05/14 20:34:06.074, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 366.23, 65 +2026-05-14T20:34:11+08:00 +2026/05/14 20:34:11.097, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.77, 65 +2026-05-14T20:34:16+08:00 +2026/05/14 20:34:16.120, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 366.42, 65 +2026-05-14T20:34:21+08:00 +2026/05/14 20:34:21.147, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.72, 66 +2026-05-14T20:34:26+08:00 +2026/05/14 20:34:26.172, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 366.48, 65 +2026-05-14T20:34:31+08:00 +2026/05/14 20:34:31.195, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.93, 65 +2026-05-14T20:34:36+08:00 +2026/05/14 20:34:36.221, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.95, 65 +2026-05-14T20:34:41+08:00 +2026/05/14 20:34:41.245, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.45, 64 +2026-05-14T20:34:46+08:00 +2026/05/14 20:34:46.268, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.29, 65 +2026-05-14T20:34:51+08:00 +2026/05/14 20:34:51.291, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.80, 66 +2026-05-14T20:34:56+08:00 +2026/05/14 20:34:56.315, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.17, 66 +2026-05-14T20:35:01+08:00 +2026/05/14 20:35:01.347, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.89, 65 +2026-05-14T20:35:06+08:00 +2026/05/14 20:35:06.370, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.43, 64 +2026-05-14T20:35:11+08:00 +2026/05/14 20:35:11.394, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.62, 65 +2026-05-14T20:35:16+08:00 +2026/05/14 20:35:16.416, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.40, 65 +2026-05-14T20:35:21+08:00 +2026/05/14 20:35:21.440, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.25, 65 +2026-05-14T20:35:26+08:00 +2026/05/14 20:35:26.465, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.26, 66 +2026-05-14T20:35:31+08:00 +2026/05/14 20:35:31.489, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.17, 66 +2026-05-14T20:35:36+08:00 +2026/05/14 20:35:36.513, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.98, 65 +2026-05-14T20:35:41+08:00 +2026/05/14 20:35:41.536, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.32, 66 +2026-05-14T20:35:46+08:00 +2026/05/14 20:35:46.559, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.41, 65 +2026-05-14T20:35:51+08:00 +2026/05/14 20:35:51.583, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.57, 66 +2026-05-14T20:35:56+08:00 +2026/05/14 20:35:56.605, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.93, 66 +2026-05-14T20:36:01+08:00 +2026/05/14 20:36:01.629, NVIDIA GeForce RTX 5090, 88, 39, 9607, 32607, 366.24, 66 +2026-05-14T20:36:06+08:00 +2026/05/14 20:36:06.651, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.83, 64 +2026-05-14T20:36:11+08:00 +2026/05/14 20:36:11.675, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.17, 65 +2026-05-14T20:36:16+08:00 +2026/05/14 20:36:16.698, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.89, 66 +2026-05-14T20:36:21+08:00 +2026/05/14 20:36:21.721, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 209.57, 63 +2026-05-14T20:36:26+08:00 +2026/05/14 20:36:26.748, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 311.52, 60 +2026-05-14T20:36:31+08:00 +2026/05/14 20:36:31.771, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.64, 66 +2026-05-14T20:36:36+08:00 +2026/05/14 20:36:36.796, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.96, 65 +2026-05-14T20:36:41+08:00 +2026/05/14 20:36:41.820, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.17, 65 +2026-05-14T20:36:46+08:00 +2026/05/14 20:36:46.844, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 365.16, 64 +2026-05-14T20:36:51+08:00 +2026/05/14 20:36:51.868, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.77, 65 +2026-05-14T20:36:56+08:00 +2026/05/14 20:36:56.896, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.25, 67 +2026-05-14T20:37:01+08:00 +2026/05/14 20:37:01.919, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.52, 65 +2026-05-14T20:37:06+08:00 +2026/05/14 20:37:06.947, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 65 +2026-05-14T20:37:11+08:00 +2026/05/14 20:37:11.971, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.17, 65 +2026-05-14T20:37:16+08:00 +2026/05/14 20:37:16.994, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 366.32, 64 +2026-05-14T20:37:22+08:00 +2026/05/14 20:37:22.018, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 208.14, 63 +2026-05-14T20:37:27+08:00 +2026/05/14 20:37:27.042, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.91, 64 +2026-05-14T20:37:32+08:00 +2026/05/14 20:37:32.066, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 364.19, 66 +2026-05-14T20:37:37+08:00 +2026/05/14 20:37:37.090, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.31, 66 +2026-05-14T20:37:42+08:00 +2026/05/14 20:37:42.112, NVIDIA GeForce RTX 5090, 69, 32, 9607, 32607, 361.12, 64 +2026-05-14T20:37:47+08:00 +2026/05/14 20:37:47.134, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.12, 65 +2026-05-14T20:37:52+08:00 +2026/05/14 20:37:52.159, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.50, 65 +2026-05-14T20:37:57+08:00 +2026/05/14 20:37:57.187, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.63, 64 +2026-05-14T20:38:02+08:00 +2026/05/14 20:38:02.213, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.10, 64 +2026-05-14T20:38:07+08:00 +2026/05/14 20:38:07.237, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.82, 65 +2026-05-14T20:38:12+08:00 +2026/05/14 20:38:12.259, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.29, 64 +2026-05-14T20:38:17+08:00 +2026/05/14 20:38:17.282, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 363.42, 65 +2026-05-14T20:38:22+08:00 +2026/05/14 20:38:22.305, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.38, 64 +2026-05-14T20:38:27+08:00 +2026/05/14 20:38:27.330, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.10, 65 +2026-05-14T20:38:32+08:00 +2026/05/14 20:38:32.356, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.35, 66 +2026-05-14T20:38:37+08:00 +2026/05/14 20:38:37.379, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.74, 65 +2026-05-14T20:38:42+08:00 +2026/05/14 20:38:42.402, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.32, 65 +2026-05-14T20:38:47+08:00 +2026/05/14 20:38:47.426, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.09, 66 +2026-05-14T20:38:52+08:00 +2026/05/14 20:38:52.451, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.22, 66 +2026-05-14T20:38:57+08:00 +2026/05/14 20:38:57.476, NVIDIA GeForce RTX 5090, 39, 21, 9607, 32607, 134.08, 59 +2026-05-14T20:39:02+08:00 +2026/05/14 20:39:02.502, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.32, 65 +2026-05-14T20:39:07+08:00 +2026/05/14 20:39:07.526, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.86, 65 +2026-05-14T20:39:12+08:00 +2026/05/14 20:39:12.552, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.52, 65 +2026-05-14T20:39:17+08:00 +2026/05/14 20:39:17.579, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.93, 65 +2026-05-14T20:39:22+08:00 +2026/05/14 20:39:22.608, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 366.18, 65 +2026-05-14T20:39:27+08:00 +2026/05/14 20:39:27.635, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.73, 66 +2026-05-14T20:39:32+08:00 +2026/05/14 20:39:32.662, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.55, 65 +2026-05-14T20:39:37+08:00 +2026/05/14 20:39:37.688, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.04, 65 +2026-05-14T20:39:42+08:00 +2026/05/14 20:39:42.713, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.27, 65 +2026-05-14T20:39:47+08:00 +2026/05/14 20:39:47.736, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.63, 65 +2026-05-14T20:39:52+08:00 +2026/05/14 20:39:52.761, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.59, 66 +2026-05-14T20:39:57+08:00 +2026/05/14 20:39:57.784, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.62, 65 +2026-05-14T20:40:02+08:00 +2026/05/14 20:40:02.809, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.36, 65 +2026-05-14T20:40:07+08:00 +2026/05/14 20:40:07.832, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.00, 65 +2026-05-14T20:40:12+08:00 +2026/05/14 20:40:12.856, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.80, 64 +2026-05-14T20:40:17+08:00 +2026/05/14 20:40:17.881, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.23, 65 +2026-05-14T20:40:22+08:00 +2026/05/14 20:40:22.907, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.08, 66 +2026-05-14T20:40:27+08:00 +2026/05/14 20:40:27.931, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.25, 66 +2026-05-14T20:40:32+08:00 +2026/05/14 20:40:32.954, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.50, 65 +2026-05-14T20:40:37+08:00 +2026/05/14 20:40:37.978, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.80, 65 +2026-05-14T20:40:42+08:00 +2026/05/14 20:40:43.002, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.96, 66 +2026-05-14T20:40:48+08:00 +2026/05/14 20:40:48.026, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.96, 66 +2026-05-14T20:40:53+08:00 +2026/05/14 20:40:53.049, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.45, 66 +2026-05-14T20:40:58+08:00 +2026/05/14 20:40:58.072, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.45, 66 +2026-05-14T20:41:03+08:00 +2026/05/14 20:41:03.095, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.95, 64 +2026-05-14T20:41:08+08:00 +2026/05/14 20:41:08.118, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.94, 64 +2026-05-14T20:41:13+08:00 +2026/05/14 20:41:13.147, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.07, 65 +2026-05-14T20:41:18+08:00 +2026/05/14 20:41:18.172, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.34, 66 +2026-05-14T20:41:23+08:00 +2026/05/14 20:41:23.195, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.56, 66 +2026-05-14T20:41:28+08:00 +2026/05/14 20:41:28.219, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 268.06, 62 +2026-05-14T20:41:33+08:00 +2026/05/14 20:41:33.242, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.33, 66 +2026-05-14T20:41:38+08:00 +2026/05/14 20:41:38.266, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 65 +2026-05-14T20:41:43+08:00 +2026/05/14 20:41:43.295, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.73, 64 +2026-05-14T20:41:48+08:00 +2026/05/14 20:41:48.318, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.67, 65 +2026-05-14T20:41:53+08:00 +2026/05/14 20:41:53.345, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.90, 65 +2026-05-14T20:41:58+08:00 +2026/05/14 20:41:58.377, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 367.40, 66 +2026-05-14T20:42:03+08:00 +2026/05/14 20:42:03.401, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.29, 66 +2026-05-14T20:42:08+08:00 +2026/05/14 20:42:08.473, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 237.15, 65 +2026-05-14T20:42:13+08:00 +2026/05/14 20:42:13.496, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.05, 65 +2026-05-14T20:42:18+08:00 +2026/05/14 20:42:18.538, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.23, 65 +2026-05-14T20:42:23+08:00 +2026/05/14 20:42:23.561, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.75, 66 +2026-05-14T20:42:28+08:00 +2026/05/14 20:42:28.585, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 65 +2026-05-14T20:42:33+08:00 +2026/05/14 20:42:33.608, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 366.43, 65 +2026-05-14T20:42:38+08:00 +2026/05/14 20:42:38.631, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.40, 65 +2026-05-14T20:42:43+08:00 +2026/05/14 20:42:43.654, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.42, 65 +2026-05-14T20:42:48+08:00 +2026/05/14 20:42:48.681, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.70, 65 +2026-05-14T20:42:53+08:00 +2026/05/14 20:42:53.706, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.10, 65 +2026-05-14T20:42:58+08:00 +2026/05/14 20:42:58.731, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.34, 64 +2026-05-14T20:43:03+08:00 +2026/05/14 20:43:03.753, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.33, 65 +2026-05-14T20:43:08+08:00 +2026/05/14 20:43:08.778, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.42, 65 +2026-05-14T20:43:13+08:00 +2026/05/14 20:43:13.848, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.30, 65 +2026-05-14T20:43:18+08:00 +2026/05/14 20:43:18.874, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.81, 65 +2026-05-14T20:43:23+08:00 +2026/05/14 20:43:23.897, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.63, 66 +2026-05-14T20:43:28+08:00 +2026/05/14 20:43:28.939, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.34, 64 +2026-05-14T20:43:33+08:00 +2026/05/14 20:43:33.980, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.50, 64 +2026-05-14T20:43:39+08:00 +2026/05/14 20:43:39.056, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.63, 64 +2026-05-14T20:43:44+08:00 +2026/05/14 20:43:44.079, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.85, 64 +2026-05-14T20:43:49+08:00 +2026/05/14 20:43:49.123, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 363.33, 65 +2026-05-14T20:43:54+08:00 +2026/05/14 20:43:54.198, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.43, 66 +2026-05-14T20:43:59+08:00 +2026/05/14 20:43:59.220, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.86, 66 +2026-05-14T20:44:04+08:00 +2026/05/14 20:44:04.264, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.28, 65 +2026-05-14T20:44:09+08:00 +2026/05/14 20:44:09.339, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.55, 64 +2026-05-14T20:44:14+08:00 +2026/05/14 20:44:14.364, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.07, 65 +2026-05-14T20:44:19+08:00 +2026/05/14 20:44:19.415, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 367.45, 65 +2026-05-14T20:44:24+08:00 +2026/05/14 20:44:24.441, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 366.63, 66 +2026-05-14T20:44:29+08:00 +2026/05/14 20:44:29.492, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.85, 65 +2026-05-14T20:44:34+08:00 +2026/05/14 20:44:34.518, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.90, 66 +2026-05-14T20:44:39+08:00 +2026/05/14 20:44:39.569, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 366.77, 65 +2026-05-14T20:44:44+08:00 +2026/05/14 20:44:44.604, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.74, 65 +2026-05-14T20:44:49+08:00 +2026/05/14 20:44:49.627, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.99, 65 +2026-05-14T20:44:54+08:00 +2026/05/14 20:44:54.653, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.81, 66 +2026-05-14T20:44:59+08:00 +2026/05/14 20:44:59.692, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.91, 64 +2026-05-14T20:45:04+08:00 +2026/05/14 20:45:04.735, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.15, 64 +2026-05-14T20:45:09+08:00 +2026/05/14 20:45:09.777, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.70, 65 +2026-05-14T20:45:14+08:00 +2026/05/14 20:45:14.801, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.57, 66 +2026-05-14T20:45:19+08:00 +2026/05/14 20:45:19.825, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.88, 63 +2026-05-14T20:45:24+08:00 +2026/05/14 20:45:24.866, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.30, 65 +2026-05-14T20:45:29+08:00 +2026/05/14 20:45:29.889, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.96, 65 +2026-05-14T20:45:34+08:00 +2026/05/14 20:45:34.915, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.46, 65 +2026-05-14T20:45:39+08:00 +2026/05/14 20:45:39.938, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.16, 64 +2026-05-14T20:45:44+08:00 +2026/05/14 20:45:44.963, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.23, 65 +2026-05-14T20:45:49+08:00 +2026/05/14 20:45:49.988, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.32, 66 +2026-05-14T20:45:54+08:00 +2026/05/14 20:45:55.012, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.49, 65 +2026-05-14T20:46:00+08:00 +2026/05/14 20:46:00.035, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.77, 66 +2026-05-14T20:46:05+08:00 +2026/05/14 20:46:05.059, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.16, 64 +2026-05-14T20:46:10+08:00 +2026/05/14 20:46:10.082, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.89, 65 +2026-05-14T20:46:15+08:00 +2026/05/14 20:46:15.105, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.96, 65 +2026-05-14T20:46:20+08:00 +2026/05/14 20:46:20.130, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.06, 65 +2026-05-14T20:46:25+08:00 +2026/05/14 20:46:25.154, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.70, 64 +2026-05-14T20:46:30+08:00 +2026/05/14 20:46:30.179, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.78, 65 +2026-05-14T20:46:35+08:00 +2026/05/14 20:46:35.203, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 300.17, 64 +2026-05-14T20:46:40+08:00 +2026/05/14 20:46:40.225, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.89, 65 +2026-05-14T20:46:45+08:00 +2026/05/14 20:46:45.250, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 367.14, 65 +2026-05-14T20:46:50+08:00 +2026/05/14 20:46:50.274, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.51, 65 +2026-05-14T20:46:55+08:00 +2026/05/14 20:46:55.298, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.39, 64 +2026-05-14T20:47:00+08:00 +2026/05/14 20:47:00.320, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.81, 65 +2026-05-14T20:47:05+08:00 +2026/05/14 20:47:05.343, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.80, 65 +2026-05-14T20:47:10+08:00 +2026/05/14 20:47:10.366, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.86, 65 +2026-05-14T20:47:15+08:00 +2026/05/14 20:47:15.390, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.56, 64 +2026-05-14T20:47:20+08:00 +2026/05/14 20:47:20.413, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.66, 65 +2026-05-14T20:47:25+08:00 +2026/05/14 20:47:25.437, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.51, 65 +2026-05-14T20:47:30+08:00 +2026/05/14 20:47:30.460, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.45, 66 +2026-05-14T20:47:35+08:00 +2026/05/14 20:47:35.484, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.59, 66 +2026-05-14T20:47:40+08:00 +2026/05/14 20:47:40.508, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.73, 64 +2026-05-14T20:47:45+08:00 +2026/05/14 20:47:45.531, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 364.05, 64 +2026-05-14T20:47:50+08:00 +2026/05/14 20:47:50.556, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.98, 64 +2026-05-14T20:47:55+08:00 +2026/05/14 20:47:55.579, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.49, 64 +2026-05-14T20:48:00+08:00 +2026/05/14 20:48:00.602, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.06, 66 +2026-05-14T20:48:05+08:00 +2026/05/14 20:48:05.626, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 365.98, 65 +2026-05-14T20:48:10+08:00 +2026/05/14 20:48:10.652, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.22, 65 +2026-05-14T20:48:15+08:00 +2026/05/14 20:48:15.676, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 328.45, 65 +2026-05-14T20:48:20+08:00 +2026/05/14 20:48:20.699, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.01, 66 +2026-05-14T20:48:25+08:00 +2026/05/14 20:48:25.723, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.57, 65 +2026-05-14T20:48:30+08:00 +2026/05/14 20:48:30.748, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 266.73, 65 +2026-05-14T20:48:35+08:00 +2026/05/14 20:48:35.770, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.36, 65 +2026-05-14T20:48:40+08:00 +2026/05/14 20:48:40.794, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.30, 66 +2026-05-14T20:48:45+08:00 +2026/05/14 20:48:45.819, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.37, 66 +2026-05-14T20:48:50+08:00 +2026/05/14 20:48:50.842, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.77, 64 +2026-05-14T20:48:55+08:00 +2026/05/14 20:48:55.868, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.35, 65 +2026-05-14T20:49:00+08:00 +2026/05/14 20:49:00.890, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.16, 66 +2026-05-14T20:49:05+08:00 +2026/05/14 20:49:05.916, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.46, 65 +2026-05-14T20:49:10+08:00 +2026/05/14 20:49:10.943, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 366.62, 66 +2026-05-14T20:49:15+08:00 +2026/05/14 20:49:15.966, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.93, 65 +2026-05-14T20:49:20+08:00 +2026/05/14 20:49:20.990, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 366.29, 65 +2026-05-14T20:49:26+08:00 +2026/05/14 20:49:26.017, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.21, 65 +2026-05-14T20:49:31+08:00 +2026/05/14 20:49:31.041, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.55, 66 +2026-05-14T20:49:36+08:00 +2026/05/14 20:49:36.062, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.90, 65 +2026-05-14T20:49:41+08:00 +2026/05/14 20:49:41.085, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.39, 65 +2026-05-14T20:49:46+08:00 +2026/05/14 20:49:46.110, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.23, 64 +2026-05-14T20:49:51+08:00 +2026/05/14 20:49:51.135, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.12, 65 +2026-05-14T20:49:56+08:00 +2026/05/14 20:49:56.158, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.50, 64 +2026-05-14T20:50:01+08:00 +2026/05/14 20:50:01.182, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.11, 65 +2026-05-14T20:50:06+08:00 +2026/05/14 20:50:06.209, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.63, 66 +2026-05-14T20:50:11+08:00 +2026/05/14 20:50:11.233, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.45, 66 +2026-05-14T20:50:16+08:00 +2026/05/14 20:50:16.258, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.22, 64 +2026-05-14T20:50:21+08:00 +2026/05/14 20:50:21.283, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.46, 65 +2026-05-14T20:50:26+08:00 +2026/05/14 20:50:26.305, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.39, 66 +2026-05-14T20:50:31+08:00 +2026/05/14 20:50:31.345, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.54, 65 +2026-05-14T20:50:36+08:00 +2026/05/14 20:50:36.370, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.44, 64 +2026-05-14T20:50:41+08:00 +2026/05/14 20:50:41.394, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.73, 65 +2026-05-14T20:50:46+08:00 +2026/05/14 20:50:46.417, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.74, 65 +2026-05-14T20:50:51+08:00 +2026/05/14 20:50:51.471, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.99, 65 +2026-05-14T20:50:56+08:00 +2026/05/14 20:50:56.496, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.42, 64 +2026-05-14T20:51:01+08:00 +2026/05/14 20:51:01.536, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.63, 64 +2026-05-14T20:51:06+08:00 +2026/05/14 20:51:06.561, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.73, 65 +2026-05-14T20:51:11+08:00 +2026/05/14 20:51:11.584, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.00, 65 +2026-05-14T20:51:16+08:00 +2026/05/14 20:51:16.607, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.16, 64 +2026-05-14T20:51:21+08:00 +2026/05/14 20:51:21.630, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.25, 65 +2026-05-14T20:51:26+08:00 +2026/05/14 20:51:26.656, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.48, 66 +2026-05-14T20:51:31+08:00 +2026/05/14 20:51:31.680, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.20, 65 +2026-05-14T20:51:36+08:00 +2026/05/14 20:51:36.703, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.45, 64 +2026-05-14T20:51:41+08:00 +2026/05/14 20:51:41.730, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.60, 65 +2026-05-14T20:51:46+08:00 +2026/05/14 20:51:46.754, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.41, 64 +2026-05-14T20:51:51+08:00 +2026/05/14 20:51:51.780, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.39, 65 +2026-05-14T20:51:56+08:00 +2026/05/14 20:51:56.802, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.46, 65 +2026-05-14T20:52:01+08:00 +2026/05/14 20:52:01.828, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.09, 65 +2026-05-14T20:52:06+08:00 +2026/05/14 20:52:06.850, NVIDIA GeForce RTX 5090, 14, 0, 9607, 32607, 103.18, 57 +2026-05-14T20:52:11+08:00 +2026/05/14 20:52:11.876, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.36, 65 +2026-05-14T20:52:16+08:00 +2026/05/14 20:52:16.900, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.74, 66 +2026-05-14T20:52:21+08:00 +2026/05/14 20:52:21.922, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.60, 64 +2026-05-14T20:52:26+08:00 +2026/05/14 20:52:26.947, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.10, 64 +2026-05-14T20:52:31+08:00 +2026/05/14 20:52:31.970, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.42, 65 +2026-05-14T20:52:36+08:00 +2026/05/14 20:52:36.995, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.59, 63 +2026-05-14T20:52:42+08:00 +2026/05/14 20:52:42.018, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.33, 65 +2026-05-14T20:52:47+08:00 +2026/05/14 20:52:47.041, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.38, 65 +2026-05-14T20:52:52+08:00 +2026/05/14 20:52:52.068, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.72, 65 +2026-05-14T20:52:57+08:00 +2026/05/14 20:52:57.090, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.66, 64 +2026-05-14T20:53:02+08:00 +2026/05/14 20:53:02.119, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 270.76, 64 +2026-05-14T20:53:07+08:00 +2026/05/14 20:53:07.142, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.82, 65 +2026-05-14T20:53:12+08:00 +2026/05/14 20:53:12.166, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 365.78, 65 +2026-05-14T20:53:17+08:00 +2026/05/14 20:53:17.189, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.57, 65 +2026-05-14T20:53:22+08:00 +2026/05/14 20:53:22.212, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 366.10, 66 +2026-05-14T20:53:27+08:00 +2026/05/14 20:53:27.235, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.09, 65 +2026-05-14T20:53:32+08:00 +2026/05/14 20:53:32.259, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.64, 65 +2026-05-14T20:53:37+08:00 +2026/05/14 20:53:37.285, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.61, 63 +2026-05-14T20:53:42+08:00 +2026/05/14 20:53:42.309, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.79, 65 +2026-05-14T20:53:47+08:00 +2026/05/14 20:53:47.337, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.70, 65 +2026-05-14T20:53:52+08:00 +2026/05/14 20:53:52.365, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.91, 66 +2026-05-14T20:53:57+08:00 +2026/05/14 20:53:57.389, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.34, 64 +2026-05-14T20:54:02+08:00 +2026/05/14 20:54:02.417, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.32, 65 +2026-05-14T20:54:07+08:00 +2026/05/14 20:54:07.439, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.04, 65 +2026-05-14T20:54:12+08:00 +2026/05/14 20:54:12.463, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 366.22, 66 +2026-05-14T20:54:17+08:00 +2026/05/14 20:54:17.489, NVIDIA GeForce RTX 5090, 45, 16, 9607, 32607, 259.31, 61 +2026-05-14T20:54:22+08:00 +2026/05/14 20:54:22.513, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.03, 66 +2026-05-14T20:54:27+08:00 +2026/05/14 20:54:27.539, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.60, 66 +2026-05-14T20:54:32+08:00 +2026/05/14 20:54:32.564, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.49, 66 +2026-05-14T20:54:37+08:00 +2026/05/14 20:54:37.604, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.01, 65 +2026-05-14T20:54:42+08:00 +2026/05/14 20:54:42.653, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.29, 65 +2026-05-14T20:54:47+08:00 +2026/05/14 20:54:47.680, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.28, 65 +2026-05-14T20:54:52+08:00 +2026/05/14 20:54:52.736, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.62, 65 +2026-05-14T20:54:57+08:00 +2026/05/14 20:54:57.759, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.61, 65 +2026-05-14T20:55:02+08:00 +2026/05/14 20:55:02.783, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.72, 66 +2026-05-14T20:55:07+08:00 +2026/05/14 20:55:07.806, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.63, 65 +2026-05-14T20:55:12+08:00 +2026/05/14 20:55:12.830, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.72, 65 +2026-05-14T20:55:17+08:00 +2026/05/14 20:55:17.854, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.78, 65 +2026-05-14T20:55:22+08:00 +2026/05/14 20:55:22.880, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.84, 66 +2026-05-14T20:55:27+08:00 +2026/05/14 20:55:27.904, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.04, 65 +2026-05-14T20:55:32+08:00 +2026/05/14 20:55:32.928, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.78, 65 +2026-05-14T20:55:37+08:00 +2026/05/14 20:55:37.951, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 353.57, 65 +2026-05-14T20:55:42+08:00 +2026/05/14 20:55:42.974, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.00, 66 +2026-05-14T20:55:47+08:00 +2026/05/14 20:55:48.000, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.19, 66 +2026-05-14T20:55:53+08:00 +2026/05/14 20:55:53.024, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.08, 65 +2026-05-14T20:55:58+08:00 +2026/05/14 20:55:58.049, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 64 +2026-05-14T20:56:03+08:00 +2026/05/14 20:56:03.074, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.85, 65 +2026-05-14T20:56:08+08:00 +2026/05/14 20:56:08.097, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.92, 65 +2026-05-14T20:56:13+08:00 +2026/05/14 20:56:13.120, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.62, 65 +2026-05-14T20:56:18+08:00 +2026/05/14 20:56:18.143, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.77, 64 +2026-05-14T20:56:23+08:00 +2026/05/14 20:56:23.167, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.70, 64 +2026-05-14T20:56:28+08:00 +2026/05/14 20:56:28.189, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.19, 65 +2026-05-14T20:56:33+08:00 +2026/05/14 20:56:33.213, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.07, 64 +2026-05-14T20:56:38+08:00 +2026/05/14 20:56:38.242, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 235.41, 64 +2026-05-14T20:56:43+08:00 +2026/05/14 20:56:43.266, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 65 +2026-05-14T20:56:48+08:00 +2026/05/14 20:56:48.287, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.36, 65 +2026-05-14T20:56:53+08:00 +2026/05/14 20:56:53.327, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 260.03, 64 +2026-05-14T20:56:58+08:00 +2026/05/14 20:56:58.353, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.72, 66 +2026-05-14T20:57:03+08:00 +2026/05/14 20:57:03.426, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.94, 65 +2026-05-14T20:57:08+08:00 +2026/05/14 20:57:08.449, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 66 +2026-05-14T20:57:13+08:00 +2026/05/14 20:57:13.490, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.84, 65 +2026-05-14T20:57:18+08:00 +2026/05/14 20:57:18.533, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.74, 66 +2026-05-14T20:57:23+08:00 +2026/05/14 20:57:23.557, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.43, 65 +2026-05-14T20:57:28+08:00 +2026/05/14 20:57:28.580, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.16, 65 +2026-05-14T20:57:33+08:00 +2026/05/14 20:57:33.604, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.51, 65 +2026-05-14T20:57:38+08:00 +2026/05/14 20:57:38.626, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.86, 65 +2026-05-14T20:57:43+08:00 +2026/05/14 20:57:43.654, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.63, 65 +2026-05-14T20:57:48+08:00 +2026/05/14 20:57:48.679, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.58, 65 +2026-05-14T20:57:53+08:00 +2026/05/14 20:57:53.705, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.93, 66 +2026-05-14T20:57:58+08:00 +2026/05/14 20:57:58.728, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 271.95, 59 +2026-05-14T20:58:03+08:00 +2026/05/14 20:58:03.750, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.03, 67 +2026-05-14T20:58:08+08:00 +2026/05/14 20:58:08.774, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.70, 65 +2026-05-14T20:58:13+08:00 +2026/05/14 20:58:13.798, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.43, 65 +2026-05-14T20:58:18+08:00 +2026/05/14 20:58:18.821, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.57, 66 +2026-05-14T20:58:23+08:00 +2026/05/14 20:58:23.847, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.64, 65 +2026-05-14T20:58:28+08:00 +2026/05/14 20:58:28.870, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.58, 65 +2026-05-14T20:58:33+08:00 +2026/05/14 20:58:33.893, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.83, 65 +2026-05-14T20:58:38+08:00 +2026/05/14 20:58:38.917, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.71, 65 +2026-05-14T20:58:43+08:00 +2026/05/14 20:58:43.941, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.05, 66 +2026-05-14T20:58:48+08:00 +2026/05/14 20:58:49.000, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.25, 64 +2026-05-14T20:58:54+08:00 +2026/05/14 20:58:54.027, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.41, 66 +2026-05-14T20:58:59+08:00 +2026/05/14 20:58:59.050, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.93, 65 +2026-05-14T20:59:04+08:00 +2026/05/14 20:59:04.092, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 366.18, 66 +2026-05-14T20:59:09+08:00 +2026/05/14 20:59:09.116, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.90, 65 +2026-05-14T20:59:14+08:00 +2026/05/14 20:59:14.153, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.55, 65 +2026-05-14T20:59:19+08:00 +2026/05/14 20:59:19.175, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.05, 66 +2026-05-14T20:59:24+08:00 +2026/05/14 20:59:24.254, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 211.47, 65 +2026-05-14T20:59:29+08:00 +2026/05/14 20:59:29.281, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.41, 65 +2026-05-14T20:59:34+08:00 +2026/05/14 20:59:34.303, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.41, 66 +2026-05-14T20:59:39+08:00 +2026/05/14 20:59:39.347, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.00, 65 +2026-05-14T20:59:44+08:00 +2026/05/14 20:59:44.418, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.63, 65 +2026-05-14T20:59:49+08:00 +2026/05/14 20:59:49.442, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.74, 66 +2026-05-14T20:59:54+08:00 +2026/05/14 20:59:54.470, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.45, 66 +2026-05-14T20:59:59+08:00 +2026/05/14 20:59:59.493, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.82, 67 +2026-05-14T21:00:04+08:00 +2026/05/14 21:00:04.517, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.75, 65 +2026-05-14T21:00:09+08:00 +2026/05/14 21:00:09.541, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.21, 65 +2026-05-14T21:00:14+08:00 +2026/05/14 21:00:14.568, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.94, 66 +2026-05-14T21:00:19+08:00 +2026/05/14 21:00:19.592, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.25, 65 +2026-05-14T21:00:24+08:00 +2026/05/14 21:00:24.617, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.40, 64 +2026-05-14T21:00:29+08:00 +2026/05/14 21:00:29.640, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.55, 65 +2026-05-14T21:00:34+08:00 +2026/05/14 21:00:34.663, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.94, 66 +2026-05-14T21:00:39+08:00 +2026/05/14 21:00:39.688, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.40, 65 +2026-05-14T21:00:44+08:00 +2026/05/14 21:00:44.712, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.53, 66 +2026-05-14T21:00:49+08:00 +2026/05/14 21:00:49.735, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.70, 65 +2026-05-14T21:00:54+08:00 +2026/05/14 21:00:54.760, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 362.65, 65 +2026-05-14T21:00:59+08:00 +2026/05/14 21:00:59.783, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 219.12, 64 +2026-05-14T21:01:04+08:00 +2026/05/14 21:01:04.810, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.76, 64 +2026-05-14T21:01:09+08:00 +2026/05/14 21:01:09.835, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.03, 65 +2026-05-14T21:01:14+08:00 +2026/05/14 21:01:14.857, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.48, 65 +2026-05-14T21:01:19+08:00 +2026/05/14 21:01:19.881, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.88, 66 +2026-05-14T21:01:24+08:00 +2026/05/14 21:01:24.904, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.98, 64 +2026-05-14T21:01:29+08:00 +2026/05/14 21:01:29.932, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.46, 66 +2026-05-14T21:01:34+08:00 +2026/05/14 21:01:34.961, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.08, 65 +2026-05-14T21:01:39+08:00 +2026/05/14 21:01:39.990, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.56, 64 +2026-05-14T21:01:45+08:00 +2026/05/14 21:01:45.015, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.28, 66 +2026-05-14T21:01:50+08:00 +2026/05/14 21:01:50.041, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.64, 65 +2026-05-14T21:01:55+08:00 +2026/05/14 21:01:55.065, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.37, 65 +2026-05-14T21:02:00+08:00 +2026/05/14 21:02:00.087, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.41, 66 +2026-05-14T21:02:05+08:00 +2026/05/14 21:02:05.113, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 364.15, 66 +2026-05-14T21:02:10+08:00 +2026/05/14 21:02:10.138, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.78, 65 +2026-05-14T21:02:15+08:00 +2026/05/14 21:02:15.167, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.24, 64 +2026-05-14T21:02:20+08:00 +2026/05/14 21:02:20.192, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.54, 65 +2026-05-14T21:02:25+08:00 +2026/05/14 21:02:25.214, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.66, 65 +2026-05-14T21:02:30+08:00 +2026/05/14 21:02:30.237, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 319.33, 60 +2026-05-14T21:02:35+08:00 +2026/05/14 21:02:35.260, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.93, 65 +2026-05-14T21:02:40+08:00 +2026/05/14 21:02:40.281, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.53, 66 +2026-05-14T21:02:45+08:00 +2026/05/14 21:02:45.304, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.37, 66 +2026-05-14T21:02:50+08:00 +2026/05/14 21:02:50.328, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.34, 65 +2026-05-14T21:02:55+08:00 +2026/05/14 21:02:55.350, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.50, 64 +2026-05-14T21:03:00+08:00 +2026/05/14 21:03:00.375, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.08, 65 +2026-05-14T21:03:05+08:00 +2026/05/14 21:03:05.398, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.34, 65 +2026-05-14T21:03:10+08:00 +2026/05/14 21:03:10.421, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.65, 66 +2026-05-14T21:03:15+08:00 +2026/05/14 21:03:15.449, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.50, 64 +2026-05-14T21:03:20+08:00 +2026/05/14 21:03:20.472, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.87, 65 +2026-05-14T21:03:25+08:00 +2026/05/14 21:03:25.500, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.84, 66 +2026-05-14T21:03:30+08:00 +2026/05/14 21:03:30.524, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 366.26, 65 +2026-05-14T21:03:35+08:00 +2026/05/14 21:03:35.553, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 64 +2026-05-14T21:03:40+08:00 +2026/05/14 21:03:40.578, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 65 +2026-05-14T21:03:45+08:00 +2026/05/14 21:03:45.605, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.88, 63 +2026-05-14T21:03:50+08:00 +2026/05/14 21:03:50.629, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.44, 65 +2026-05-14T21:03:55+08:00 +2026/05/14 21:03:55.653, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.08, 65 +2026-05-14T21:04:00+08:00 +2026/05/14 21:04:00.676, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.43, 65 +2026-05-14T21:04:05+08:00 +2026/05/14 21:04:05.700, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.51, 65 +2026-05-14T21:04:10+08:00 +2026/05/14 21:04:10.725, NVIDIA GeForce RTX 5090, 69, 32, 9607, 32607, 355.08, 66 +2026-05-14T21:04:15+08:00 +2026/05/14 21:04:15.750, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.29, 65 +2026-05-14T21:04:20+08:00 +2026/05/14 21:04:20.775, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.21, 65 +2026-05-14T21:04:25+08:00 +2026/05/14 21:04:25.798, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.78, 64 +2026-05-14T21:04:30+08:00 +2026/05/14 21:04:30.823, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.40, 64 +2026-05-14T21:04:35+08:00 +2026/05/14 21:04:35.846, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.89, 64 +2026-05-14T21:04:40+08:00 +2026/05/14 21:04:40.872, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.15, 64 +2026-05-14T21:04:45+08:00 +2026/05/14 21:04:45.896, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.66, 64 +2026-05-14T21:04:50+08:00 +2026/05/14 21:04:50.919, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.34, 64 +2026-05-14T21:04:55+08:00 +2026/05/14 21:04:55.944, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.83, 64 +2026-05-14T21:05:00+08:00 +2026/05/14 21:05:00.967, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.11, 64 +2026-05-14T21:05:05+08:00 +2026/05/14 21:05:05.990, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.03, 65 +2026-05-14T21:05:10+08:00 +2026/05/14 21:05:11.014, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.07, 64 +2026-05-14T21:05:16+08:00 +2026/05/14 21:05:16.037, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.46, 65 +2026-05-14T21:05:21+08:00 +2026/05/14 21:05:21.062, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.14, 65 +2026-05-14T21:05:26+08:00 +2026/05/14 21:05:26.087, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.90, 65 +2026-05-14T21:05:31+08:00 +2026/05/14 21:05:31.110, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.25, 65 +2026-05-14T21:05:36+08:00 +2026/05/14 21:05:36.135, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.05, 64 +2026-05-14T21:05:41+08:00 +2026/05/14 21:05:41.157, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.29, 65 +2026-05-14T21:05:46+08:00 +2026/05/14 21:05:46.185, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 65 +2026-05-14T21:05:51+08:00 +2026/05/14 21:05:51.208, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.74, 66 +2026-05-14T21:05:56+08:00 +2026/05/14 21:05:56.232, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.44, 65 +2026-05-14T21:06:01+08:00 +2026/05/14 21:06:01.255, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.21, 65 +2026-05-14T21:06:06+08:00 +2026/05/14 21:06:06.278, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.11, 66 +2026-05-14T21:06:11+08:00 +2026/05/14 21:06:11.309, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.96, 65 +2026-05-14T21:06:16+08:00 +2026/05/14 21:06:16.334, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.10, 65 +2026-05-14T21:06:21+08:00 +2026/05/14 21:06:21.360, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.90, 66 +2026-05-14T21:06:26+08:00 +2026/05/14 21:06:26.381, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.87, 66 +2026-05-14T21:06:31+08:00 +2026/05/14 21:06:31.404, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.38, 65 +2026-05-14T21:06:36+08:00 +2026/05/14 21:06:36.428, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.69, 65 +2026-05-14T21:06:41+08:00 +2026/05/14 21:06:41.451, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.59, 65 +2026-05-14T21:06:46+08:00 +2026/05/14 21:06:46.477, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.21, 65 +2026-05-14T21:06:51+08:00 +2026/05/14 21:06:51.507, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.14, 65 +2026-05-14T21:06:56+08:00 +2026/05/14 21:06:56.528, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 327.46, 65 +2026-05-14T21:07:01+08:00 +2026/05/14 21:07:01.556, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.48, 65 +2026-05-14T21:07:06+08:00 +2026/05/14 21:07:06.578, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.28, 65 +2026-05-14T21:07:11+08:00 +2026/05/14 21:07:11.601, NVIDIA GeForce RTX 5090, 87, 36, 9607, 32607, 360.08, 65 +2026-05-14T21:07:16+08:00 +2026/05/14 21:07:16.624, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.55, 64 +2026-05-14T21:07:21+08:00 +2026/05/14 21:07:21.653, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.13, 66 +2026-05-14T21:07:26+08:00 +2026/05/14 21:07:26.677, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.18, 64 +2026-05-14T21:07:31+08:00 +2026/05/14 21:07:31.701, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.20, 65 +2026-05-14T21:07:36+08:00 +2026/05/14 21:07:36.725, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.77, 65 +2026-05-14T21:07:41+08:00 +2026/05/14 21:07:41.748, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.72, 65 +2026-05-14T21:07:46+08:00 +2026/05/14 21:07:46.770, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.28, 66 +2026-05-14T21:07:51+08:00 +2026/05/14 21:07:51.794, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.99, 66 +2026-05-14T21:07:56+08:00 +2026/05/14 21:07:56.815, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.46, 65 +2026-05-14T21:08:01+08:00 +2026/05/14 21:08:01.838, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 363.69, 65 +2026-05-14T21:08:06+08:00 +2026/05/14 21:08:06.862, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.34, 66 +2026-05-14T21:08:11+08:00 +2026/05/14 21:08:11.889, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.85, 65 +2026-05-14T21:08:16+08:00 +2026/05/14 21:08:16.912, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.00, 65 +2026-05-14T21:08:21+08:00 +2026/05/14 21:08:21.936, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.38, 65 +2026-05-14T21:08:26+08:00 +2026/05/14 21:08:26.961, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.37, 65 +2026-05-14T21:08:31+08:00 +2026/05/14 21:08:31.984, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.04, 66 +2026-05-14T21:08:36+08:00 +2026/05/14 21:08:37.008, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.69, 65 +2026-05-14T21:08:42+08:00 +2026/05/14 21:08:42.032, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.93, 66 +2026-05-14T21:08:47+08:00 +2026/05/14 21:08:47.060, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.98, 66 +2026-05-14T21:08:52+08:00 +2026/05/14 21:08:52.083, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.81, 65 +2026-05-14T21:08:57+08:00 +2026/05/14 21:08:57.107, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.23, 65 +2026-05-14T21:09:02+08:00 +2026/05/14 21:09:02.134, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.34, 65 +2026-05-14T21:09:07+08:00 +2026/05/14 21:09:07.156, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.30, 65 +2026-05-14T21:09:12+08:00 +2026/05/14 21:09:12.178, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 363.71, 65 +2026-05-14T21:09:17+08:00 +2026/05/14 21:09:17.201, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.27, 65 +2026-05-14T21:09:22+08:00 +2026/05/14 21:09:22.225, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.56, 65 +2026-05-14T21:09:27+08:00 +2026/05/14 21:09:27.249, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 257.35, 65 +2026-05-14T21:09:32+08:00 +2026/05/14 21:09:32.273, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.14, 65 +2026-05-14T21:09:37+08:00 +2026/05/14 21:09:37.296, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.83, 65 +2026-05-14T21:09:42+08:00 +2026/05/14 21:09:42.319, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.91, 65 +2026-05-14T21:09:47+08:00 +2026/05/14 21:09:47.343, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.29, 65 +2026-05-14T21:09:52+08:00 +2026/05/14 21:09:52.369, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.58, 65 +2026-05-14T21:09:57+08:00 +2026/05/14 21:09:57.400, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.57, 65 +2026-05-14T21:10:02+08:00 +2026/05/14 21:10:02.422, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 222.64, 63 +2026-05-14T21:10:07+08:00 +2026/05/14 21:10:07.445, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.55, 64 +2026-05-14T21:10:12+08:00 +2026/05/14 21:10:12.467, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.49, 65 +2026-05-14T21:10:17+08:00 +2026/05/14 21:10:17.493, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.78, 62 +2026-05-14T21:10:22+08:00 +2026/05/14 21:10:22.517, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.54, 65 +2026-05-14T21:10:27+08:00 +2026/05/14 21:10:27.540, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.98, 66 +2026-05-14T21:10:32+08:00 +2026/05/14 21:10:32.564, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.81, 66 +2026-05-14T21:10:37+08:00 +2026/05/14 21:10:37.587, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.31, 66 +2026-05-14T21:10:42+08:00 +2026/05/14 21:10:42.614, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.11, 66 +2026-05-14T21:10:47+08:00 +2026/05/14 21:10:47.639, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.23, 65 +2026-05-14T21:10:52+08:00 +2026/05/14 21:10:52.664, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 364.46, 65 +2026-05-14T21:10:57+08:00 +2026/05/14 21:10:57.687, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.61, 64 +2026-05-14T21:11:02+08:00 +2026/05/14 21:11:02.742, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.55, 65 +2026-05-14T21:11:07+08:00 +2026/05/14 21:11:07.769, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.09, 65 +2026-05-14T21:11:12+08:00 +2026/05/14 21:11:12.812, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 299.70, 59 +2026-05-14T21:11:17+08:00 +2026/05/14 21:11:17.834, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.23, 66 +2026-05-14T21:11:22+08:00 +2026/05/14 21:11:22.857, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.84, 65 +2026-05-14T21:11:27+08:00 +2026/05/14 21:11:27.879, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.95, 65 +2026-05-14T21:11:32+08:00 +2026/05/14 21:11:32.903, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.01, 65 +2026-05-14T21:11:37+08:00 +2026/05/14 21:11:37.928, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.47, 66 +2026-05-14T21:11:42+08:00 +2026/05/14 21:11:42.951, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.88, 65 +2026-05-14T21:11:47+08:00 +2026/05/14 21:11:47.974, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 365.21, 66 +2026-05-14T21:11:52+08:00 +2026/05/14 21:11:52.997, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.70, 64 +2026-05-14T21:11:58+08:00 +2026/05/14 21:11:58.020, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.86, 65 +2026-05-14T21:12:03+08:00 +2026/05/14 21:12:03.043, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 311.91, 59 +2026-05-14T21:12:08+08:00 +2026/05/14 21:12:08.067, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.27, 64 +2026-05-14T21:12:13+08:00 +2026/05/14 21:12:13.092, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.21, 66 +2026-05-14T21:12:18+08:00 +2026/05/14 21:12:18.116, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.80, 66 +2026-05-14T21:12:23+08:00 +2026/05/14 21:12:23.138, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 357.29, 65 +2026-05-14T21:12:28+08:00 +2026/05/14 21:12:28.161, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.41, 65 +2026-05-14T21:12:33+08:00 +2026/05/14 21:12:33.184, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.49, 64 +2026-05-14T21:12:38+08:00 +2026/05/14 21:12:38.209, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.39, 65 +2026-05-14T21:12:43+08:00 +2026/05/14 21:12:43.231, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.12, 65 +2026-05-14T21:12:48+08:00 +2026/05/14 21:12:48.255, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.04, 66 +2026-05-14T21:12:53+08:00 +2026/05/14 21:12:53.277, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.90, 66 +2026-05-14T21:12:58+08:00 +2026/05/14 21:12:58.301, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.61, 65 +2026-05-14T21:13:03+08:00 +2026/05/14 21:13:03.325, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.59, 65 +2026-05-14T21:13:08+08:00 +2026/05/14 21:13:08.351, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.08, 66 +2026-05-14T21:13:13+08:00 +2026/05/14 21:13:13.386, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.90, 66 +2026-05-14T21:13:18+08:00 +2026/05/14 21:13:18.409, NVIDIA GeForce RTX 5090, 79, 35, 9607, 32607, 247.68, 62 +2026-05-14T21:13:23+08:00 +2026/05/14 21:13:23.433, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.88, 66 +2026-05-14T21:13:28+08:00 +2026/05/14 21:13:28.490, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.54, 65 +2026-05-14T21:13:33+08:00 +2026/05/14 21:13:33.515, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.51, 66 +2026-05-14T21:13:38+08:00 +2026/05/14 21:13:38.553, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.66, 65 +2026-05-14T21:13:43+08:00 +2026/05/14 21:13:43.594, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.94, 65 +2026-05-14T21:13:48+08:00 +2026/05/14 21:13:48.644, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.35, 64 +2026-05-14T21:13:53+08:00 +2026/05/14 21:13:53.670, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.26, 65 +2026-05-14T21:13:58+08:00 +2026/05/14 21:13:58.710, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 279.02, 61 +2026-05-14T21:14:03+08:00 +2026/05/14 21:14:03.732, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.46, 66 +2026-05-14T21:14:08+08:00 +2026/05/14 21:14:08.756, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.64, 66 +2026-05-14T21:14:13+08:00 +2026/05/14 21:14:13.779, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.27, 65 +2026-05-14T21:14:18+08:00 +2026/05/14 21:14:18.802, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.89, 66 +2026-05-14T21:14:23+08:00 +2026/05/14 21:14:23.826, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.54, 65 +2026-05-14T21:14:28+08:00 +2026/05/14 21:14:28.849, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.40, 65 +2026-05-14T21:14:33+08:00 +2026/05/14 21:14:33.875, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.09, 65 +2026-05-14T21:14:38+08:00 +2026/05/14 21:14:38.901, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.53, 66 +2026-05-14T21:14:43+08:00 +2026/05/14 21:14:43.924, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.53, 65 +2026-05-14T21:14:48+08:00 +2026/05/14 21:14:48.948, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.56, 65 +2026-05-14T21:14:53+08:00 +2026/05/14 21:14:53.971, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.96, 65 +2026-05-14T21:14:58+08:00 +2026/05/14 21:14:58.996, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.87, 64 +2026-05-14T21:15:04+08:00 +2026/05/14 21:15:04.026, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.47, 64 +2026-05-14T21:15:09+08:00 +2026/05/14 21:15:09.049, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.83, 64 +2026-05-14T21:15:14+08:00 +2026/05/14 21:15:14.072, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.41, 65 +2026-05-14T21:15:19+08:00 +2026/05/14 21:15:19.096, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.56, 66 +2026-05-14T21:15:24+08:00 +2026/05/14 21:15:24.120, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.55, 66 +2026-05-14T21:15:29+08:00 +2026/05/14 21:15:29.146, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.13, 66 +2026-05-14T21:15:34+08:00 +2026/05/14 21:15:34.170, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.67, 65 +2026-05-14T21:15:39+08:00 +2026/05/14 21:15:39.193, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.77, 66 +2026-05-14T21:15:44+08:00 +2026/05/14 21:15:44.216, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.44, 65 +2026-05-14T21:15:49+08:00 +2026/05/14 21:15:49.241, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 272.25, 60 +2026-05-14T21:15:54+08:00 +2026/05/14 21:15:54.262, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.07, 64 +2026-05-14T21:15:59+08:00 +2026/05/14 21:15:59.285, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.90, 64 +2026-05-14T21:16:04+08:00 +2026/05/14 21:16:04.364, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.30, 64 +2026-05-14T21:16:09+08:00 +2026/05/14 21:16:09.387, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.50, 64 +2026-05-14T21:16:14+08:00 +2026/05/14 21:16:14.411, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.87, 64 +2026-05-14T21:16:19+08:00 +2026/05/14 21:16:19.450, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.63, 66 +2026-05-14T21:16:24+08:00 +2026/05/14 21:16:24.473, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.72, 65 +2026-05-14T21:16:29+08:00 +2026/05/14 21:16:29.497, NVIDIA GeForce RTX 5090, 81, 36, 9607, 32607, 257.81, 63 +2026-05-14T21:16:34+08:00 +2026/05/14 21:16:34.574, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.39, 65 +2026-05-14T21:16:39+08:00 +2026/05/14 21:16:39.598, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.61, 65 +2026-05-14T21:16:44+08:00 +2026/05/14 21:16:44.621, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.13, 65 +2026-05-14T21:16:49+08:00 +2026/05/14 21:16:49.663, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.69, 66 +2026-05-14T21:16:54+08:00 +2026/05/14 21:16:54.689, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.53, 65 +2026-05-14T21:16:59+08:00 +2026/05/14 21:16:59.712, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.35, 66 +2026-05-14T21:17:04+08:00 +2026/05/14 21:17:04.757, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.49, 65 +2026-05-14T21:17:09+08:00 +2026/05/14 21:17:09.780, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.44, 65 +2026-05-14T21:17:14+08:00 +2026/05/14 21:17:14.809, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.98, 65 +2026-05-14T21:17:19+08:00 +2026/05/14 21:17:19.833, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.67, 65 +2026-05-14T21:17:24+08:00 +2026/05/14 21:17:24.859, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.68, 65 +2026-05-14T21:17:29+08:00 +2026/05/14 21:17:29.883, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.43, 65 +2026-05-14T21:17:34+08:00 +2026/05/14 21:17:34.912, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.12, 65 +2026-05-14T21:17:39+08:00 +2026/05/14 21:17:39.935, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.20, 65 +2026-05-14T21:17:44+08:00 +2026/05/14 21:17:44.958, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 262.56, 63 +2026-05-14T21:17:49+08:00 +2026/05/14 21:17:49.980, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.84, 65 +2026-05-14T21:17:54+08:00 +2026/05/14 21:17:55.004, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.28, 65 +2026-05-14T21:18:00+08:00 +2026/05/14 21:18:00.027, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.54, 66 +2026-05-14T21:18:05+08:00 +2026/05/14 21:18:05.053, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.11, 65 +2026-05-14T21:18:10+08:00 +2026/05/14 21:18:10.076, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.81, 65 +2026-05-14T21:18:15+08:00 +2026/05/14 21:18:15.100, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.69, 65 +2026-05-14T21:18:20+08:00 +2026/05/14 21:18:20.122, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.92, 65 +2026-05-14T21:18:25+08:00 +2026/05/14 21:18:25.145, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.61, 65 +2026-05-14T21:18:30+08:00 +2026/05/14 21:18:30.171, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.31, 64 +2026-05-14T21:18:35+08:00 +2026/05/14 21:18:35.194, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.23, 64 +2026-05-14T21:18:40+08:00 +2026/05/14 21:18:40.217, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.17, 64 +2026-05-14T21:18:45+08:00 +2026/05/14 21:18:45.245, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.28, 64 +2026-05-14T21:18:50+08:00 +2026/05/14 21:18:50.269, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.58, 65 +2026-05-14T21:18:55+08:00 +2026/05/14 21:18:55.292, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.61, 64 +2026-05-14T21:19:00+08:00 +2026/05/14 21:19:00.316, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 292.33, 65 +2026-05-14T21:19:05+08:00 +2026/05/14 21:19:05.338, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.95, 66 +2026-05-14T21:19:10+08:00 +2026/05/14 21:19:10.362, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.86, 65 +2026-05-14T21:19:15+08:00 +2026/05/14 21:19:15.385, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.26, 65 +2026-05-14T21:19:20+08:00 +2026/05/14 21:19:20.408, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.19, 65 +2026-05-14T21:19:25+08:00 +2026/05/14 21:19:25.430, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.63, 65 +2026-05-14T21:19:30+08:00 +2026/05/14 21:19:30.454, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.66, 66 +2026-05-14T21:19:35+08:00 +2026/05/14 21:19:35.478, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.99, 66 +2026-05-14T21:19:40+08:00 +2026/05/14 21:19:40.501, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 247.21, 64 +2026-05-14T21:19:45+08:00 +2026/05/14 21:19:45.539, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.26, 65 +2026-05-14T21:19:50+08:00 +2026/05/14 21:19:50.564, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 364.71, 66 +2026-05-14T21:19:55+08:00 +2026/05/14 21:19:55.587, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.97, 66 +2026-05-14T21:20:00+08:00 +2026/05/14 21:20:00.611, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.59, 66 +2026-05-14T21:20:05+08:00 +2026/05/14 21:20:05.637, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 220.84, 64 +2026-05-14T21:20:10+08:00 +2026/05/14 21:20:10.665, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.83, 66 +2026-05-14T21:20:15+08:00 +2026/05/14 21:20:15.689, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 366.16, 65 +2026-05-14T21:20:20+08:00 +2026/05/14 21:20:20.716, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 266.82, 65 +2026-05-14T21:20:25+08:00 +2026/05/14 21:20:25.740, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.41, 64 +2026-05-14T21:20:30+08:00 +2026/05/14 21:20:30.764, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.90, 65 +2026-05-14T21:20:35+08:00 +2026/05/14 21:20:35.788, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.92, 66 +2026-05-14T21:20:40+08:00 +2026/05/14 21:20:40.811, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.13, 66 +2026-05-14T21:20:45+08:00 +2026/05/14 21:20:45.835, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.35, 65 +2026-05-14T21:20:50+08:00 +2026/05/14 21:20:50.858, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 357.81, 66 +2026-05-14T21:20:55+08:00 +2026/05/14 21:20:55.882, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.92, 64 +2026-05-14T21:21:00+08:00 +2026/05/14 21:21:00.905, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.90, 65 +2026-05-14T21:21:05+08:00 +2026/05/14 21:21:05.929, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 356.39, 65 +2026-05-14T21:21:10+08:00 +2026/05/14 21:21:10.954, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.18, 65 +2026-05-14T21:21:15+08:00 +2026/05/14 21:21:15.978, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.49, 66 +2026-05-14T21:21:20+08:00 +2026/05/14 21:21:21.001, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.93, 65 +2026-05-14T21:21:26+08:00 +2026/05/14 21:21:26.023, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.01, 64 +2026-05-14T21:21:31+08:00 +2026/05/14 21:21:31.046, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.04, 65 +2026-05-14T21:21:36+08:00 +2026/05/14 21:21:36.070, NVIDIA GeForce RTX 5090, 40, 21, 9607, 32607, 262.52, 63 +2026-05-14T21:21:41+08:00 +2026/05/14 21:21:41.111, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 364.30, 66 +2026-05-14T21:21:46+08:00 +2026/05/14 21:21:46.167, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.77, 65 +2026-05-14T21:21:51+08:00 +2026/05/14 21:21:51.225, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.22, 66 +2026-05-14T21:21:56+08:00 +2026/05/14 21:21:56.249, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.63, 65 +2026-05-14T21:22:01+08:00 +2026/05/14 21:22:01.273, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.24, 65 +2026-05-14T21:22:06+08:00 +2026/05/14 21:22:06.315, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.77, 65 +2026-05-14T21:22:11+08:00 +2026/05/14 21:22:11.338, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 364.42, 65 +2026-05-14T21:22:16+08:00 +2026/05/14 21:22:16.362, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.90, 65 +2026-05-14T21:22:21+08:00 +2026/05/14 21:22:21.387, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.14, 65 +2026-05-14T21:22:26+08:00 +2026/05/14 21:22:26.410, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 361.37, 65 +2026-05-14T21:22:31+08:00 +2026/05/14 21:22:31.432, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.23, 65 +2026-05-14T21:22:36+08:00 +2026/05/14 21:22:36.456, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.83, 64 +2026-05-14T21:22:41+08:00 +2026/05/14 21:22:41.479, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.63, 65 +2026-05-14T21:22:46+08:00 +2026/05/14 21:22:46.504, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.18, 65 +2026-05-14T21:22:51+08:00 +2026/05/14 21:22:51.528, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.25, 64 +2026-05-14T21:22:56+08:00 +2026/05/14 21:22:56.552, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.21, 65 +2026-05-14T21:23:01+08:00 +2026/05/14 21:23:01.574, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.23, 65 +2026-05-14T21:23:06+08:00 +2026/05/14 21:23:06.598, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.89, 65 +2026-05-14T21:23:11+08:00 +2026/05/14 21:23:11.621, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.97, 63 +2026-05-14T21:23:16+08:00 +2026/05/14 21:23:16.645, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.09, 66 +2026-05-14T21:23:21+08:00 +2026/05/14 21:23:21.671, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.78, 65 +2026-05-14T21:23:26+08:00 +2026/05/14 21:23:26.697, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.97, 65 +2026-05-14T21:23:31+08:00 +2026/05/14 21:23:31.720, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.38, 65 +2026-05-14T21:23:36+08:00 +2026/05/14 21:23:36.745, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.05, 65 +2026-05-14T21:23:41+08:00 +2026/05/14 21:23:41.769, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.34, 65 +2026-05-14T21:23:46+08:00 +2026/05/14 21:23:46.792, NVIDIA GeForce RTX 5090, 49, 17, 9607, 32607, 236.68, 58 +2026-05-14T21:23:51+08:00 +2026/05/14 21:23:51.816, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.19, 65 +2026-05-14T21:23:56+08:00 +2026/05/14 21:23:56.841, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.51, 66 +2026-05-14T21:24:01+08:00 +2026/05/14 21:24:01.864, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.25, 66 +2026-05-14T21:24:06+08:00 +2026/05/14 21:24:06.888, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 363.89, 66 +2026-05-14T21:24:11+08:00 +2026/05/14 21:24:11.911, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.79, 65 +2026-05-14T21:24:16+08:00 +2026/05/14 21:24:16.935, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.72, 65 +2026-05-14T21:24:21+08:00 +2026/05/14 21:24:21.958, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.84, 65 +2026-05-14T21:24:26+08:00 +2026/05/14 21:24:26.981, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.51, 65 +2026-05-14T21:24:31+08:00 +2026/05/14 21:24:32.004, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.42, 65 +2026-05-14T21:24:37+08:00 +2026/05/14 21:24:37.026, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 65 +2026-05-14T21:24:42+08:00 +2026/05/14 21:24:42.052, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.87, 65 +2026-05-14T21:24:47+08:00 +2026/05/14 21:24:47.075, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.20, 65 +2026-05-14T21:24:52+08:00 +2026/05/14 21:24:52.099, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.37, 65 +2026-05-14T21:24:57+08:00 +2026/05/14 21:24:57.123, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.77, 65 +2026-05-14T21:25:02+08:00 +2026/05/14 21:25:02.146, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.31, 65 +2026-05-14T21:25:07+08:00 +2026/05/14 21:25:07.172, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.96, 66 +2026-05-14T21:25:12+08:00 +2026/05/14 21:25:12.197, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.99, 65 +2026-05-14T21:25:17+08:00 +2026/05/14 21:25:17.222, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.30, 66 +2026-05-14T21:25:22+08:00 +2026/05/14 21:25:22.244, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 314.78, 65 +2026-05-14T21:25:27+08:00 +2026/05/14 21:25:27.268, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.90, 63 +2026-05-14T21:25:32+08:00 +2026/05/14 21:25:32.292, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.67, 64 +2026-05-14T21:25:37+08:00 +2026/05/14 21:25:37.316, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.52, 64 +2026-05-14T21:25:42+08:00 +2026/05/14 21:25:42.342, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.94, 64 +2026-05-14T21:25:47+08:00 +2026/05/14 21:25:47.366, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 363.99, 66 +2026-05-14T21:25:52+08:00 +2026/05/14 21:25:52.390, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 364.17, 66 +2026-05-14T21:25:57+08:00 +2026/05/14 21:25:57.415, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 364.61, 65 +2026-05-14T21:26:02+08:00 +2026/05/14 21:26:02.438, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 248.43, 62 +2026-05-14T21:26:07+08:00 +2026/05/14 21:26:07.462, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.29, 64 +2026-05-14T21:26:12+08:00 +2026/05/14 21:26:12.484, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.96, 64 +2026-05-14T21:26:17+08:00 +2026/05/14 21:26:17.510, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.89, 64 +2026-05-14T21:26:22+08:00 +2026/05/14 21:26:22.537, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 354.17, 66 +2026-05-14T21:26:27+08:00 +2026/05/14 21:26:27.562, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.14, 65 +2026-05-14T21:26:32+08:00 +2026/05/14 21:26:32.585, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.41, 66 +2026-05-14T21:26:37+08:00 +2026/05/14 21:26:37.609, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.06, 66 +2026-05-14T21:26:42+08:00 +2026/05/14 21:26:42.632, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.98, 65 +2026-05-14T21:26:47+08:00 +2026/05/14 21:26:47.655, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.91, 65 +2026-05-14T21:26:52+08:00 +2026/05/14 21:26:52.678, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.85, 65 +2026-05-14T21:26:57+08:00 +2026/05/14 21:26:57.706, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.73, 65 +2026-05-14T21:27:02+08:00 +2026/05/14 21:27:02.764, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.42, 65 +2026-05-14T21:27:07+08:00 +2026/05/14 21:27:07.787, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.77, 65 +2026-05-14T21:27:12+08:00 +2026/05/14 21:27:12.813, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.34, 65 +2026-05-14T21:27:17+08:00 +2026/05/14 21:27:17.835, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.24, 65 +2026-05-14T21:27:22+08:00 +2026/05/14 21:27:22.860, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.65, 65 +2026-05-14T21:27:27+08:00 +2026/05/14 21:27:27.882, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.85, 66 +2026-05-14T21:27:32+08:00 +2026/05/14 21:27:32.906, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.72, 65 +2026-05-14T21:27:37+08:00 +2026/05/14 21:27:37.932, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.36, 65 +2026-05-14T21:27:42+08:00 +2026/05/14 21:27:42.956, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.49, 66 +2026-05-14T21:27:47+08:00 +2026/05/14 21:27:47.981, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.09, 66 +2026-05-14T21:27:52+08:00 +2026/05/14 21:27:53.005, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.95, 66 +2026-05-14T21:27:58+08:00 +2026/05/14 21:27:58.033, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.63, 64 +2026-05-14T21:28:03+08:00 +2026/05/14 21:28:03.077, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.74, 64 +2026-05-14T21:28:08+08:00 +2026/05/14 21:28:08.101, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.92, 65 +2026-05-14T21:28:13+08:00 +2026/05/14 21:28:13.144, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 331.47, 61 +2026-05-14T21:28:18+08:00 +2026/05/14 21:28:18.205, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.43, 66 +2026-05-14T21:28:23+08:00 +2026/05/14 21:28:23.230, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.06, 66 +2026-05-14T21:28:28+08:00 +2026/05/14 21:28:28.303, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.80, 65 +2026-05-14T21:28:33+08:00 +2026/05/14 21:28:33.328, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.68, 65 +2026-05-14T21:28:38+08:00 +2026/05/14 21:28:38.351, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.83, 66 +2026-05-14T21:28:43+08:00 +2026/05/14 21:28:43.376, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.05, 66 +2026-05-14T21:28:48+08:00 +2026/05/14 21:28:48.403, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.49, 66 +2026-05-14T21:28:53+08:00 +2026/05/14 21:28:53.427, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.11, 65 +2026-05-14T21:28:58+08:00 +2026/05/14 21:28:58.450, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.69, 65 +2026-05-14T21:29:03+08:00 +2026/05/14 21:29:03.474, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.56, 65 +2026-05-14T21:29:08+08:00 +2026/05/14 21:29:08.497, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.11, 65 +2026-05-14T21:29:13+08:00 +2026/05/14 21:29:13.519, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.87, 65 +2026-05-14T21:29:18+08:00 +2026/05/14 21:29:18.541, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 261.16, 65 +2026-05-14T21:29:23+08:00 +2026/05/14 21:29:23.567, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.96, 64 +2026-05-14T21:29:28+08:00 +2026/05/14 21:29:28.590, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.19, 65 +2026-05-14T21:29:33+08:00 +2026/05/14 21:29:33.615, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.36, 66 +2026-05-14T21:29:38+08:00 +2026/05/14 21:29:38.637, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.11, 65 +2026-05-14T21:29:43+08:00 +2026/05/14 21:29:43.661, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.89, 65 +2026-05-14T21:29:48+08:00 +2026/05/14 21:29:48.683, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 364.86, 64 +2026-05-14T21:29:53+08:00 +2026/05/14 21:29:53.705, NVIDIA GeForce RTX 5090, 1, 0, 9607, 32607, 331.55, 60 +2026-05-14T21:29:58+08:00 +2026/05/14 21:29:58.728, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.61, 65 +2026-05-14T21:30:03+08:00 +2026/05/14 21:30:03.773, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.61, 64 +2026-05-14T21:30:08+08:00 +2026/05/14 21:30:08.798, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.74, 65 +2026-05-14T21:30:13+08:00 +2026/05/14 21:30:13.821, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.45, 66 +2026-05-14T21:30:18+08:00 +2026/05/14 21:30:18.845, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.39, 65 +2026-05-14T21:30:23+08:00 +2026/05/14 21:30:23.868, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.38, 65 +2026-05-14T21:30:28+08:00 +2026/05/14 21:30:28.891, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.05, 65 +2026-05-14T21:30:33+08:00 +2026/05/14 21:30:33.915, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.51, 66 +2026-05-14T21:30:38+08:00 +2026/05/14 21:30:38.939, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.65, 65 +2026-05-14T21:30:43+08:00 +2026/05/14 21:30:43.960, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.16, 66 +2026-05-14T21:30:48+08:00 +2026/05/14 21:30:48.984, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.36, 65 +2026-05-14T21:30:53+08:00 +2026/05/14 21:30:54.011, NVIDIA GeForce RTX 5090, 53, 26, 9607, 32607, 355.62, 64 +2026-05-14T21:30:59+08:00 +2026/05/14 21:30:59.039, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.49, 65 +2026-05-14T21:31:04+08:00 +2026/05/14 21:31:04.063, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.50, 65 +2026-05-14T21:31:09+08:00 +2026/05/14 21:31:09.091, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.64, 65 +2026-05-14T21:31:14+08:00 +2026/05/14 21:31:14.116, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.64, 65 +2026-05-14T21:31:19+08:00 +2026/05/14 21:31:19.140, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.25, 66 +2026-05-14T21:31:24+08:00 +2026/05/14 21:31:24.164, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.86, 65 +2026-05-14T21:31:29+08:00 +2026/05/14 21:31:29.191, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.16, 66 +2026-05-14T21:31:34+08:00 +2026/05/14 21:31:34.216, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.98, 65 +2026-05-14T21:31:39+08:00 +2026/05/14 21:31:39.240, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.91, 66 +2026-05-14T21:31:44+08:00 +2026/05/14 21:31:44.264, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.00, 66 +2026-05-14T21:31:49+08:00 +2026/05/14 21:31:49.286, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 311.45, 64 +2026-05-14T21:31:54+08:00 +2026/05/14 21:31:54.310, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.66, 64 +2026-05-14T21:31:59+08:00 +2026/05/14 21:31:59.335, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.87, 64 +2026-05-14T21:32:04+08:00 +2026/05/14 21:32:04.386, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.70, 64 +2026-05-14T21:32:09+08:00 +2026/05/14 21:32:09.415, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.09, 64 +2026-05-14T21:32:14+08:00 +2026/05/14 21:32:14.438, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.22, 64 +2026-05-14T21:32:19+08:00 +2026/05/14 21:32:19.479, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.49, 66 +2026-05-14T21:32:24+08:00 +2026/05/14 21:32:24.502, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.37, 66 +2026-05-14T21:32:29+08:00 +2026/05/14 21:32:29.526, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.91, 66 +2026-05-14T21:32:34+08:00 +2026/05/14 21:32:34.549, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.90, 66 +2026-05-14T21:32:39+08:00 +2026/05/14 21:32:39.572, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.59, 66 +2026-05-14T21:32:44+08:00 +2026/05/14 21:32:44.596, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.02, 66 +2026-05-14T21:32:49+08:00 +2026/05/14 21:32:49.619, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.87, 66 +2026-05-14T21:32:54+08:00 +2026/05/14 21:32:54.644, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.50, 65 +2026-05-14T21:32:59+08:00 +2026/05/14 21:32:59.668, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.73, 65 +2026-05-14T21:33:04+08:00 +2026/05/14 21:33:04.691, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.05, 65 +2026-05-14T21:33:09+08:00 +2026/05/14 21:33:09.713, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.52, 66 +2026-05-14T21:33:14+08:00 +2026/05/14 21:33:14.736, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 353.82, 63 +2026-05-14T21:33:19+08:00 +2026/05/14 21:33:19.758, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.71, 65 +2026-05-14T21:33:24+08:00 +2026/05/14 21:33:24.780, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 363.67, 65 +2026-05-14T21:33:29+08:00 +2026/05/14 21:33:29.804, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.46, 65 +2026-05-14T21:33:34+08:00 +2026/05/14 21:33:34.826, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.83, 64 +2026-05-14T21:33:39+08:00 +2026/05/14 21:33:39.855, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.92, 65 +2026-05-14T21:33:44+08:00 +2026/05/14 21:33:44.879, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.72, 65 +2026-05-14T21:33:49+08:00 +2026/05/14 21:33:49.903, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.44, 65 +2026-05-14T21:33:54+08:00 +2026/05/14 21:33:54.926, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.38, 65 +2026-05-14T21:33:59+08:00 +2026/05/14 21:33:59.951, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.61, 65 +2026-05-14T21:34:04+08:00 +2026/05/14 21:34:04.974, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.37, 65 +2026-05-14T21:34:09+08:00 +2026/05/14 21:34:09.999, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.85, 65 +2026-05-14T21:34:15+08:00 +2026/05/14 21:34:15.022, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.77, 65 +2026-05-14T21:34:20+08:00 +2026/05/14 21:34:20.047, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.57, 66 +2026-05-14T21:34:25+08:00 +2026/05/14 21:34:25.071, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.73, 66 +2026-05-14T21:34:30+08:00 +2026/05/14 21:34:30.094, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.01, 66 +2026-05-14T21:34:35+08:00 +2026/05/14 21:34:35.118, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.75, 65 +2026-05-14T21:34:40+08:00 +2026/05/14 21:34:40.141, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.91, 66 +2026-05-14T21:34:45+08:00 +2026/05/14 21:34:45.164, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.88, 65 +2026-05-14T21:34:50+08:00 +2026/05/14 21:34:50.188, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.87, 66 +2026-05-14T21:34:55+08:00 +2026/05/14 21:34:55.212, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.94, 65 +2026-05-14T21:35:00+08:00 +2026/05/14 21:35:00.237, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.25, 65 +2026-05-14T21:35:05+08:00 +2026/05/14 21:35:05.261, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 227.02, 65 +2026-05-14T21:35:10+08:00 +2026/05/14 21:35:10.285, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.08, 65 +2026-05-14T21:35:15+08:00 +2026/05/14 21:35:15.308, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.67, 65 +2026-05-14T21:35:20+08:00 +2026/05/14 21:35:20.331, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.00, 65 +2026-05-14T21:35:25+08:00 +2026/05/14 21:35:25.356, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.56, 65 +2026-05-14T21:35:30+08:00 +2026/05/14 21:35:30.378, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.48, 64 +2026-05-14T21:35:35+08:00 +2026/05/14 21:35:35.404, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.25, 65 +2026-05-14T21:35:40+08:00 +2026/05/14 21:35:40.428, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.78, 65 +2026-05-14T21:35:45+08:00 +2026/05/14 21:35:45.452, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.84, 65 +2026-05-14T21:35:50+08:00 +2026/05/14 21:35:50.476, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.73, 65 +2026-05-14T21:35:55+08:00 +2026/05/14 21:35:55.502, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.29, 66 +2026-05-14T21:36:00+08:00 +2026/05/14 21:36:00.526, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 366.42, 66 +2026-05-14T21:36:05+08:00 +2026/05/14 21:36:05.548, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.96, 65 +2026-05-14T21:36:10+08:00 +2026/05/14 21:36:10.572, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.61, 65 +2026-05-14T21:36:15+08:00 +2026/05/14 21:36:15.594, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.03, 65 +2026-05-14T21:36:20+08:00 +2026/05/14 21:36:20.621, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.86, 66 +2026-05-14T21:36:25+08:00 +2026/05/14 21:36:25.646, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 354.68, 65 +2026-05-14T21:36:30+08:00 +2026/05/14 21:36:30.671, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.36, 65 +2026-05-14T21:36:35+08:00 +2026/05/14 21:36:35.694, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.90, 66 +2026-05-14T21:36:40+08:00 +2026/05/14 21:36:40.719, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 365.10, 66 +2026-05-14T21:36:45+08:00 +2026/05/14 21:36:45.743, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.14, 65 +2026-05-14T21:36:50+08:00 +2026/05/14 21:36:50.770, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.39, 65 +2026-05-14T21:36:55+08:00 +2026/05/14 21:36:55.793, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.93, 65 +2026-05-14T21:37:00+08:00 +2026/05/14 21:37:00.823, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.63, 65 +2026-05-14T21:37:05+08:00 +2026/05/14 21:37:05.846, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.83, 65 +2026-05-14T21:37:10+08:00 +2026/05/14 21:37:10.869, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.53, 65 +2026-05-14T21:37:15+08:00 +2026/05/14 21:37:15.893, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.62, 64 +2026-05-14T21:37:20+08:00 +2026/05/14 21:37:20.916, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.09, 65 +2026-05-14T21:37:25+08:00 +2026/05/14 21:37:25.939, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.48, 66 +2026-05-14T21:37:30+08:00 +2026/05/14 21:37:30.962, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.19, 64 +2026-05-14T21:37:35+08:00 +2026/05/14 21:37:35.984, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.75, 66 +2026-05-14T21:37:40+08:00 +2026/05/14 21:37:41.007, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.49, 66 +2026-05-14T21:37:46+08:00 +2026/05/14 21:37:46.031, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.71, 64 +2026-05-14T21:37:51+08:00 +2026/05/14 21:37:51.056, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.29, 65 +2026-05-14T21:37:56+08:00 +2026/05/14 21:37:56.083, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.91, 65 +2026-05-14T21:38:01+08:00 +2026/05/14 21:38:01.123, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.21, 64 +2026-05-14T21:38:06+08:00 +2026/05/14 21:38:06.150, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.19, 65 +2026-05-14T21:38:11+08:00 +2026/05/14 21:38:11.174, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.04, 66 +2026-05-14T21:38:16+08:00 +2026/05/14 21:38:16.197, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.05, 66 +2026-05-14T21:38:21+08:00 +2026/05/14 21:38:21.221, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.61, 64 +2026-05-14T21:38:26+08:00 +2026/05/14 21:38:26.245, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.86, 66 +2026-05-14T21:38:31+08:00 +2026/05/14 21:38:31.269, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.74, 66 +2026-05-14T21:38:36+08:00 +2026/05/14 21:38:36.292, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.53, 64 +2026-05-14T21:38:41+08:00 +2026/05/14 21:38:41.316, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.64, 65 +2026-05-14T21:38:46+08:00 +2026/05/14 21:38:46.339, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.08, 65 +2026-05-14T21:38:51+08:00 +2026/05/14 21:38:51.381, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.82, 63 +2026-05-14T21:38:56+08:00 +2026/05/14 21:38:56.433, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 363.61, 65 +2026-05-14T21:39:01+08:00 +2026/05/14 21:39:01.459, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 359.98, 65 +2026-05-14T21:39:06+08:00 +2026/05/14 21:39:06.501, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.37, 66 +2026-05-14T21:39:11+08:00 +2026/05/14 21:39:11.543, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.31, 64 +2026-05-14T21:39:16+08:00 +2026/05/14 21:39:16.568, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.90, 64 +2026-05-14T21:39:21+08:00 +2026/05/14 21:39:21.592, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.10, 65 +2026-05-14T21:39:26+08:00 +2026/05/14 21:39:26.635, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.01, 65 +2026-05-14T21:39:31+08:00 +2026/05/14 21:39:31.675, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.10, 65 +2026-05-14T21:39:36+08:00 +2026/05/14 21:39:36.718, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.93, 65 +2026-05-14T21:39:41+08:00 +2026/05/14 21:39:41.758, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.77, 65 +2026-05-14T21:39:46+08:00 +2026/05/14 21:39:46.780, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.94, 65 +2026-05-14T21:39:51+08:00 +2026/05/14 21:39:51.804, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.59, 65 +2026-05-14T21:39:56+08:00 +2026/05/14 21:39:56.886, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.08, 65 +2026-05-14T21:40:01+08:00 +2026/05/14 21:40:01.908, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.96, 65 +2026-05-14T21:40:06+08:00 +2026/05/14 21:40:06.932, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.52, 65 +2026-05-14T21:40:11+08:00 +2026/05/14 21:40:11.972, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.19, 65 +2026-05-14T21:40:16+08:00 +2026/05/14 21:40:16.995, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.93, 65 +2026-05-14T21:40:22+08:00 +2026/05/14 21:40:22.020, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 222.72, 63 +2026-05-14T21:40:27+08:00 +2026/05/14 21:40:27.045, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.98, 64 +2026-05-14T21:40:32+08:00 +2026/05/14 21:40:32.066, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.02, 65 +2026-05-14T21:40:37+08:00 +2026/05/14 21:40:37.089, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.24, 65 +2026-05-14T21:40:42+08:00 +2026/05/14 21:40:42.110, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.09, 64 +2026-05-14T21:40:47+08:00 +2026/05/14 21:40:47.136, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.95, 64 +2026-05-14T21:40:52+08:00 +2026/05/14 21:40:52.158, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.85, 64 +2026-05-14T21:40:57+08:00 +2026/05/14 21:40:57.181, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.50, 65 +2026-05-14T21:41:02+08:00 +2026/05/14 21:41:02.205, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.38, 65 +2026-05-14T21:41:07+08:00 +2026/05/14 21:41:07.228, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.45, 65 +2026-05-14T21:41:12+08:00 +2026/05/14 21:41:12.250, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.71, 65 +2026-05-14T21:41:17+08:00 +2026/05/14 21:41:17.272, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.64, 66 +2026-05-14T21:41:22+08:00 +2026/05/14 21:41:22.296, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.23, 65 +2026-05-14T21:41:27+08:00 +2026/05/14 21:41:27.319, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.99, 65 +2026-05-14T21:41:32+08:00 +2026/05/14 21:41:32.343, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 299.86, 59 +2026-05-14T21:41:37+08:00 +2026/05/14 21:41:37.364, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.24, 65 +2026-05-14T21:41:42+08:00 +2026/05/14 21:41:42.391, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.67, 66 +2026-05-14T21:41:47+08:00 +2026/05/14 21:41:47.415, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 366.78, 66 +2026-05-14T21:41:52+08:00 +2026/05/14 21:41:52.438, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.58, 65 +2026-05-14T21:41:57+08:00 +2026/05/14 21:41:57.462, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.18, 65 +2026-05-14T21:42:02+08:00 +2026/05/14 21:42:02.486, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.18, 65 +2026-05-14T21:42:07+08:00 +2026/05/14 21:42:07.509, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.24, 65 +2026-05-14T21:42:12+08:00 +2026/05/14 21:42:12.533, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.47, 65 +2026-05-14T21:42:17+08:00 +2026/05/14 21:42:17.559, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.64, 64 +2026-05-14T21:42:22+08:00 +2026/05/14 21:42:22.583, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.20, 65 +2026-05-14T21:42:27+08:00 +2026/05/14 21:42:27.609, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.11, 65 +2026-05-14T21:42:32+08:00 +2026/05/14 21:42:32.632, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.39, 66 +2026-05-14T21:42:37+08:00 +2026/05/14 21:42:37.655, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 366.71, 65 +2026-05-14T21:42:42+08:00 +2026/05/14 21:42:42.680, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.61, 65 +2026-05-14T21:42:47+08:00 +2026/05/14 21:42:47.705, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 367.13, 66 +2026-05-14T21:42:52+08:00 +2026/05/14 21:42:52.729, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.45, 66 +2026-05-14T21:42:57+08:00 +2026/05/14 21:42:57.753, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.14, 65 +2026-05-14T21:43:02+08:00 +2026/05/14 21:43:02.776, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.62, 65 +2026-05-14T21:43:07+08:00 +2026/05/14 21:43:07.800, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.32, 64 +2026-05-14T21:43:12+08:00 +2026/05/14 21:43:12.826, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.91, 65 +2026-05-14T21:43:17+08:00 +2026/05/14 21:43:17.850, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.35, 66 +2026-05-14T21:43:22+08:00 +2026/05/14 21:43:22.873, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.10, 66 +2026-05-14T21:43:27+08:00 +2026/05/14 21:43:27.896, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.40, 66 +2026-05-14T21:43:32+08:00 +2026/05/14 21:43:32.919, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.15, 66 +2026-05-14T21:43:37+08:00 +2026/05/14 21:43:37.944, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.69, 65 +2026-05-14T21:43:42+08:00 +2026/05/14 21:43:42.967, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 367.52, 66 +2026-05-14T21:43:47+08:00 +2026/05/14 21:43:47.990, NVIDIA GeForce RTX 5090, 88, 39, 9607, 32607, 366.25, 66 +2026-05-14T21:43:52+08:00 +2026/05/14 21:43:53.013, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.51, 64 +2026-05-14T21:43:58+08:00 +2026/05/14 21:43:58.040, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.29, 65 +2026-05-14T21:44:03+08:00 +2026/05/14 21:44:03.063, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.50, 65 +2026-05-14T21:44:08+08:00 +2026/05/14 21:44:08.087, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.97, 65 +2026-05-14T21:44:13+08:00 +2026/05/14 21:44:13.110, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.00, 65 +2026-05-14T21:44:18+08:00 +2026/05/14 21:44:18.135, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 367.69, 66 +2026-05-14T21:44:23+08:00 +2026/05/14 21:44:23.161, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.42, 66 +2026-05-14T21:44:28+08:00 +2026/05/14 21:44:28.182, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.80, 66 +2026-05-14T21:44:33+08:00 +2026/05/14 21:44:33.213, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 64 +2026-05-14T21:44:38+08:00 +2026/05/14 21:44:38.235, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.92, 65 +2026-05-14T21:44:43+08:00 +2026/05/14 21:44:43.259, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.65, 63 +2026-05-14T21:44:48+08:00 +2026/05/14 21:44:48.282, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.12, 67 +2026-05-14T21:44:53+08:00 +2026/05/14 21:44:53.307, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.22, 65 +2026-05-14T21:44:58+08:00 +2026/05/14 21:44:58.331, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.09, 65 +2026-05-14T21:45:03+08:00 +2026/05/14 21:45:03.356, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 366.46, 65 +2026-05-14T21:45:08+08:00 +2026/05/14 21:45:08.381, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.55, 66 +2026-05-14T21:45:13+08:00 +2026/05/14 21:45:13.407, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.05, 65 +2026-05-14T21:45:18+08:00 +2026/05/14 21:45:18.431, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.80, 66 +2026-05-14T21:45:23+08:00 +2026/05/14 21:45:23.457, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 356.83, 65 +2026-05-14T21:45:28+08:00 +2026/05/14 21:45:28.485, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.43, 65 +2026-05-14T21:45:33+08:00 +2026/05/14 21:45:33.506, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.09, 65 +2026-05-14T21:45:38+08:00 +2026/05/14 21:45:38.529, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.81, 66 +2026-05-14T21:45:43+08:00 +2026/05/14 21:45:43.553, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.86, 65 +2026-05-14T21:45:48+08:00 +2026/05/14 21:45:48.578, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.73, 64 +2026-05-14T21:45:53+08:00 +2026/05/14 21:45:53.619, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.83, 65 +2026-05-14T21:45:58+08:00 +2026/05/14 21:45:58.644, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.14, 66 +2026-05-14T21:46:03+08:00 +2026/05/14 21:46:03.668, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.63, 65 +2026-05-14T21:46:08+08:00 +2026/05/14 21:46:08.693, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.38, 65 +2026-05-14T21:46:13+08:00 +2026/05/14 21:46:13.717, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.49, 65 +2026-05-14T21:46:18+08:00 +2026/05/14 21:46:18.741, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.31, 65 +2026-05-14T21:46:23+08:00 +2026/05/14 21:46:23.764, NVIDIA GeForce RTX 5090, 64, 30, 9607, 32607, 221.83, 64 +2026-05-14T21:46:28+08:00 +2026/05/14 21:46:28.788, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.97, 66 +2026-05-14T21:46:33+08:00 +2026/05/14 21:46:33.812, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.27, 64 +2026-05-14T21:46:38+08:00 +2026/05/14 21:46:38.837, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.02, 64 +2026-05-14T21:46:43+08:00 +2026/05/14 21:46:43.861, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.44, 65 +2026-05-14T21:46:48+08:00 +2026/05/14 21:46:48.885, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.01, 66 +2026-05-14T21:46:53+08:00 +2026/05/14 21:46:53.909, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.80, 66 +2026-05-14T21:46:58+08:00 +2026/05/14 21:46:58.934, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 366.46, 66 +2026-05-14T21:47:03+08:00 +2026/05/14 21:47:03.960, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.27, 65 +2026-05-14T21:47:08+08:00 +2026/05/14 21:47:08.985, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.45, 66 +2026-05-14T21:47:13+08:00 +2026/05/14 21:47:14.012, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.70, 65 +2026-05-14T21:47:19+08:00 +2026/05/14 21:47:19.037, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.61, 65 +2026-05-14T21:47:24+08:00 +2026/05/14 21:47:24.060, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 65 +2026-05-14T21:47:29+08:00 +2026/05/14 21:47:29.086, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.92, 66 +2026-05-14T21:47:34+08:00 +2026/05/14 21:47:34.109, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.72, 66 +2026-05-14T21:47:39+08:00 +2026/05/14 21:47:39.132, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.01, 65 +2026-05-14T21:47:44+08:00 +2026/05/14 21:47:44.158, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.11, 65 +2026-05-14T21:47:49+08:00 +2026/05/14 21:47:49.181, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.67, 65 +2026-05-14T21:47:54+08:00 +2026/05/14 21:47:54.208, NVIDIA GeForce RTX 5090, 71, 27, 9607, 32607, 258.36, 65 +2026-05-14T21:47:59+08:00 +2026/05/14 21:47:59.231, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.62, 65 +2026-05-14T21:48:04+08:00 +2026/05/14 21:48:04.254, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.90, 65 +2026-05-14T21:48:09+08:00 +2026/05/14 21:48:09.278, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.70, 66 +2026-05-14T21:48:14+08:00 +2026/05/14 21:48:14.304, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 352.81, 65 +2026-05-14T21:48:19+08:00 +2026/05/14 21:48:19.328, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.57, 66 +2026-05-14T21:48:24+08:00 +2026/05/14 21:48:24.352, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.39, 65 +2026-05-14T21:48:29+08:00 +2026/05/14 21:48:29.376, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.09, 65 +2026-05-14T21:48:34+08:00 +2026/05/14 21:48:34.400, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.47, 65 +2026-05-14T21:48:39+08:00 +2026/05/14 21:48:39.426, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.64, 66 +2026-05-14T21:48:44+08:00 +2026/05/14 21:48:44.451, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.24, 66 +2026-05-14T21:48:49+08:00 +2026/05/14 21:48:49.475, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.03, 65 +2026-05-14T21:48:54+08:00 +2026/05/14 21:48:54.500, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 64 +2026-05-14T21:48:59+08:00 +2026/05/14 21:48:59.524, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.58, 65 +2026-05-14T21:49:04+08:00 +2026/05/14 21:49:04.551, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.23, 66 +2026-05-14T21:49:09+08:00 +2026/05/14 21:49:09.574, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.70, 64 +2026-05-14T21:49:14+08:00 +2026/05/14 21:49:14.599, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 65 +2026-05-14T21:49:19+08:00 +2026/05/14 21:49:19.623, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.09, 65 +2026-05-14T21:49:24+08:00 +2026/05/14 21:49:24.649, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.76, 64 +2026-05-14T21:49:29+08:00 +2026/05/14 21:49:29.674, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.42, 65 +2026-05-14T21:49:34+08:00 +2026/05/14 21:49:34.701, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.17, 65 +2026-05-14T21:49:39+08:00 +2026/05/14 21:49:39.725, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.67, 65 +2026-05-14T21:49:44+08:00 +2026/05/14 21:49:44.752, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.01, 64 +2026-05-14T21:49:49+08:00 +2026/05/14 21:49:49.776, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.08, 65 +2026-05-14T21:49:54+08:00 +2026/05/14 21:49:54.800, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 65 +2026-05-14T21:49:59+08:00 +2026/05/14 21:49:59.823, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.20, 66 +2026-05-14T21:50:04+08:00 +2026/05/14 21:50:04.846, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.97, 65 +2026-05-14T21:50:09+08:00 +2026/05/14 21:50:09.874, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.27, 66 +2026-05-14T21:50:14+08:00 +2026/05/14 21:50:14.898, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.09, 65 +2026-05-14T21:50:19+08:00 +2026/05/14 21:50:19.922, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.88, 65 +2026-05-14T21:50:24+08:00 +2026/05/14 21:50:24.947, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 264.93, 59 +2026-05-14T21:50:29+08:00 +2026/05/14 21:50:29.971, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.48, 65 +2026-05-14T21:50:34+08:00 +2026/05/14 21:50:34.994, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.41, 64 +2026-05-14T21:50:40+08:00 +2026/05/14 21:50:40.018, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.58, 64 +2026-05-14T21:50:45+08:00 +2026/05/14 21:50:45.046, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.38, 65 +2026-05-14T21:50:50+08:00 +2026/05/14 21:50:50.069, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.37, 65 +2026-05-14T21:50:55+08:00 +2026/05/14 21:50:55.096, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.43, 65 +2026-05-14T21:51:00+08:00 +2026/05/14 21:51:00.118, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.61, 64 +2026-05-14T21:51:05+08:00 +2026/05/14 21:51:05.142, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 306.63, 59 +2026-05-14T21:51:10+08:00 +2026/05/14 21:51:10.165, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.10, 64 +2026-05-14T21:51:15+08:00 +2026/05/14 21:51:15.188, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.75, 65 +2026-05-14T21:51:20+08:00 +2026/05/14 21:51:20.212, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.69, 65 +2026-05-14T21:51:25+08:00 +2026/05/14 21:51:25.235, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.35, 65 +2026-05-14T21:51:30+08:00 +2026/05/14 21:51:30.262, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.39, 64 +2026-05-14T21:51:35+08:00 +2026/05/14 21:51:35.287, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.32, 65 +2026-05-14T21:51:40+08:00 +2026/05/14 21:51:40.312, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.20, 65 +2026-05-14T21:51:45+08:00 +2026/05/14 21:51:45.337, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 364.49, 64 +2026-05-14T21:51:50+08:00 +2026/05/14 21:51:50.360, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.36, 65 +2026-05-14T21:51:55+08:00 +2026/05/14 21:51:55.387, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.39, 66 +2026-05-14T21:52:00+08:00 +2026/05/14 21:52:00.411, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 366.65, 65 +2026-05-14T21:52:05+08:00 +2026/05/14 21:52:05.433, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.09, 65 +2026-05-14T21:52:10+08:00 +2026/05/14 21:52:10.461, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.63, 64 +2026-05-14T21:52:15+08:00 +2026/05/14 21:52:15.485, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.34, 65 +2026-05-14T21:52:20+08:00 +2026/05/14 21:52:20.510, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 247.52, 65 +2026-05-14T21:52:25+08:00 +2026/05/14 21:52:25.533, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.16, 64 +2026-05-14T21:52:30+08:00 +2026/05/14 21:52:30.558, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.73, 65 +2026-05-14T21:52:35+08:00 +2026/05/14 21:52:35.585, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.55, 65 +2026-05-14T21:52:40+08:00 +2026/05/14 21:52:40.619, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.57, 65 +2026-05-14T21:52:45+08:00 +2026/05/14 21:52:45.642, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.26, 66 +2026-05-14T21:52:50+08:00 +2026/05/14 21:52:50.668, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.50, 65 +2026-05-14T21:52:55+08:00 +2026/05/14 21:52:55.693, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.85, 64 +2026-05-14T21:53:00+08:00 +2026/05/14 21:53:00.718, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 66 +2026-05-14T21:53:05+08:00 +2026/05/14 21:53:05.746, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.78, 65 +2026-05-14T21:53:10+08:00 +2026/05/14 21:53:10.770, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.37, 65 +2026-05-14T21:53:15+08:00 +2026/05/14 21:53:15.794, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.88, 66 +2026-05-14T21:53:20+08:00 +2026/05/14 21:53:20.818, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 362.57, 65 +2026-05-14T21:53:25+08:00 +2026/05/14 21:53:25.841, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.72, 65 +2026-05-14T21:53:30+08:00 +2026/05/14 21:53:30.864, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.44, 66 +2026-05-14T21:53:35+08:00 +2026/05/14 21:53:35.887, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 302.22, 59 +2026-05-14T21:53:40+08:00 +2026/05/14 21:53:40.908, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.83, 64 +2026-05-14T21:53:45+08:00 +2026/05/14 21:53:45.931, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.60, 65 +2026-05-14T21:53:50+08:00 +2026/05/14 21:53:50.962, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.57, 65 +2026-05-14T21:53:55+08:00 +2026/05/14 21:53:55.986, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 65 +2026-05-14T21:54:00+08:00 +2026/05/14 21:54:01.009, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.78, 65 +2026-05-14T21:54:06+08:00 +2026/05/14 21:54:06.033, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.77, 65 +2026-05-14T21:54:11+08:00 +2026/05/14 21:54:11.058, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.06, 65 +2026-05-14T21:54:16+08:00 +2026/05/14 21:54:16.083, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 363.85, 66 +2026-05-14T21:54:21+08:00 +2026/05/14 21:54:21.107, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.98, 65 +2026-05-14T21:54:26+08:00 +2026/05/14 21:54:26.129, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.44, 66 +2026-05-14T21:54:31+08:00 +2026/05/14 21:54:31.152, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.65, 65 +2026-05-14T21:54:36+08:00 +2026/05/14 21:54:36.177, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.84, 65 +2026-05-14T21:54:41+08:00 +2026/05/14 21:54:41.202, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.28, 64 +2026-05-14T21:54:46+08:00 +2026/05/14 21:54:46.230, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.58, 65 +2026-05-14T21:54:51+08:00 +2026/05/14 21:54:51.254, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 343.37, 61 +2026-05-14T21:54:56+08:00 +2026/05/14 21:54:56.278, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.13, 65 +2026-05-14T21:55:01+08:00 +2026/05/14 21:55:01.305, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.07, 66 +2026-05-14T21:55:06+08:00 +2026/05/14 21:55:06.329, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.75, 65 +2026-05-14T21:55:11+08:00 +2026/05/14 21:55:11.353, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 205.35, 64 +2026-05-14T21:55:16+08:00 +2026/05/14 21:55:16.376, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.08, 65 +2026-05-14T21:55:21+08:00 +2026/05/14 21:55:21.399, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.65, 66 +2026-05-14T21:55:26+08:00 +2026/05/14 21:55:26.423, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.15, 66 +2026-05-14T21:55:31+08:00 +2026/05/14 21:55:31.447, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 261.91, 65 +2026-05-14T21:55:36+08:00 +2026/05/14 21:55:36.469, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.19, 66 +2026-05-14T21:55:41+08:00 +2026/05/14 21:55:41.492, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.81, 64 +2026-05-14T21:55:46+08:00 +2026/05/14 21:55:46.516, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.47, 65 +2026-05-14T21:55:51+08:00 +2026/05/14 21:55:51.539, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.83, 65 +2026-05-14T21:55:56+08:00 +2026/05/14 21:55:56.563, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.63, 66 +2026-05-14T21:56:01+08:00 +2026/05/14 21:56:01.586, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.60, 65 +2026-05-14T21:56:06+08:00 +2026/05/14 21:56:06.614, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.99, 65 +2026-05-14T21:56:11+08:00 +2026/05/14 21:56:11.637, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.78, 64 +2026-05-14T21:56:16+08:00 +2026/05/14 21:56:16.660, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.42, 66 +2026-05-14T21:56:21+08:00 +2026/05/14 21:56:21.686, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.15, 65 +2026-05-14T21:56:26+08:00 +2026/05/14 21:56:26.709, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.68, 65 +2026-05-14T21:56:31+08:00 +2026/05/14 21:56:31.732, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.97, 65 +2026-05-14T21:56:36+08:00 +2026/05/14 21:56:36.756, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.06, 65 +2026-05-14T21:56:41+08:00 +2026/05/14 21:56:41.779, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.70, 65 +2026-05-14T21:56:46+08:00 +2026/05/14 21:56:46.803, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 222.90, 59 +2026-05-14T21:56:51+08:00 +2026/05/14 21:56:51.826, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.93, 65 +2026-05-14T21:56:56+08:00 +2026/05/14 21:56:56.849, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.59, 64 +2026-05-14T21:57:01+08:00 +2026/05/14 21:57:01.872, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.46, 66 +2026-05-14T21:57:06+08:00 +2026/05/14 21:57:06.895, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.16, 65 +2026-05-14T21:57:11+08:00 +2026/05/14 21:57:11.922, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.90, 65 +2026-05-14T21:57:16+08:00 +2026/05/14 21:57:16.946, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.72, 65 +2026-05-14T21:57:21+08:00 +2026/05/14 21:57:21.970, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.06, 64 +2026-05-14T21:57:26+08:00 +2026/05/14 21:57:26.996, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.32, 65 +2026-05-14T21:57:32+08:00 +2026/05/14 21:57:32.021, NVIDIA GeForce RTX 5090, 87, 36, 9607, 32607, 365.18, 65 +2026-05-14T21:57:37+08:00 +2026/05/14 21:57:37.045, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 364.74, 65 +2026-05-14T21:57:42+08:00 +2026/05/14 21:57:42.068, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.29, 64 +2026-05-14T21:57:47+08:00 +2026/05/14 21:57:47.092, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.18, 65 +2026-05-14T21:57:52+08:00 +2026/05/14 21:57:52.116, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 293.66, 59 +2026-05-14T21:57:57+08:00 +2026/05/14 21:57:57.139, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.59, 65 +2026-05-14T21:58:02+08:00 +2026/05/14 21:58:02.163, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.15, 65 +2026-05-14T21:58:07+08:00 +2026/05/14 21:58:07.187, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.91, 65 +2026-05-14T21:58:12+08:00 +2026/05/14 21:58:12.211, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.37, 65 +2026-05-14T21:58:17+08:00 +2026/05/14 21:58:17.234, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 356.58, 64 +2026-05-14T21:58:22+08:00 +2026/05/14 21:58:22.259, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.10, 66 +2026-05-14T21:58:27+08:00 +2026/05/14 21:58:27.282, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.91, 65 +2026-05-14T21:58:32+08:00 +2026/05/14 21:58:32.305, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.92, 65 +2026-05-14T21:58:37+08:00 +2026/05/14 21:58:37.331, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.77, 66 +2026-05-14T21:58:42+08:00 +2026/05/14 21:58:42.354, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 256.89, 64 +2026-05-14T21:58:47+08:00 +2026/05/14 21:58:47.379, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.58, 65 +2026-05-14T21:58:52+08:00 +2026/05/14 21:58:52.447, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.48, 66 +2026-05-14T21:58:57+08:00 +2026/05/14 21:58:57.471, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 366.22, 66 +2026-05-14T21:59:02+08:00 +2026/05/14 21:59:02.525, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.49, 66 +2026-05-14T21:59:07+08:00 +2026/05/14 21:59:07.549, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 66 +2026-05-14T21:59:12+08:00 +2026/05/14 21:59:12.604, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.62, 65 +2026-05-14T21:59:17+08:00 +2026/05/14 21:59:17.628, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.49, 64 +2026-05-14T21:59:22+08:00 +2026/05/14 21:59:22.668, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.57, 66 +2026-05-14T21:59:27+08:00 +2026/05/14 21:59:27.737, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.45, 65 +2026-05-14T21:59:32+08:00 +2026/05/14 21:59:32.763, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.27, 66 +2026-05-14T21:59:37+08:00 +2026/05/14 21:59:37.803, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.84, 65 +2026-05-14T21:59:42+08:00 +2026/05/14 21:59:42.855, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.22, 66 +2026-05-14T21:59:47+08:00 +2026/05/14 21:59:47.882, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.01, 65 +2026-05-14T21:59:52+08:00 +2026/05/14 21:59:52.931, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.85, 65 +2026-05-14T21:59:57+08:00 +2026/05/14 21:59:57.956, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.73, 66 +2026-05-14T22:00:02+08:00 +2026/05/14 22:00:02.995, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.44, 65 +2026-05-14T22:00:08+08:00 +2026/05/14 22:00:08.022, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.57, 65 +2026-05-14T22:00:13+08:00 +2026/05/14 22:00:13.072, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.27, 65 +2026-05-14T22:00:18+08:00 +2026/05/14 22:00:18.096, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.68, 65 +2026-05-14T22:00:23+08:00 +2026/05/14 22:00:23.138, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.41, 66 +2026-05-14T22:00:28+08:00 +2026/05/14 22:00:28.166, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.75, 66 +2026-05-14T22:00:33+08:00 +2026/05/14 22:00:33.189, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.37, 66 +2026-05-14T22:00:38+08:00 +2026/05/14 22:00:38.212, NVIDIA GeForce RTX 5090, 78, 35, 9607, 32607, 263.82, 65 +2026-05-14T22:00:43+08:00 +2026/05/14 22:00:43.237, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.35, 65 +2026-05-14T22:00:48+08:00 +2026/05/14 22:00:48.261, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.04, 65 +2026-05-14T22:00:53+08:00 +2026/05/14 22:00:53.285, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.34, 65 +2026-05-14T22:00:58+08:00 +2026/05/14 22:00:58.311, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.22, 65 +2026-05-14T22:01:03+08:00 +2026/05/14 22:01:03.333, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.35, 64 +2026-05-14T22:01:08+08:00 +2026/05/14 22:01:08.356, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.94, 64 +2026-05-14T22:01:13+08:00 +2026/05/14 22:01:13.382, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 64 +2026-05-14T22:01:18+08:00 +2026/05/14 22:01:18.406, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.78, 66 +2026-05-14T22:01:23+08:00 +2026/05/14 22:01:23.429, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.95, 66 +2026-05-14T22:01:28+08:00 +2026/05/14 22:01:28.454, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.41, 66 +2026-05-14T22:01:33+08:00 +2026/05/14 22:01:33.482, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 365.01, 65 +2026-05-14T22:01:38+08:00 +2026/05/14 22:01:38.506, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 365.49, 66 +2026-05-14T22:01:43+08:00 +2026/05/14 22:01:43.530, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 366.08, 66 +2026-05-14T22:01:48+08:00 +2026/05/14 22:01:48.554, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.39, 66 +2026-05-14T22:01:53+08:00 +2026/05/14 22:01:53.582, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 268.00, 64 +2026-05-14T22:01:58+08:00 +2026/05/14 22:01:58.605, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.07, 64 +2026-05-14T22:02:03+08:00 +2026/05/14 22:02:03.629, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.20, 64 +2026-05-14T22:02:08+08:00 +2026/05/14 22:02:08.653, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.34, 65 +2026-05-14T22:02:13+08:00 +2026/05/14 22:02:13.677, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.43, 65 +2026-05-14T22:02:18+08:00 +2026/05/14 22:02:18.701, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.27, 66 +2026-05-14T22:02:23+08:00 +2026/05/14 22:02:23.722, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.56, 65 +2026-05-14T22:02:28+08:00 +2026/05/14 22:02:28.744, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.24, 65 +2026-05-14T22:02:33+08:00 +2026/05/14 22:02:33.770, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.91, 65 +2026-05-14T22:02:38+08:00 +2026/05/14 22:02:38.792, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.55, 65 +2026-05-14T22:02:43+08:00 +2026/05/14 22:02:43.816, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.95, 65 +2026-05-14T22:02:48+08:00 +2026/05/14 22:02:48.842, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.72, 66 +2026-05-14T22:02:53+08:00 +2026/05/14 22:02:53.867, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.46, 66 +2026-05-14T22:02:58+08:00 +2026/05/14 22:02:58.890, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.22, 66 +2026-05-14T22:03:03+08:00 +2026/05/14 22:03:03.912, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.32, 66 +2026-05-14T22:03:08+08:00 +2026/05/14 22:03:08.935, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.37, 65 +2026-05-14T22:03:13+08:00 +2026/05/14 22:03:13.959, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.89, 65 +2026-05-14T22:03:18+08:00 +2026/05/14 22:03:18.983, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.48, 65 +2026-05-14T22:03:23+08:00 +2026/05/14 22:03:24.006, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.99, 65 +2026-05-14T22:03:29+08:00 +2026/05/14 22:03:29.034, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.79, 65 +2026-05-14T22:03:34+08:00 +2026/05/14 22:03:34.056, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.81, 65 +2026-05-14T22:03:39+08:00 +2026/05/14 22:03:39.081, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.08, 65 +2026-05-14T22:03:44+08:00 +2026/05/14 22:03:44.105, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.43, 65 +2026-05-14T22:03:49+08:00 +2026/05/14 22:03:49.132, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.46, 66 +2026-05-14T22:03:54+08:00 +2026/05/14 22:03:54.156, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.51, 66 +2026-05-14T22:03:59+08:00 +2026/05/14 22:03:59.180, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.30, 66 +2026-05-14T22:04:04+08:00 +2026/05/14 22:04:04.207, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.82, 65 +2026-05-14T22:04:09+08:00 +2026/05/14 22:04:09.231, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.57, 66 +2026-05-14T22:04:14+08:00 +2026/05/14 22:04:14.254, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.10, 66 +2026-05-14T22:04:19+08:00 +2026/05/14 22:04:19.278, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.51, 67 +2026-05-14T22:04:24+08:00 +2026/05/14 22:04:24.306, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 66 +2026-05-14T22:04:29+08:00 +2026/05/14 22:04:29.331, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.77, 64 +2026-05-14T22:04:34+08:00 +2026/05/14 22:04:34.355, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.61, 65 +2026-05-14T22:04:39+08:00 +2026/05/14 22:04:39.381, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.82, 65 +2026-05-14T22:04:44+08:00 +2026/05/14 22:04:44.405, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.48, 65 +2026-05-14T22:04:49+08:00 +2026/05/14 22:04:49.431, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.70, 65 +2026-05-14T22:04:54+08:00 +2026/05/14 22:04:54.471, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.03, 65 +2026-05-14T22:04:59+08:00 +2026/05/14 22:04:59.495, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.34, 65 +2026-05-14T22:05:04+08:00 +2026/05/14 22:05:04.519, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 267.74, 64 +2026-05-14T22:05:09+08:00 +2026/05/14 22:05:09.543, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 365.00, 66 +2026-05-14T22:05:14+08:00 +2026/05/14 22:05:14.566, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 365.10, 66 +2026-05-14T22:05:19+08:00 +2026/05/14 22:05:19.607, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.88, 65 +2026-05-14T22:05:24+08:00 +2026/05/14 22:05:24.631, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.08, 65 +2026-05-14T22:05:29+08:00 +2026/05/14 22:05:29.653, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.71, 65 +2026-05-14T22:05:34+08:00 +2026/05/14 22:05:34.677, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.48, 65 +2026-05-14T22:05:39+08:00 +2026/05/14 22:05:39.719, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.56, 65 +2026-05-14T22:05:44+08:00 +2026/05/14 22:05:44.741, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.85, 66 +2026-05-14T22:05:49+08:00 +2026/05/14 22:05:49.787, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.82, 65 +2026-05-14T22:05:54+08:00 +2026/05/14 22:05:54.814, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.18, 66 +2026-05-14T22:05:59+08:00 +2026/05/14 22:05:59.837, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.27, 66 +2026-05-14T22:06:04+08:00 +2026/05/14 22:06:04.861, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.04, 66 +2026-05-14T22:06:09+08:00 +2026/05/14 22:06:09.884, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.00, 66 +2026-05-14T22:06:14+08:00 +2026/05/14 22:06:14.908, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 366.14, 66 +2026-05-14T22:06:19+08:00 +2026/05/14 22:06:19.931, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 298.75, 66 +2026-05-14T22:06:24+08:00 +2026/05/14 22:06:24.955, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.62, 65 +2026-05-14T22:06:29+08:00 +2026/05/14 22:06:29.982, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.00, 65 +2026-05-14T22:06:34+08:00 +2026/05/14 22:06:35.006, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.42, 66 +2026-05-14T22:06:40+08:00 +2026/05/14 22:06:40.028, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 366.04, 64 +2026-05-14T22:06:45+08:00 +2026/05/14 22:06:45.055, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 65 +2026-05-14T22:06:50+08:00 +2026/05/14 22:06:50.080, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.00, 66 +2026-05-14T22:06:55+08:00 +2026/05/14 22:06:55.103, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.72, 65 +2026-05-14T22:07:00+08:00 +2026/05/14 22:07:00.126, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.56, 64 +2026-05-14T22:07:05+08:00 +2026/05/14 22:07:05.152, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.13, 65 +2026-05-14T22:07:10+08:00 +2026/05/14 22:07:10.178, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.99, 66 +2026-05-14T22:07:15+08:00 +2026/05/14 22:07:15.203, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.30, 65 +2026-05-14T22:07:20+08:00 +2026/05/14 22:07:20.228, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 221.53, 64 +2026-05-14T22:07:25+08:00 +2026/05/14 22:07:25.251, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.82, 65 +2026-05-14T22:07:30+08:00 +2026/05/14 22:07:30.280, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.03, 66 +2026-05-14T22:07:35+08:00 +2026/05/14 22:07:35.305, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.73, 66 +2026-05-14T22:07:40+08:00 +2026/05/14 22:07:40.328, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 340.84, 60 +2026-05-14T22:07:45+08:00 +2026/05/14 22:07:45.352, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.00, 66 +2026-05-14T22:07:50+08:00 +2026/05/14 22:07:50.381, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.39, 65 +2026-05-14T22:07:55+08:00 +2026/05/14 22:07:55.403, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.87, 65 +2026-05-14T22:08:00+08:00 +2026/05/14 22:08:00.427, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.48, 66 +2026-05-14T22:08:05+08:00 +2026/05/14 22:08:05.451, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 367.28, 66 +2026-05-14T22:08:10+08:00 +2026/05/14 22:08:10.477, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 359.27, 66 +2026-05-14T22:08:15+08:00 +2026/05/14 22:08:15.500, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.94, 65 +2026-05-14T22:08:20+08:00 +2026/05/14 22:08:20.522, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.66, 65 +2026-05-14T22:08:25+08:00 +2026/05/14 22:08:25.546, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.21, 66 +2026-05-14T22:08:30+08:00 +2026/05/14 22:08:30.570, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 367.32, 65 +2026-05-14T22:08:35+08:00 +2026/05/14 22:08:35.593, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.12, 65 +2026-05-14T22:08:40+08:00 +2026/05/14 22:08:40.617, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.14, 65 +2026-05-14T22:08:45+08:00 +2026/05/14 22:08:45.642, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.85, 65 +2026-05-14T22:08:50+08:00 +2026/05/14 22:08:50.666, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.80, 65 +2026-05-14T22:08:55+08:00 +2026/05/14 22:08:55.688, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 267.51, 64 +2026-05-14T22:09:00+08:00 +2026/05/14 22:09:00.713, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.48, 65 +2026-05-14T22:09:05+08:00 +2026/05/14 22:09:05.737, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.70, 66 +2026-05-14T22:09:10+08:00 +2026/05/14 22:09:10.763, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 367.49, 65 +2026-05-14T22:09:15+08:00 +2026/05/14 22:09:15.787, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.27, 66 +2026-05-14T22:09:20+08:00 +2026/05/14 22:09:20.811, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.11, 65 +2026-05-14T22:09:25+08:00 +2026/05/14 22:09:25.838, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.53, 66 +2026-05-14T22:09:30+08:00 +2026/05/14 22:09:30.864, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.33, 66 +2026-05-14T22:09:35+08:00 +2026/05/14 22:09:35.887, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.51, 66 +2026-05-14T22:09:40+08:00 +2026/05/14 22:09:40.911, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.03, 65 +2026-05-14T22:09:45+08:00 +2026/05/14 22:09:45.938, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.47, 65 +2026-05-14T22:09:50+08:00 +2026/05/14 22:09:50.961, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.99, 65 +2026-05-14T22:09:55+08:00 +2026/05/14 22:09:55.983, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.58, 65 +2026-05-14T22:10:00+08:00 +2026/05/14 22:10:01.006, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.88, 66 +2026-05-14T22:10:06+08:00 +2026/05/14 22:10:06.029, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.91, 66 +2026-05-14T22:10:11+08:00 +2026/05/14 22:10:11.052, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.69, 61 +2026-05-14T22:10:16+08:00 +2026/05/14 22:10:16.074, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.57, 65 +2026-05-14T22:10:21+08:00 +2026/05/14 22:10:21.098, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.44, 65 +2026-05-14T22:10:26+08:00 +2026/05/14 22:10:26.123, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.07, 66 +2026-05-14T22:10:31+08:00 +2026/05/14 22:10:31.150, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.35, 64 +2026-05-14T22:10:36+08:00 +2026/05/14 22:10:36.175, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.55, 65 +2026-05-14T22:10:41+08:00 +2026/05/14 22:10:41.200, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.58, 66 +2026-05-14T22:10:46+08:00 +2026/05/14 22:10:46.225, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.26, 65 +2026-05-14T22:10:51+08:00 +2026/05/14 22:10:51.252, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.79, 66 +2026-05-14T22:10:56+08:00 +2026/05/14 22:10:56.276, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.78, 66 +2026-05-14T22:11:01+08:00 +2026/05/14 22:11:01.299, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.77, 66 +2026-05-14T22:11:06+08:00 +2026/05/14 22:11:06.325, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.51, 66 +2026-05-14T22:11:11+08:00 +2026/05/14 22:11:11.351, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.22, 65 +2026-05-14T22:11:16+08:00 +2026/05/14 22:11:16.393, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 365.20, 66 +2026-05-14T22:11:21+08:00 +2026/05/14 22:11:21.417, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.81, 65 +2026-05-14T22:11:26+08:00 +2026/05/14 22:11:26.442, NVIDIA GeForce RTX 5090, 8, 4, 9607, 32607, 341.91, 61 +2026-05-14T22:11:31+08:00 +2026/05/14 22:11:31.464, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.98, 66 +2026-05-14T22:11:36+08:00 +2026/05/14 22:11:36.488, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.10, 65 +2026-05-14T22:11:41+08:00 +2026/05/14 22:11:41.515, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.94, 65 +2026-05-14T22:11:46+08:00 +2026/05/14 22:11:46.539, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.76, 65 +2026-05-14T22:11:51+08:00 +2026/05/14 22:11:51.564, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.64, 66 +2026-05-14T22:11:56+08:00 +2026/05/14 22:11:56.587, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.82, 66 +2026-05-14T22:12:01+08:00 +2026/05/14 22:12:01.609, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.19, 67 +2026-05-14T22:12:06+08:00 +2026/05/14 22:12:06.632, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.74, 66 +2026-05-14T22:12:11+08:00 +2026/05/14 22:12:11.653, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.29, 65 +2026-05-14T22:12:16+08:00 +2026/05/14 22:12:16.678, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.91, 65 +2026-05-14T22:12:21+08:00 +2026/05/14 22:12:21.702, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.24, 65 +2026-05-14T22:12:26+08:00 +2026/05/14 22:12:26.727, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.62, 65 +2026-05-14T22:12:31+08:00 +2026/05/14 22:12:31.749, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.64, 65 +2026-05-14T22:12:36+08:00 +2026/05/14 22:12:36.773, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.50, 65 +2026-05-14T22:12:41+08:00 +2026/05/14 22:12:41.795, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.56, 65 +2026-05-14T22:12:46+08:00 +2026/05/14 22:12:46.819, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.82, 66 +2026-05-14T22:12:51+08:00 +2026/05/14 22:12:51.844, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.88, 66 +2026-05-14T22:12:56+08:00 +2026/05/14 22:12:56.867, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.27, 66 +2026-05-14T22:13:01+08:00 +2026/05/14 22:13:01.894, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.01, 66 +2026-05-14T22:13:06+08:00 +2026/05/14 22:13:06.918, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.27, 65 +2026-05-14T22:13:11+08:00 +2026/05/14 22:13:11.943, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.09, 65 +2026-05-14T22:13:16+08:00 +2026/05/14 22:13:16.967, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.31, 66 +2026-05-14T22:13:21+08:00 +2026/05/14 22:13:21.993, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.22, 65 +2026-05-14T22:13:27+08:00 +2026/05/14 22:13:27.017, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.32, 65 +2026-05-14T22:13:32+08:00 +2026/05/14 22:13:32.041, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.68, 64 +2026-05-14T22:13:37+08:00 +2026/05/14 22:13:37.063, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.97, 65 +2026-05-14T22:13:42+08:00 +2026/05/14 22:13:42.084, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.21, 64 +2026-05-14T22:13:47+08:00 +2026/05/14 22:13:47.107, NVIDIA GeForce RTX 5090, 88, 36, 9607, 32607, 362.34, 66 +2026-05-14T22:13:52+08:00 +2026/05/14 22:13:52.129, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.74, 66 +2026-05-14T22:13:57+08:00 +2026/05/14 22:13:57.154, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 363.24, 65 +2026-05-14T22:14:02+08:00 +2026/05/14 22:14:02.179, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 66 +2026-05-14T22:14:07+08:00 +2026/05/14 22:14:07.204, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.91, 65 +2026-05-14T22:14:12+08:00 +2026/05/14 22:14:12.228, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.73, 65 +2026-05-14T22:14:17+08:00 +2026/05/14 22:14:17.252, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.96, 64 +2026-05-14T22:14:22+08:00 +2026/05/14 22:14:22.276, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.75, 66 +2026-05-14T22:14:27+08:00 +2026/05/14 22:14:27.298, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.69, 65 +2026-05-14T22:14:32+08:00 +2026/05/14 22:14:32.322, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.11, 66 +2026-05-14T22:14:37+08:00 +2026/05/14 22:14:37.347, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 356.52, 65 +2026-05-14T22:14:42+08:00 +2026/05/14 22:14:42.371, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.20, 65 +2026-05-14T22:14:47+08:00 +2026/05/14 22:14:47.393, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.08, 65 +2026-05-14T22:14:52+08:00 +2026/05/14 22:14:52.416, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.57, 66 +2026-05-14T22:14:57+08:00 +2026/05/14 22:14:57.477, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.05, 65 +2026-05-14T22:15:02+08:00 +2026/05/14 22:15:02.501, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.14, 65 +2026-05-14T22:15:07+08:00 +2026/05/14 22:15:07.524, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 367.23, 66 +2026-05-14T22:15:12+08:00 +2026/05/14 22:15:12.566, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.09, 66 +2026-05-14T22:15:17+08:00 +2026/05/14 22:15:17.644, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.14, 67 +2026-05-14T22:15:22+08:00 +2026/05/14 22:15:22.691, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.85, 65 +2026-05-14T22:15:27+08:00 +2026/05/14 22:15:27.714, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.62, 66 +2026-05-14T22:15:32+08:00 +2026/05/14 22:15:32.787, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.21, 66 +2026-05-14T22:15:37+08:00 +2026/05/14 22:15:37.810, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.72, 65 +2026-05-14T22:15:42+08:00 +2026/05/14 22:15:42.834, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.76, 65 +2026-05-14T22:15:47+08:00 +2026/05/14 22:15:47.911, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.13, 66 +2026-05-14T22:15:52+08:00 +2026/05/14 22:15:52.953, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.36, 67 +2026-05-14T22:15:57+08:00 +2026/05/14 22:15:57.993, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.53, 65 +2026-05-14T22:16:03+08:00 +2026/05/14 22:16:03.018, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.73, 64 +2026-05-14T22:16:08+08:00 +2026/05/14 22:16:08.094, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.84, 66 +2026-05-14T22:16:13+08:00 +2026/05/14 22:16:13.117, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.20, 64 +2026-05-14T22:16:18+08:00 +2026/05/14 22:16:18.185, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.96, 64 +2026-05-14T22:16:23+08:00 +2026/05/14 22:16:23.207, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.91, 64 +2026-05-14T22:16:28+08:00 +2026/05/14 22:16:28.278, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.17, 65 +2026-05-14T22:16:33+08:00 +2026/05/14 22:16:33.303, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.54, 65 +2026-05-14T22:16:38+08:00 +2026/05/14 22:16:38.343, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.13, 66 +2026-05-14T22:16:43+08:00 +2026/05/14 22:16:43.416, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.79, 65 +2026-05-14T22:16:48+08:00 +2026/05/14 22:16:48.439, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.53, 66 +2026-05-14T22:16:53+08:00 +2026/05/14 22:16:53.515, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.93, 66 +2026-05-14T22:16:58+08:00 +2026/05/14 22:16:58.539, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.90, 65 +2026-05-14T22:17:03+08:00 +2026/05/14 22:17:03.565, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.57, 65 +2026-05-14T22:17:08+08:00 +2026/05/14 22:17:08.589, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.81, 66 +2026-05-14T22:17:13+08:00 +2026/05/14 22:17:13.613, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.00, 66 +2026-05-14T22:17:18+08:00 +2026/05/14 22:17:18.643, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.42, 64 +2026-05-14T22:17:23+08:00 +2026/05/14 22:17:23.667, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.24, 64 +2026-05-14T22:17:28+08:00 +2026/05/14 22:17:28.690, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.44, 64 +2026-05-14T22:17:33+08:00 +2026/05/14 22:17:33.711, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.80, 65 +2026-05-14T22:17:38+08:00 +2026/05/14 22:17:38.734, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.88, 65 +2026-05-14T22:17:43+08:00 +2026/05/14 22:17:43.755, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.63, 65 +2026-05-14T22:17:48+08:00 +2026/05/14 22:17:48.777, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.56, 64 +2026-05-14T22:17:53+08:00 +2026/05/14 22:17:53.800, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.24, 65 +2026-05-14T22:17:58+08:00 +2026/05/14 22:17:58.821, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.85, 65 +2026-05-14T22:18:03+08:00 +2026/05/14 22:18:03.844, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 363.72, 66 +2026-05-14T22:18:08+08:00 +2026/05/14 22:18:08.868, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.05, 64 +2026-05-14T22:18:13+08:00 +2026/05/14 22:18:13.891, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.12, 65 +2026-05-14T22:18:18+08:00 +2026/05/14 22:18:18.915, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.49, 65 +2026-05-14T22:18:23+08:00 +2026/05/14 22:18:23.938, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.18, 65 +2026-05-14T22:18:28+08:00 +2026/05/14 22:18:28.963, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.01, 66 +2026-05-14T22:18:33+08:00 +2026/05/14 22:18:33.987, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.43, 65 +2026-05-14T22:18:38+08:00 +2026/05/14 22:18:39.010, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.05, 65 +2026-05-14T22:18:44+08:00 +2026/05/14 22:18:44.033, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.16, 65 +2026-05-14T22:18:49+08:00 +2026/05/14 22:18:49.057, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.71, 64 +2026-05-14T22:18:54+08:00 +2026/05/14 22:18:54.081, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.91, 66 +2026-05-14T22:18:59+08:00 +2026/05/14 22:18:59.105, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.16, 65 +2026-05-14T22:19:04+08:00 +2026/05/14 22:19:04.128, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.08, 65 +2026-05-14T22:19:09+08:00 +2026/05/14 22:19:09.155, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.21, 65 +2026-05-14T22:19:14+08:00 +2026/05/14 22:19:14.180, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.46, 66 +2026-05-14T22:19:19+08:00 +2026/05/14 22:19:19.207, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 65 +2026-05-14T22:19:24+08:00 +2026/05/14 22:19:24.230, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.75, 64 +2026-05-14T22:19:29+08:00 +2026/05/14 22:19:29.253, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.64, 64 +2026-05-14T22:19:34+08:00 +2026/05/14 22:19:34.277, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.73, 65 +2026-05-14T22:19:39+08:00 +2026/05/14 22:19:39.301, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.92, 64 +2026-05-14T22:19:44+08:00 +2026/05/14 22:19:44.325, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.61, 66 +2026-05-14T22:19:49+08:00 +2026/05/14 22:19:49.348, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 266.48, 65 +2026-05-14T22:19:54+08:00 +2026/05/14 22:19:54.372, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.65, 65 +2026-05-14T22:19:59+08:00 +2026/05/14 22:19:59.397, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.20, 65 +2026-05-14T22:20:04+08:00 +2026/05/14 22:20:04.420, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 65 +2026-05-14T22:20:09+08:00 +2026/05/14 22:20:09.445, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.27, 65 +2026-05-14T22:20:14+08:00 +2026/05/14 22:20:14.468, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.17, 65 +2026-05-14T22:20:19+08:00 +2026/05/14 22:20:19.491, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.36, 66 +2026-05-14T22:20:24+08:00 +2026/05/14 22:20:24.518, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 283.79, 59 +2026-05-14T22:20:29+08:00 +2026/05/14 22:20:29.542, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 366.55, 65 +2026-05-14T22:20:34+08:00 +2026/05/14 22:20:34.565, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.35, 65 +2026-05-14T22:20:39+08:00 +2026/05/14 22:20:39.590, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.42, 65 +2026-05-14T22:20:44+08:00 +2026/05/14 22:20:44.615, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.11, 64 +2026-05-14T22:20:49+08:00 +2026/05/14 22:20:49.639, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.43, 64 +2026-05-14T22:20:54+08:00 +2026/05/14 22:20:54.662, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.11, 65 +2026-05-14T22:20:59+08:00 +2026/05/14 22:20:59.687, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.63, 64 +2026-05-14T22:21:04+08:00 +2026/05/14 22:21:04.710, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.19, 65 +2026-05-14T22:21:09+08:00 +2026/05/14 22:21:09.751, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.83, 66 +2026-05-14T22:21:14+08:00 +2026/05/14 22:21:14.821, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.35, 66 +2026-05-14T22:21:19+08:00 +2026/05/14 22:21:19.845, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.62, 66 +2026-05-14T22:21:24+08:00 +2026/05/14 22:21:24.917, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.11, 66 +2026-05-14T22:21:29+08:00 +2026/05/14 22:21:29.941, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.85, 66 +2026-05-14T22:21:34+08:00 +2026/05/14 22:21:34.965, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.81, 65 +2026-05-14T22:21:39+08:00 +2026/05/14 22:21:40.004, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.31, 66 +2026-05-14T22:21:45+08:00 +2026/05/14 22:21:45.069, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.80, 65 +2026-05-14T22:21:50+08:00 +2026/05/14 22:21:50.091, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.42, 65 +2026-05-14T22:21:55+08:00 +2026/05/14 22:21:55.169, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.74, 65 +2026-05-14T22:22:00+08:00 +2026/05/14 22:22:00.193, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.42, 65 +2026-05-14T22:22:05+08:00 +2026/05/14 22:22:05.235, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.85, 64 +2026-05-14T22:22:10+08:00 +2026/05/14 22:22:10.258, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.46, 65 +2026-05-14T22:22:15+08:00 +2026/05/14 22:22:15.283, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.37, 65 +2026-05-14T22:22:20+08:00 +2026/05/14 22:22:20.307, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.56, 65 +2026-05-14T22:22:25+08:00 +2026/05/14 22:22:25.330, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.75, 65 +2026-05-14T22:22:30+08:00 +2026/05/14 22:22:30.353, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.12, 66 +2026-05-14T22:22:35+08:00 +2026/05/14 22:22:35.375, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.36, 64 +2026-05-14T22:22:40+08:00 +2026/05/14 22:22:40.397, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.71, 66 +2026-05-14T22:22:45+08:00 +2026/05/14 22:22:45.420, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.19, 66 +2026-05-14T22:22:50+08:00 +2026/05/14 22:22:50.445, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.58, 65 +2026-05-14T22:22:55+08:00 +2026/05/14 22:22:55.467, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.51, 64 +2026-05-14T22:23:00+08:00 +2026/05/14 22:23:00.492, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 261.67, 59 +2026-05-14T22:23:05+08:00 +2026/05/14 22:23:05.517, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.14, 65 +2026-05-14T22:23:10+08:00 +2026/05/14 22:23:10.540, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.53, 65 +2026-05-14T22:23:15+08:00 +2026/05/14 22:23:15.563, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.15, 64 +2026-05-14T22:23:20+08:00 +2026/05/14 22:23:20.586, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.83, 66 +2026-05-14T22:23:25+08:00 +2026/05/14 22:23:25.610, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.99, 65 +2026-05-14T22:23:30+08:00 +2026/05/14 22:23:30.634, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.15, 65 +2026-05-14T22:23:35+08:00 +2026/05/14 22:23:35.656, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.95, 65 +2026-05-14T22:23:40+08:00 +2026/05/14 22:23:40.686, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.78, 65 +2026-05-14T22:23:45+08:00 +2026/05/14 22:23:45.713, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 364.74, 64 +2026-05-14T22:23:50+08:00 +2026/05/14 22:23:50.739, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.80, 64 +2026-05-14T22:23:55+08:00 +2026/05/14 22:23:55.762, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.25, 65 +2026-05-14T22:24:00+08:00 +2026/05/14 22:24:00.788, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.19, 65 +2026-05-14T22:24:05+08:00 +2026/05/14 22:24:05.810, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.45, 66 +2026-05-14T22:24:10+08:00 +2026/05/14 22:24:10.834, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 236.55, 59 +2026-05-14T22:24:15+08:00 +2026/05/14 22:24:15.857, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.47, 65 +2026-05-14T22:24:20+08:00 +2026/05/14 22:24:20.880, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.29, 66 +2026-05-14T22:24:25+08:00 +2026/05/14 22:24:25.906, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.93, 64 +2026-05-14T22:24:30+08:00 +2026/05/14 22:24:30.932, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.58, 65 +2026-05-14T22:24:35+08:00 +2026/05/14 22:24:35.955, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.97, 66 +2026-05-14T22:24:40+08:00 +2026/05/14 22:24:40.980, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.93, 65 +2026-05-14T22:24:46+08:00 +2026/05/14 22:24:46.023, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.21, 65 +2026-05-14T22:24:51+08:00 +2026/05/14 22:24:51.075, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.69, 65 +2026-05-14T22:24:56+08:00 +2026/05/14 22:24:56.098, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 264.61, 64 +2026-05-14T22:25:01+08:00 +2026/05/14 22:25:01.168, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.48, 65 +2026-05-14T22:25:06+08:00 +2026/05/14 22:25:06.194, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.18, 65 +2026-05-14T22:25:11+08:00 +2026/05/14 22:25:11.245, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.46, 67 +2026-05-14T22:25:16+08:00 +2026/05/14 22:25:16.269, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.88, 65 +2026-05-14T22:25:21+08:00 +2026/05/14 22:25:21.309, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.94, 66 +2026-05-14T22:25:26+08:00 +2026/05/14 22:25:26.350, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.06, 65 +2026-05-14T22:25:31+08:00 +2026/05/14 22:25:31.430, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.12, 66 +2026-05-14T22:25:36+08:00 +2026/05/14 22:25:36.453, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.05, 65 +2026-05-14T22:25:41+08:00 +2026/05/14 22:25:41.493, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.17, 65 +2026-05-14T22:25:46+08:00 +2026/05/14 22:25:46.518, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.37, 66 +2026-05-14T22:25:51+08:00 +2026/05/14 22:25:51.559, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.26, 66 +2026-05-14T22:25:56+08:00 +2026/05/14 22:25:56.617, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.44, 66 +2026-05-14T22:26:01+08:00 +2026/05/14 22:26:01.641, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 64 +2026-05-14T22:26:06+08:00 +2026/05/14 22:26:06.689, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.39, 64 +2026-05-14T22:26:11+08:00 +2026/05/14 22:26:11.716, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.55, 65 +2026-05-14T22:26:16+08:00 +2026/05/14 22:26:16.758, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 366.39, 65 +2026-05-14T22:26:21+08:00 +2026/05/14 22:26:21.782, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.79, 65 +2026-05-14T22:26:26+08:00 +2026/05/14 22:26:26.807, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.84, 65 +2026-05-14T22:26:31+08:00 +2026/05/14 22:26:31.831, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.26, 66 +2026-05-14T22:26:36+08:00 +2026/05/14 22:26:36.852, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.45, 65 +2026-05-14T22:26:41+08:00 +2026/05/14 22:26:41.875, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 65 +2026-05-14T22:26:46+08:00 +2026/05/14 22:26:46.899, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 364.23, 65 +2026-05-14T22:26:51+08:00 +2026/05/14 22:26:51.919, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.79, 66 +2026-05-14T22:26:56+08:00 +2026/05/14 22:26:56.943, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.11, 64 +2026-05-14T22:27:01+08:00 +2026/05/14 22:27:01.965, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.21, 66 +2026-05-14T22:27:06+08:00 +2026/05/14 22:27:06.989, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.96, 65 +2026-05-14T22:27:12+08:00 +2026/05/14 22:27:12.015, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.02, 64 +2026-05-14T22:27:17+08:00 +2026/05/14 22:27:17.037, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.23, 66 +2026-05-14T22:27:22+08:00 +2026/05/14 22:27:22.062, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.99, 65 +2026-05-14T22:27:27+08:00 +2026/05/14 22:27:27.085, NVIDIA GeForce RTX 5090, 1, 0, 9607, 32607, 252.50, 64 +2026-05-14T22:27:32+08:00 +2026/05/14 22:27:32.111, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 361.64, 66 +2026-05-14T22:27:37+08:00 +2026/05/14 22:27:37.132, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.86, 65 +2026-05-14T22:27:42+08:00 +2026/05/14 22:27:42.155, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.31, 65 +2026-05-14T22:27:47+08:00 +2026/05/14 22:27:47.181, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.90, 66 +2026-05-14T22:27:52+08:00 +2026/05/14 22:27:52.203, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.20, 65 +2026-05-14T22:27:57+08:00 +2026/05/14 22:27:57.231, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 363.39, 66 +2026-05-14T22:28:02+08:00 +2026/05/14 22:28:02.252, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.58, 65 +2026-05-14T22:28:07+08:00 +2026/05/14 22:28:07.275, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 284.89, 59 +2026-05-14T22:28:12+08:00 +2026/05/14 22:28:12.305, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.05, 65 +2026-05-14T22:28:17+08:00 +2026/05/14 22:28:17.333, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.52, 64 +2026-05-14T22:28:22+08:00 +2026/05/14 22:28:22.352, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.98, 65 +2026-05-14T22:28:27+08:00 +2026/05/14 22:28:27.375, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.65, 65 +2026-05-14T22:28:32+08:00 +2026/05/14 22:28:32.398, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.17, 66 +2026-05-14T22:28:37+08:00 +2026/05/14 22:28:37.421, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.46, 66 +2026-05-14T22:28:42+08:00 +2026/05/14 22:28:42.452, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.53, 64 +2026-05-14T22:28:47+08:00 +2026/05/14 22:28:47.474, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.13, 66 +2026-05-14T22:28:52+08:00 +2026/05/14 22:28:52.500, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.77, 64 +2026-05-14T22:28:57+08:00 +2026/05/14 22:28:57.524, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.68, 64 +2026-05-14T22:29:02+08:00 +2026/05/14 22:29:02.553, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.76, 65 +2026-05-14T22:29:07+08:00 +2026/05/14 22:29:07.576, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.14, 65 +2026-05-14T22:29:12+08:00 +2026/05/14 22:29:12.600, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.27, 64 +2026-05-14T22:29:17+08:00 +2026/05/14 22:29:17.626, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.48, 65 +2026-05-14T22:29:22+08:00 +2026/05/14 22:29:22.652, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.90, 65 +2026-05-14T22:29:27+08:00 +2026/05/14 22:29:27.676, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.73, 65 +2026-05-14T22:29:32+08:00 +2026/05/14 22:29:32.700, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.47, 66 +2026-05-14T22:29:37+08:00 +2026/05/14 22:29:37.723, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.51, 65 +2026-05-14T22:29:42+08:00 +2026/05/14 22:29:42.748, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.68, 65 +2026-05-14T22:29:47+08:00 +2026/05/14 22:29:47.772, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.87, 64 +2026-05-14T22:29:52+08:00 +2026/05/14 22:29:52.796, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.69, 64 +2026-05-14T22:29:57+08:00 +2026/05/14 22:29:57.819, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.64, 64 +2026-05-14T22:30:02+08:00 +2026/05/14 22:30:02.846, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.14, 64 +2026-05-14T22:30:07+08:00 +2026/05/14 22:30:07.868, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.36, 65 +2026-05-14T22:30:12+08:00 +2026/05/14 22:30:12.893, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.62, 65 +2026-05-14T22:30:17+08:00 +2026/05/14 22:30:17.918, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.23, 66 +2026-05-14T22:30:22+08:00 +2026/05/14 22:30:22.942, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.71, 65 +2026-05-14T22:30:27+08:00 +2026/05/14 22:30:27.965, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.18, 66 +2026-05-14T22:30:32+08:00 +2026/05/14 22:30:32.990, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.23, 66 +2026-05-14T22:30:37+08:00 +2026/05/14 22:30:38.013, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.47, 65 +2026-05-14T22:30:43+08:00 +2026/05/14 22:30:43.039, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.21, 64 +2026-05-14T22:30:48+08:00 +2026/05/14 22:30:48.064, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 364.40, 65 +2026-05-14T22:30:53+08:00 +2026/05/14 22:30:53.088, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 363.28, 66 +2026-05-14T22:30:58+08:00 +2026/05/14 22:30:58.112, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.07, 65 +2026-05-14T22:31:03+08:00 +2026/05/14 22:31:03.136, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.41, 65 +2026-05-14T22:31:08+08:00 +2026/05/14 22:31:08.160, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.93, 66 +2026-05-14T22:31:13+08:00 +2026/05/14 22:31:13.185, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.33, 66 +2026-05-14T22:31:18+08:00 +2026/05/14 22:31:18.215, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 258.30, 64 +2026-05-14T22:31:23+08:00 +2026/05/14 22:31:23.236, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.27, 65 +2026-05-14T22:31:28+08:00 +2026/05/14 22:31:28.263, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.99, 65 +2026-05-14T22:31:33+08:00 +2026/05/14 22:31:33.288, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.86, 65 +2026-05-14T22:31:38+08:00 +2026/05/14 22:31:38.311, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.95, 65 +2026-05-14T22:31:43+08:00 +2026/05/14 22:31:43.334, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.38, 65 +2026-05-14T22:31:48+08:00 +2026/05/14 22:31:48.358, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.18, 66 +2026-05-14T22:31:53+08:00 +2026/05/14 22:31:53.384, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.68, 66 +2026-05-14T22:31:58+08:00 +2026/05/14 22:31:58.408, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.86, 65 +2026-05-14T22:32:03+08:00 +2026/05/14 22:32:03.430, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 65 +2026-05-14T22:32:08+08:00 +2026/05/14 22:32:08.454, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.70, 66 +2026-05-14T22:32:13+08:00 +2026/05/14 22:32:13.477, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.43, 65 +2026-05-14T22:32:18+08:00 +2026/05/14 22:32:18.502, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.26, 66 +2026-05-14T22:32:23+08:00 +2026/05/14 22:32:23.528, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.51, 66 +2026-05-14T22:32:28+08:00 +2026/05/14 22:32:28.553, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.38, 64 +2026-05-14T22:32:33+08:00 +2026/05/14 22:32:33.576, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.59, 64 +2026-05-14T22:32:38+08:00 +2026/05/14 22:32:38.599, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.96, 65 +2026-05-14T22:32:43+08:00 +2026/05/14 22:32:43.623, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.13, 66 +2026-05-14T22:32:48+08:00 +2026/05/14 22:32:48.647, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.56, 65 +2026-05-14T22:32:53+08:00 +2026/05/14 22:32:53.671, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.80, 66 +2026-05-14T22:32:58+08:00 +2026/05/14 22:32:58.694, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.87, 66 +2026-05-14T22:33:03+08:00 +2026/05/14 22:33:03.719, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 356.28, 65 +2026-05-14T22:33:08+08:00 +2026/05/14 22:33:08.742, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.31, 65 +2026-05-14T22:33:13+08:00 +2026/05/14 22:33:13.768, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.92, 66 +2026-05-14T22:33:18+08:00 +2026/05/14 22:33:18.791, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.65, 64 +2026-05-14T22:33:23+08:00 +2026/05/14 22:33:23.813, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.01, 64 +2026-05-14T22:33:28+08:00 +2026/05/14 22:33:28.836, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.32, 64 +2026-05-14T22:33:33+08:00 +2026/05/14 22:33:33.859, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.14, 65 +2026-05-14T22:33:38+08:00 +2026/05/14 22:33:38.882, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.47, 65 +2026-05-14T22:33:43+08:00 +2026/05/14 22:33:43.905, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.15, 65 +2026-05-14T22:33:48+08:00 +2026/05/14 22:33:48.927, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.77, 65 +2026-05-14T22:33:53+08:00 +2026/05/14 22:33:53.968, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.09, 66 +2026-05-14T22:33:58+08:00 +2026/05/14 22:33:58.992, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.25, 65 +2026-05-14T22:34:04+08:00 +2026/05/14 22:34:04.014, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.59, 65 +2026-05-14T22:34:09+08:00 +2026/05/14 22:34:09.084, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.16, 65 +2026-05-14T22:34:14+08:00 +2026/05/14 22:34:14.107, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.76, 65 +2026-05-14T22:34:19+08:00 +2026/05/14 22:34:19.180, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.11, 65 +2026-05-14T22:34:24+08:00 +2026/05/14 22:34:24.201, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.23, 65 +2026-05-14T22:34:29+08:00 +2026/05/14 22:34:29.278, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.09, 65 +2026-05-14T22:34:34+08:00 +2026/05/14 22:34:34.300, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.38, 65 +2026-05-14T22:34:39+08:00 +2026/05/14 22:34:39.371, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.34, 65 +2026-05-14T22:34:44+08:00 +2026/05/14 22:34:44.393, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.41, 65 +2026-05-14T22:34:49+08:00 +2026/05/14 22:34:49.438, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.81, 64 +2026-05-14T22:34:54+08:00 +2026/05/14 22:34:54.478, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.99, 65 +2026-05-14T22:34:59+08:00 +2026/05/14 22:34:59.501, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.76, 65 +2026-05-14T22:35:04+08:00 +2026/05/14 22:35:04.527, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.15, 64 +2026-05-14T22:35:09+08:00 +2026/05/14 22:35:09.549, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.66, 65 +2026-05-14T22:35:14+08:00 +2026/05/14 22:35:14.572, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.32, 66 +2026-05-14T22:35:19+08:00 +2026/05/14 22:35:19.596, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.45, 64 +2026-05-14T22:35:24+08:00 +2026/05/14 22:35:24.621, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.88, 66 +2026-05-14T22:35:29+08:00 +2026/05/14 22:35:29.644, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.35, 66 +2026-05-14T22:35:34+08:00 +2026/05/14 22:35:34.668, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.65, 66 +2026-05-14T22:35:39+08:00 +2026/05/14 22:35:39.693, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.42, 66 +2026-05-14T22:35:44+08:00 +2026/05/14 22:35:44.715, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 366.76, 65 +2026-05-14T22:35:49+08:00 +2026/05/14 22:35:49.736, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.02, 66 +2026-05-14T22:35:54+08:00 +2026/05/14 22:35:54.760, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.76, 66 +2026-05-14T22:35:59+08:00 +2026/05/14 22:35:59.785, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.08, 65 +2026-05-14T22:36:04+08:00 +2026/05/14 22:36:04.811, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.92, 65 +2026-05-14T22:36:09+08:00 +2026/05/14 22:36:09.839, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.93, 65 +2026-05-14T22:36:14+08:00 +2026/05/14 22:36:14.861, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.94, 66 +2026-05-14T22:36:19+08:00 +2026/05/14 22:36:19.889, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.84, 65 +2026-05-14T22:36:24+08:00 +2026/05/14 22:36:24.911, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 320.96, 66 +2026-05-14T22:36:29+08:00 +2026/05/14 22:36:29.935, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.35, 65 +2026-05-14T22:36:34+08:00 +2026/05/14 22:36:34.959, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.79, 65 +2026-05-14T22:36:39+08:00 +2026/05/14 22:36:39.981, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.89, 66 +2026-05-14T22:36:44+08:00 +2026/05/14 22:36:45.005, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.39, 65 +2026-05-14T22:36:50+08:00 +2026/05/14 22:36:50.030, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.67, 66 +2026-05-14T22:36:55+08:00 +2026/05/14 22:36:55.054, NVIDIA GeForce RTX 5090, 53, 26, 9607, 32607, 356.15, 65 +2026-05-14T22:37:00+08:00 +2026/05/14 22:37:00.078, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.89, 65 +2026-05-14T22:37:05+08:00 +2026/05/14 22:37:05.102, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.11, 65 +2026-05-14T22:37:10+08:00 +2026/05/14 22:37:10.125, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.12, 66 +2026-05-14T22:37:15+08:00 +2026/05/14 22:37:15.148, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.51, 65 +2026-05-14T22:37:20+08:00 +2026/05/14 22:37:20.172, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.26, 66 +2026-05-14T22:37:25+08:00 +2026/05/14 22:37:25.197, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.35, 66 +2026-05-14T22:37:30+08:00 +2026/05/14 22:37:30.224, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.03, 65 +2026-05-14T22:37:35+08:00 +2026/05/14 22:37:35.249, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.91, 66 +2026-05-14T22:37:40+08:00 +2026/05/14 22:37:40.275, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.81, 65 +2026-05-14T22:37:45+08:00 +2026/05/14 22:37:45.298, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.64, 65 +2026-05-14T22:37:50+08:00 +2026/05/14 22:37:50.321, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.99, 65 +2026-05-14T22:37:55+08:00 +2026/05/14 22:37:55.344, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.77, 65 +2026-05-14T22:38:00+08:00 +2026/05/14 22:38:00.374, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.55, 65 +2026-05-14T22:38:05+08:00 +2026/05/14 22:38:05.397, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 364.14, 65 +2026-05-14T22:38:10+08:00 +2026/05/14 22:38:10.422, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 363.85, 65 +2026-05-14T22:38:15+08:00 +2026/05/14 22:38:15.444, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.21, 65 +2026-05-14T22:38:20+08:00 +2026/05/14 22:38:20.465, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 221.96, 64 +2026-05-14T22:38:25+08:00 +2026/05/14 22:38:25.490, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.40, 65 +2026-05-14T22:38:30+08:00 +2026/05/14 22:38:30.514, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.31, 65 +2026-05-14T22:38:35+08:00 +2026/05/14 22:38:35.539, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.00, 65 +2026-05-14T22:38:40+08:00 +2026/05/14 22:38:40.563, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.55, 66 +2026-05-14T22:38:45+08:00 +2026/05/14 22:38:45.603, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.29, 66 +2026-05-14T22:38:50+08:00 +2026/05/14 22:38:50.648, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.13, 65 +2026-05-14T22:38:55+08:00 +2026/05/14 22:38:55.691, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.21, 65 +2026-05-14T22:39:00+08:00 +2026/05/14 22:39:00.734, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.44, 65 +2026-05-14T22:39:05+08:00 +2026/05/14 22:39:05.778, NVIDIA GeForce RTX 5090, 88, 39, 9607, 32607, 363.07, 65 +2026-05-14T22:39:10+08:00 +2026/05/14 22:39:10.849, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.38, 66 +2026-05-14T22:39:15+08:00 +2026/05/14 22:39:15.871, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.85, 65 +2026-05-14T22:39:20+08:00 +2026/05/14 22:39:20.895, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.39, 66 +2026-05-14T22:39:25+08:00 +2026/05/14 22:39:25.947, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.16, 66 +2026-05-14T22:39:30+08:00 +2026/05/14 22:39:30.996, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.88, 65 +2026-05-14T22:39:36+08:00 +2026/05/14 22:39:36.020, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.18, 65 +2026-05-14T22:39:41+08:00 +2026/05/14 22:39:41.075, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.45, 65 +2026-05-14T22:39:46+08:00 +2026/05/14 22:39:46.099, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.60, 65 +2026-05-14T22:39:51+08:00 +2026/05/14 22:39:51.152, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.23, 66 +2026-05-14T22:39:56+08:00 +2026/05/14 22:39:56.176, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.67, 65 +2026-05-14T22:40:01+08:00 +2026/05/14 22:40:01.217, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.98, 65 +2026-05-14T22:40:06+08:00 +2026/05/14 22:40:06.241, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.87, 66 +2026-05-14T22:40:11+08:00 +2026/05/14 22:40:11.266, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.88, 65 +2026-05-14T22:40:16+08:00 +2026/05/14 22:40:16.290, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.54, 65 +2026-05-14T22:40:21+08:00 +2026/05/14 22:40:21.313, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 66 +2026-05-14T22:40:26+08:00 +2026/05/14 22:40:26.336, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.46, 65 +2026-05-14T22:40:31+08:00 +2026/05/14 22:40:31.359, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.33, 65 +2026-05-14T22:40:36+08:00 +2026/05/14 22:40:36.387, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.84, 65 +2026-05-14T22:40:41+08:00 +2026/05/14 22:40:41.410, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.86, 65 +2026-05-14T22:40:46+08:00 +2026/05/14 22:40:46.433, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.14, 66 +2026-05-14T22:40:51+08:00 +2026/05/14 22:40:51.456, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.79, 65 +2026-05-14T22:40:56+08:00 +2026/05/14 22:40:56.479, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.22, 66 +2026-05-14T22:41:01+08:00 +2026/05/14 22:41:01.508, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.80, 66 +2026-05-14T22:41:06+08:00 +2026/05/14 22:41:06.532, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.43, 65 +2026-05-14T22:41:11+08:00 +2026/05/14 22:41:11.556, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.43, 67 +2026-05-14T22:41:16+08:00 +2026/05/14 22:41:16.586, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.98, 66 +2026-05-14T22:41:21+08:00 +2026/05/14 22:41:21.609, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.04, 65 +2026-05-14T22:41:26+08:00 +2026/05/14 22:41:26.633, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 219.82, 65 +2026-05-14T22:41:31+08:00 +2026/05/14 22:41:31.657, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.95, 65 +2026-05-14T22:41:36+08:00 +2026/05/14 22:41:36.680, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.26, 65 +2026-05-14T22:41:41+08:00 +2026/05/14 22:41:41.707, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.55, 65 +2026-05-14T22:41:46+08:00 +2026/05/14 22:41:46.731, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.36, 66 +2026-05-14T22:41:51+08:00 +2026/05/14 22:41:51.756, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.24, 66 +2026-05-14T22:41:56+08:00 +2026/05/14 22:41:56.780, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.03, 65 +2026-05-14T22:42:01+08:00 +2026/05/14 22:42:01.808, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.47, 65 +2026-05-14T22:42:06+08:00 +2026/05/14 22:42:06.833, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.49, 65 +2026-05-14T22:42:11+08:00 +2026/05/14 22:42:11.856, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.92, 64 +2026-05-14T22:42:16+08:00 +2026/05/14 22:42:16.878, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.89, 64 +2026-05-14T22:42:21+08:00 +2026/05/14 22:42:21.900, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.42, 65 +2026-05-14T22:42:26+08:00 +2026/05/14 22:42:26.924, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.18, 65 +2026-05-14T22:42:31+08:00 +2026/05/14 22:42:31.949, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.94, 65 +2026-05-14T22:42:36+08:00 +2026/05/14 22:42:36.972, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.76, 66 +2026-05-14T22:42:41+08:00 +2026/05/14 22:42:41.994, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.77, 65 +2026-05-14T22:42:47+08:00 +2026/05/14 22:42:47.017, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.83, 66 +2026-05-14T22:42:52+08:00 +2026/05/14 22:42:52.042, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.95, 66 +2026-05-14T22:42:57+08:00 +2026/05/14 22:42:57.062, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.18, 66 +2026-05-14T22:43:02+08:00 +2026/05/14 22:43:02.089, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.49, 65 +2026-05-14T22:43:07+08:00 +2026/05/14 22:43:07.112, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.66, 65 +2026-05-14T22:43:12+08:00 +2026/05/14 22:43:12.136, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.28, 65 +2026-05-14T22:43:17+08:00 +2026/05/14 22:43:17.157, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.08, 64 +2026-05-14T22:43:22+08:00 +2026/05/14 22:43:22.180, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.50, 64 +2026-05-14T22:43:27+08:00 +2026/05/14 22:43:27.203, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.40, 64 +2026-05-14T22:43:32+08:00 +2026/05/14 22:43:32.227, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.76, 64 +2026-05-14T22:43:37+08:00 +2026/05/14 22:43:37.253, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.92, 64 +2026-05-14T22:43:42+08:00 +2026/05/14 22:43:42.279, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.99, 64 +2026-05-14T22:43:47+08:00 +2026/05/14 22:43:47.302, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.38, 64 +2026-05-14T22:43:52+08:00 +2026/05/14 22:43:52.327, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.18, 64 +2026-05-14T22:43:57+08:00 +2026/05/14 22:43:57.350, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.33, 66 +2026-05-14T22:44:02+08:00 +2026/05/14 22:44:02.375, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.40, 66 +2026-05-14T22:44:07+08:00 +2026/05/14 22:44:07.401, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.68, 65 +2026-05-14T22:44:12+08:00 +2026/05/14 22:44:12.424, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.55, 66 +2026-05-14T22:44:17+08:00 +2026/05/14 22:44:17.451, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.92, 67 +2026-05-14T22:44:22+08:00 +2026/05/14 22:44:22.474, NVIDIA GeForce RTX 5090, 47, 24, 9607, 32607, 236.84, 59 +2026-05-14T22:44:27+08:00 +2026/05/14 22:44:27.498, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.97, 65 +2026-05-14T22:44:32+08:00 +2026/05/14 22:44:32.522, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 265.11, 65 +2026-05-14T22:44:37+08:00 +2026/05/14 22:44:37.547, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.42, 65 +2026-05-14T22:44:42+08:00 +2026/05/14 22:44:42.570, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.81, 66 +2026-05-14T22:44:47+08:00 +2026/05/14 22:44:47.595, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.69, 65 +2026-05-14T22:44:52+08:00 +2026/05/14 22:44:52.618, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.25, 65 +2026-05-14T22:44:57+08:00 +2026/05/14 22:44:57.677, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.70, 65 +2026-05-14T22:45:02+08:00 +2026/05/14 22:45:02.703, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.61, 66 +2026-05-14T22:45:07+08:00 +2026/05/14 22:45:07.745, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.53, 65 +2026-05-14T22:45:12+08:00 +2026/05/14 22:45:12.789, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.87, 65 +2026-05-14T22:45:17+08:00 +2026/05/14 22:45:17.813, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.08, 65 +2026-05-14T22:45:22+08:00 +2026/05/14 22:45:22.856, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.82, 65 +2026-05-14T22:45:27+08:00 +2026/05/14 22:45:27.926, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.62, 66 +2026-05-14T22:45:32+08:00 +2026/05/14 22:45:32.950, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.09, 66 +2026-05-14T22:45:37+08:00 +2026/05/14 22:45:38.028, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.04, 65 +2026-05-14T22:45:43+08:00 +2026/05/14 22:45:43.053, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.21, 66 +2026-05-14T22:45:48+08:00 +2026/05/14 22:45:48.093, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.88, 64 +2026-05-14T22:45:53+08:00 +2026/05/14 22:45:53.117, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.04, 64 +2026-05-14T22:45:58+08:00 +2026/05/14 22:45:58.158, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 361.89, 66 +2026-05-14T22:46:03+08:00 +2026/05/14 22:46:03.199, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.03, 65 +2026-05-14T22:46:08+08:00 +2026/05/14 22:46:08.244, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 363.04, 65 +2026-05-14T22:46:13+08:00 +2026/05/14 22:46:13.286, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.89, 66 +2026-05-14T22:46:18+08:00 +2026/05/14 22:46:18.328, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.14, 65 +2026-05-14T22:46:23+08:00 +2026/05/14 22:46:23.351, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 65 +2026-05-14T22:46:28+08:00 +2026/05/14 22:46:28.393, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.28, 64 +2026-05-14T22:46:33+08:00 +2026/05/14 22:46:33.417, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.69, 64 +2026-05-14T22:46:38+08:00 +2026/05/14 22:46:38.446, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 207.21, 59 +2026-05-14T22:46:43+08:00 +2026/05/14 22:46:43.471, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.13, 66 +2026-05-14T22:46:48+08:00 +2026/05/14 22:46:48.495, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.72, 66 +2026-05-14T22:46:53+08:00 +2026/05/14 22:46:53.518, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.89, 66 +2026-05-14T22:46:58+08:00 +2026/05/14 22:46:58.542, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.58, 65 +2026-05-14T22:47:03+08:00 +2026/05/14 22:47:03.571, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 281.97, 65 +2026-05-14T22:47:08+08:00 +2026/05/14 22:47:08.596, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.83, 66 +2026-05-14T22:47:13+08:00 +2026/05/14 22:47:13.619, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.02, 66 +2026-05-14T22:47:18+08:00 +2026/05/14 22:47:18.643, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.03, 65 +2026-05-14T22:47:23+08:00 +2026/05/14 22:47:23.665, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.53, 65 +2026-05-14T22:47:28+08:00 +2026/05/14 22:47:28.688, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.26, 66 +2026-05-14T22:47:33+08:00 +2026/05/14 22:47:33.715, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.10, 67 +2026-05-14T22:47:38+08:00 +2026/05/14 22:47:38.739, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.34, 67 +2026-05-14T22:47:43+08:00 +2026/05/14 22:47:43.763, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.96, 64 +2026-05-14T22:47:48+08:00 +2026/05/14 22:47:48.789, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.00, 64 +2026-05-14T22:47:53+08:00 +2026/05/14 22:47:53.814, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.88, 64 +2026-05-14T22:47:58+08:00 +2026/05/14 22:47:58.838, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.41, 64 +2026-05-14T22:48:03+08:00 +2026/05/14 22:48:03.861, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.79, 64 +2026-05-14T22:48:08+08:00 +2026/05/14 22:48:08.887, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.55, 65 +2026-05-14T22:48:13+08:00 +2026/05/14 22:48:13.910, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 284.59, 60 +2026-05-14T22:48:18+08:00 +2026/05/14 22:48:18.934, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 319.41, 64 +2026-05-14T22:48:23+08:00 +2026/05/14 22:48:23.974, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.08, 65 +2026-05-14T22:48:28+08:00 +2026/05/14 22:48:28.997, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.21, 64 +2026-05-14T22:48:34+08:00 +2026/05/14 22:48:34.022, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.79, 65 +2026-05-14T22:48:39+08:00 +2026/05/14 22:48:39.099, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.81, 64 +2026-05-14T22:48:44+08:00 +2026/05/14 22:48:44.139, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.22, 65 +2026-05-14T22:48:49+08:00 +2026/05/14 22:48:49.163, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.67, 66 +2026-05-14T22:48:54+08:00 +2026/05/14 22:48:54.206, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.47, 66 +2026-05-14T22:48:59+08:00 +2026/05/14 22:48:59.264, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.76, 66 +2026-05-14T22:49:04+08:00 +2026/05/14 22:49:04.300, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.61, 65 +2026-05-14T22:49:09+08:00 +2026/05/14 22:49:09.323, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.61, 65 +2026-05-14T22:49:14+08:00 +2026/05/14 22:49:14.346, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.48, 66 +2026-05-14T22:49:19+08:00 +2026/05/14 22:49:19.386, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.21, 66 +2026-05-14T22:49:24+08:00 +2026/05/14 22:49:24.409, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.60, 66 +2026-05-14T22:49:29+08:00 +2026/05/14 22:49:29.434, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.01, 66 +2026-05-14T22:49:34+08:00 +2026/05/14 22:49:34.458, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.10, 65 +2026-05-14T22:49:39+08:00 +2026/05/14 22:49:39.481, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.76, 65 +2026-05-14T22:49:44+08:00 +2026/05/14 22:49:44.505, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.28, 65 +2026-05-14T22:49:49+08:00 +2026/05/14 22:49:49.528, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.06, 66 +2026-05-14T22:49:54+08:00 +2026/05/14 22:49:54.553, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.47, 66 +2026-05-14T22:49:59+08:00 +2026/05/14 22:49:59.578, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.52, 66 +2026-05-14T22:50:04+08:00 +2026/05/14 22:50:04.602, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.74, 66 +2026-05-14T22:50:09+08:00 +2026/05/14 22:50:09.625, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 330.23, 66 +2026-05-14T22:50:14+08:00 +2026/05/14 22:50:14.652, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.86, 65 +2026-05-14T22:50:19+08:00 +2026/05/14 22:50:19.676, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.67, 66 +2026-05-14T22:50:24+08:00 +2026/05/14 22:50:24.698, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.38, 66 +2026-05-14T22:50:29+08:00 +2026/05/14 22:50:29.721, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.04, 65 +2026-05-14T22:50:34+08:00 +2026/05/14 22:50:34.745, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.21, 65 +2026-05-14T22:50:39+08:00 +2026/05/14 22:50:39.771, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.30, 66 +2026-05-14T22:50:44+08:00 +2026/05/14 22:50:44.798, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 66 +2026-05-14T22:50:49+08:00 +2026/05/14 22:50:49.820, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.39, 64 +2026-05-14T22:50:54+08:00 +2026/05/14 22:50:54.844, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.92, 64 +2026-05-14T22:50:59+08:00 +2026/05/14 22:50:59.867, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.63, 66 +2026-05-14T22:51:04+08:00 +2026/05/14 22:51:04.892, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.54, 66 +2026-05-14T22:51:09+08:00 +2026/05/14 22:51:09.916, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.91, 66 +2026-05-14T22:51:14+08:00 +2026/05/14 22:51:14.938, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.50, 66 +2026-05-14T22:51:19+08:00 +2026/05/14 22:51:19.965, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.64, 65 +2026-05-14T22:51:24+08:00 +2026/05/14 22:51:24.989, NVIDIA GeForce RTX 5090, 1, 0, 9607, 32607, 270.74, 59 +2026-05-14T22:51:30+08:00 +2026/05/14 22:51:30.017, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.43, 65 +2026-05-14T22:51:35+08:00 +2026/05/14 22:51:35.040, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.05, 66 +2026-05-14T22:51:40+08:00 +2026/05/14 22:51:40.064, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.44, 66 +2026-05-14T22:51:45+08:00 +2026/05/14 22:51:45.088, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.46, 66 +2026-05-14T22:51:50+08:00 +2026/05/14 22:51:50.116, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.24, 66 +2026-05-14T22:51:55+08:00 +2026/05/14 22:51:55.138, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.75, 64 +2026-05-14T22:52:00+08:00 +2026/05/14 22:52:00.163, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.03, 65 +2026-05-14T22:52:05+08:00 +2026/05/14 22:52:05.187, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.91, 64 +2026-05-14T22:52:10+08:00 +2026/05/14 22:52:10.211, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.02, 64 +2026-05-14T22:52:15+08:00 +2026/05/14 22:52:15.235, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.04, 65 +2026-05-14T22:52:20+08:00 +2026/05/14 22:52:20.258, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.30, 65 +2026-05-14T22:52:25+08:00 +2026/05/14 22:52:25.287, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.11, 66 +2026-05-14T22:52:30+08:00 +2026/05/14 22:52:30.311, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.97, 65 +2026-05-14T22:52:35+08:00 +2026/05/14 22:52:35.335, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 65 +2026-05-14T22:52:40+08:00 +2026/05/14 22:52:40.359, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.66, 65 +2026-05-14T22:52:45+08:00 +2026/05/14 22:52:45.381, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.49, 65 +2026-05-14T22:52:50+08:00 +2026/05/14 22:52:50.404, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.48, 65 +2026-05-14T22:52:55+08:00 +2026/05/14 22:52:55.430, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.29, 65 +2026-05-14T22:53:00+08:00 +2026/05/14 22:53:00.453, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.16, 65 +2026-05-14T22:53:05+08:00 +2026/05/14 22:53:05.477, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 363.50, 65 +2026-05-14T22:53:10+08:00 +2026/05/14 22:53:10.501, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.60, 66 +2026-05-14T22:53:15+08:00 +2026/05/14 22:53:15.524, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 364.94, 66 +2026-05-14T22:53:20+08:00 +2026/05/14 22:53:20.547, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.68, 64 +2026-05-14T22:53:25+08:00 +2026/05/14 22:53:25.575, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 274.15, 65 +2026-05-14T22:53:30+08:00 +2026/05/14 22:53:30.599, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.43, 66 +2026-05-14T22:53:35+08:00 +2026/05/14 22:53:35.628, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.20, 65 +2026-05-14T22:53:40+08:00 +2026/05/14 22:53:40.650, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.88, 65 +2026-05-14T22:53:45+08:00 +2026/05/14 22:53:45.673, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.25, 65 +2026-05-14T22:53:50+08:00 +2026/05/14 22:53:50.696, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.28, 66 +2026-05-14T22:53:55+08:00 +2026/05/14 22:53:55.723, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.25, 66 +2026-05-14T22:54:00+08:00 +2026/05/14 22:54:00.747, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.75, 65 +2026-05-14T22:54:05+08:00 +2026/05/14 22:54:05.772, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 294.44, 64 +2026-05-14T22:54:10+08:00 +2026/05/14 22:54:10.799, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.81, 64 +2026-05-14T22:54:15+08:00 +2026/05/14 22:54:15.823, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.24, 64 +2026-05-14T22:54:20+08:00 +2026/05/14 22:54:20.849, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.96, 64 +2026-05-14T22:54:25+08:00 +2026/05/14 22:54:25.871, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.88, 65 +2026-05-14T22:54:30+08:00 +2026/05/14 22:54:30.897, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.93, 66 +2026-05-14T22:54:35+08:00 +2026/05/14 22:54:35.920, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.81, 65 +2026-05-14T22:54:40+08:00 +2026/05/14 22:54:40.943, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.48, 65 +2026-05-14T22:54:45+08:00 +2026/05/14 22:54:45.969, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 347.95, 65 +2026-05-14T22:54:50+08:00 +2026/05/14 22:54:50.991, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.05, 65 +2026-05-14T22:54:56+08:00 +2026/05/14 22:54:56.018, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.91, 65 +2026-05-14T22:55:01+08:00 +2026/05/14 22:55:01.042, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.17, 65 +2026-05-14T22:55:06+08:00 +2026/05/14 22:55:06.065, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.26, 65 +2026-05-14T22:55:11+08:00 +2026/05/14 22:55:11.093, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.59, 65 +2026-05-14T22:55:16+08:00 +2026/05/14 22:55:16.117, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 66 +2026-05-14T22:55:21+08:00 +2026/05/14 22:55:21.140, NVIDIA GeForce RTX 5090, 13, 5, 9607, 32607, 249.93, 64 +2026-05-14T22:55:26+08:00 +2026/05/14 22:55:26.163, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.78, 66 +2026-05-14T22:55:31+08:00 +2026/05/14 22:55:31.189, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.29, 66 +2026-05-14T22:55:36+08:00 +2026/05/14 22:55:36.212, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.89, 65 +2026-05-14T22:55:41+08:00 +2026/05/14 22:55:41.237, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 65 +2026-05-14T22:55:46+08:00 +2026/05/14 22:55:46.262, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 65 +2026-05-14T22:55:51+08:00 +2026/05/14 22:55:51.285, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.88, 65 +2026-05-14T22:55:56+08:00 +2026/05/14 22:55:56.310, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 65 +2026-05-14T22:56:01+08:00 +2026/05/14 22:56:01.333, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 347.74, 66 +2026-05-14T22:56:06+08:00 +2026/05/14 22:56:06.357, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.79, 66 +2026-05-14T22:56:11+08:00 +2026/05/14 22:56:11.380, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.58, 65 +2026-05-14T22:56:16+08:00 +2026/05/14 22:56:16.404, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 66 +2026-05-14T22:56:21+08:00 +2026/05/14 22:56:21.430, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.04, 65 +2026-05-14T22:56:26+08:00 +2026/05/14 22:56:26.453, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.42, 66 +2026-05-14T22:56:31+08:00 +2026/05/14 22:56:31.476, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.15, 65 +2026-05-14T22:56:36+08:00 +2026/05/14 22:56:36.500, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 66 +2026-05-14T22:56:41+08:00 +2026/05/14 22:56:41.527, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.27, 64 +2026-05-14T22:56:46+08:00 +2026/05/14 22:56:46.550, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 355.70, 66 +2026-05-14T22:56:51+08:00 +2026/05/14 22:56:51.574, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.70, 65 +2026-05-14T22:56:56+08:00 +2026/05/14 22:56:56.601, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.70, 65 +2026-05-14T22:57:01+08:00 +2026/05/14 22:57:01.624, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.83, 65 +2026-05-14T22:57:06+08:00 +2026/05/14 22:57:06.647, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.23, 65 +2026-05-14T22:57:11+08:00 +2026/05/14 22:57:11.670, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.30, 66 +2026-05-14T22:57:16+08:00 +2026/05/14 22:57:16.693, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 301.42, 60 +2026-05-14T22:57:21+08:00 +2026/05/14 22:57:21.715, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.38, 64 +2026-05-14T22:57:26+08:00 +2026/05/14 22:57:26.739, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.36, 64 +2026-05-14T22:57:31+08:00 +2026/05/14 22:57:31.762, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.52, 65 +2026-05-14T22:57:36+08:00 +2026/05/14 22:57:36.789, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.87, 65 +2026-05-14T22:57:41+08:00 +2026/05/14 22:57:41.813, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.56, 66 +2026-05-14T22:57:46+08:00 +2026/05/14 22:57:46.836, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.48, 66 +2026-05-14T22:57:51+08:00 +2026/05/14 22:57:51.861, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.05, 66 +2026-05-14T22:57:56+08:00 +2026/05/14 22:57:56.887, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.63, 66 +2026-05-14T22:58:01+08:00 +2026/05/14 22:58:01.914, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.32, 66 +2026-05-14T22:58:06+08:00 +2026/05/14 22:58:06.936, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.48, 65 +2026-05-14T22:58:11+08:00 +2026/05/14 22:58:11.961, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.86, 66 +2026-05-14T22:58:16+08:00 +2026/05/14 22:58:16.986, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.58, 66 +2026-05-14T22:58:21+08:00 +2026/05/14 22:58:22.014, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.03, 65 +2026-05-14T22:58:27+08:00 +2026/05/14 22:58:27.038, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.57, 65 +2026-05-14T22:58:32+08:00 +2026/05/14 22:58:32.062, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 246.27, 63 +2026-05-14T22:58:37+08:00 +2026/05/14 22:58:37.085, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.92, 66 +2026-05-14T22:58:42+08:00 +2026/05/14 22:58:42.109, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.53, 65 +2026-05-14T22:58:47+08:00 +2026/05/14 22:58:47.131, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.49, 64 +2026-05-14T22:58:52+08:00 +2026/05/14 22:58:52.155, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.40, 65 +2026-05-14T22:58:57+08:00 +2026/05/14 22:58:57.178, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.03, 66 +2026-05-14T22:59:02+08:00 +2026/05/14 22:59:02.203, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.88, 66 +2026-05-14T22:59:07+08:00 +2026/05/14 22:59:07.226, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 251.99, 65 +2026-05-14T22:59:12+08:00 +2026/05/14 22:59:12.253, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.27, 65 +2026-05-14T22:59:17+08:00 +2026/05/14 22:59:17.275, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.11, 65 +2026-05-14T22:59:22+08:00 +2026/05/14 22:59:22.300, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.12, 65 +2026-05-14T22:59:27+08:00 +2026/05/14 22:59:27.323, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.45, 65 +2026-05-14T22:59:32+08:00 +2026/05/14 22:59:32.347, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.96, 65 +2026-05-14T22:59:37+08:00 +2026/05/14 22:59:37.371, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.71, 65 +2026-05-14T22:59:42+08:00 +2026/05/14 22:59:42.394, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.33, 65 +2026-05-14T22:59:47+08:00 +2026/05/14 22:59:47.419, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 298.89, 65 +2026-05-14T22:59:52+08:00 +2026/05/14 22:59:52.443, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.69, 65 +2026-05-14T22:59:57+08:00 +2026/05/14 22:59:57.470, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.15, 65 +2026-05-14T23:00:02+08:00 +2026/05/14 23:00:02.495, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.42, 66 +2026-05-14T23:00:07+08:00 +2026/05/14 23:00:07.519, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.57, 65 +2026-05-14T23:00:12+08:00 +2026/05/14 23:00:12.544, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.22, 66 +2026-05-14T23:00:17+08:00 +2026/05/14 23:00:17.569, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.17, 66 +2026-05-14T23:00:22+08:00 +2026/05/14 23:00:22.592, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 255.76, 64 +2026-05-14T23:00:27+08:00 +2026/05/14 23:00:27.616, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.84, 64 +2026-05-14T23:00:32+08:00 +2026/05/14 23:00:32.640, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 271.56, 59 +2026-05-14T23:00:37+08:00 +2026/05/14 23:00:37.663, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.52, 65 +2026-05-14T23:00:42+08:00 +2026/05/14 23:00:42.687, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.03, 66 +2026-05-14T23:00:47+08:00 +2026/05/14 23:00:47.713, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 364.84, 65 +2026-05-14T23:00:52+08:00 +2026/05/14 23:00:52.773, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.83, 66 +2026-05-14T23:00:57+08:00 +2026/05/14 23:00:57.797, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.13, 66 +2026-05-14T23:01:02+08:00 +2026/05/14 23:01:02.821, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.57, 65 +2026-05-14T23:01:07+08:00 +2026/05/14 23:01:07.864, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.75, 65 +2026-05-14T23:01:12+08:00 +2026/05/14 23:01:12.905, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.77, 66 +2026-05-14T23:01:17+08:00 +2026/05/14 23:01:17.929, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.13, 66 +2026-05-14T23:01:22+08:00 +2026/05/14 23:01:22.980, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.90, 66 +2026-05-14T23:01:27+08:00 +2026/05/14 23:01:28.004, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.20, 66 +2026-05-14T23:01:33+08:00 +2026/05/14 23:01:33.026, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.93, 65 +2026-05-14T23:01:38+08:00 +2026/05/14 23:01:38.081, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.79, 65 +2026-05-14T23:01:43+08:00 +2026/05/14 23:01:43.102, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 249.65, 59 +2026-05-14T23:01:48+08:00 +2026/05/14 23:01:48.147, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.60, 65 +2026-05-14T23:01:53+08:00 +2026/05/14 23:01:53.191, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.31, 65 +2026-05-14T23:01:58+08:00 +2026/05/14 23:01:58.264, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.29, 66 +2026-05-14T23:02:03+08:00 +2026/05/14 23:02:03.289, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.92, 66 +2026-05-14T23:02:08+08:00 +2026/05/14 23:02:08.311, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 365.64, 66 +2026-05-14T23:02:13+08:00 +2026/05/14 23:02:13.365, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.25, 66 +2026-05-14T23:02:18+08:00 +2026/05/14 23:02:18.391, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.13, 65 +2026-05-14T23:02:23+08:00 +2026/05/14 23:02:23.416, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.88, 65 +2026-05-14T23:02:28+08:00 +2026/05/14 23:02:28.440, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.32, 65 +2026-05-14T23:02:33+08:00 +2026/05/14 23:02:33.463, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.35, 66 +2026-05-14T23:02:38+08:00 +2026/05/14 23:02:38.486, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.11, 66 +2026-05-14T23:02:43+08:00 +2026/05/14 23:02:43.510, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.03, 65 +2026-05-14T23:02:48+08:00 +2026/05/14 23:02:48.533, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.70, 65 +2026-05-14T23:02:53+08:00 +2026/05/14 23:02:53.557, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.68, 64 +2026-05-14T23:02:58+08:00 +2026/05/14 23:02:58.587, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.31, 66 +2026-05-14T23:03:03+08:00 +2026/05/14 23:03:03.617, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.83, 66 +2026-05-14T23:03:08+08:00 +2026/05/14 23:03:08.639, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.15, 65 +2026-05-14T23:03:13+08:00 +2026/05/14 23:03:13.667, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 365.58, 66 +2026-05-14T23:03:18+08:00 +2026/05/14 23:03:18.690, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.93, 64 +2026-05-14T23:03:23+08:00 +2026/05/14 23:03:23.731, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.97, 65 +2026-05-14T23:03:28+08:00 +2026/05/14 23:03:28.771, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.41, 66 +2026-05-14T23:03:33+08:00 +2026/05/14 23:03:33.813, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 320.43, 60 +2026-05-14T23:03:38+08:00 +2026/05/14 23:03:38.836, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.28, 65 +2026-05-14T23:03:43+08:00 +2026/05/14 23:03:43.861, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.58, 65 +2026-05-14T23:03:48+08:00 +2026/05/14 23:03:48.883, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.87, 66 +2026-05-14T23:03:53+08:00 +2026/05/14 23:03:53.909, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.90, 66 +2026-05-14T23:03:58+08:00 +2026/05/14 23:03:58.933, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.63, 64 +2026-05-14T23:04:03+08:00 +2026/05/14 23:04:03.959, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.45, 66 +2026-05-14T23:04:08+08:00 +2026/05/14 23:04:08.983, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.70, 66 +2026-05-14T23:04:13+08:00 +2026/05/14 23:04:14.008, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.39, 65 +2026-05-14T23:04:19+08:00 +2026/05/14 23:04:19.052, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.79, 65 +2026-05-14T23:04:24+08:00 +2026/05/14 23:04:24.075, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 318.14, 65 +2026-05-14T23:04:29+08:00 +2026/05/14 23:04:29.099, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.10, 66 +2026-05-14T23:04:34+08:00 +2026/05/14 23:04:34.124, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.69, 66 +2026-05-14T23:04:39+08:00 +2026/05/14 23:04:39.152, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.12, 65 +2026-05-14T23:04:44+08:00 +2026/05/14 23:04:44.176, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.13, 66 +2026-05-14T23:04:49+08:00 +2026/05/14 23:04:49.200, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.10, 64 +2026-05-14T23:04:54+08:00 +2026/05/14 23:04:54.223, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.11, 64 +2026-05-14T23:04:59+08:00 +2026/05/14 23:04:59.248, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.03, 64 +2026-05-14T23:05:04+08:00 +2026/05/14 23:05:04.271, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.72, 64 +2026-05-14T23:05:09+08:00 +2026/05/14 23:05:09.297, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.75, 64 +2026-05-14T23:05:14+08:00 +2026/05/14 23:05:14.320, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.96, 64 +2026-05-14T23:05:19+08:00 +2026/05/14 23:05:19.345, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.27, 64 +2026-05-14T23:05:24+08:00 +2026/05/14 23:05:24.368, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.05, 64 +2026-05-14T23:05:29+08:00 +2026/05/14 23:05:29.391, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.73, 66 +2026-05-14T23:05:34+08:00 +2026/05/14 23:05:34.413, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.78, 65 +2026-05-14T23:05:39+08:00 +2026/05/14 23:05:39.440, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.79, 66 +2026-05-14T23:05:44+08:00 +2026/05/14 23:05:44.464, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 320.91, 65 +2026-05-14T23:05:49+08:00 +2026/05/14 23:05:49.487, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 355.09, 65 +2026-05-14T23:05:54+08:00 +2026/05/14 23:05:54.515, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.97, 66 +2026-05-14T23:05:59+08:00 +2026/05/14 23:05:59.540, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.15, 66 +2026-05-14T23:06:04+08:00 +2026/05/14 23:06:04.564, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.84, 66 +2026-05-14T23:06:09+08:00 +2026/05/14 23:06:09.585, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 363.64, 64 +2026-05-14T23:06:14+08:00 +2026/05/14 23:06:14.612, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.76, 65 +2026-05-14T23:06:19+08:00 +2026/05/14 23:06:19.635, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.92, 64 +2026-05-14T23:06:24+08:00 +2026/05/14 23:06:24.658, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.05, 64 +2026-05-14T23:06:29+08:00 +2026/05/14 23:06:29.681, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.35, 64 +2026-05-14T23:06:34+08:00 +2026/05/14 23:06:34.708, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.32, 64 +2026-05-14T23:06:39+08:00 +2026/05/14 23:06:39.732, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.30, 64 +2026-05-14T23:06:44+08:00 +2026/05/14 23:06:44.756, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.26, 66 +2026-05-14T23:06:49+08:00 +2026/05/14 23:06:49.780, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.01, 65 +2026-05-14T23:06:54+08:00 +2026/05/14 23:06:54.803, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.62, 66 +2026-05-14T23:06:59+08:00 +2026/05/14 23:06:59.827, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.42, 66 +2026-05-14T23:07:04+08:00 +2026/05/14 23:07:04.851, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.34, 65 +2026-05-14T23:07:09+08:00 +2026/05/14 23:07:09.877, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.92, 65 +2026-05-14T23:07:14+08:00 +2026/05/14 23:07:14.900, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.85, 65 +2026-05-14T23:07:19+08:00 +2026/05/14 23:07:19.927, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 263.47, 65 +2026-05-14T23:07:24+08:00 +2026/05/14 23:07:24.950, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.32, 65 +2026-05-14T23:07:29+08:00 +2026/05/14 23:07:29.974, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.76, 65 +2026-05-14T23:07:34+08:00 +2026/05/14 23:07:34.997, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.45, 66 +2026-05-14T23:07:40+08:00 +2026/05/14 23:07:40.020, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.95, 65 +2026-05-14T23:07:45+08:00 +2026/05/14 23:07:45.045, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 364.96, 65 +2026-05-14T23:07:50+08:00 +2026/05/14 23:07:50.068, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.58, 65 +2026-05-14T23:07:55+08:00 +2026/05/14 23:07:55.091, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.76, 65 +2026-05-14T23:08:00+08:00 +2026/05/14 23:08:00.114, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.66, 65 +2026-05-14T23:08:05+08:00 +2026/05/14 23:08:05.137, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.49, 65 +2026-05-14T23:08:10+08:00 +2026/05/14 23:08:10.160, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.71, 66 +2026-05-14T23:08:15+08:00 +2026/05/14 23:08:15.183, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 66 +2026-05-14T23:08:20+08:00 +2026/05/14 23:08:20.206, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.74, 66 +2026-05-14T23:08:25+08:00 +2026/05/14 23:08:25.230, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.12, 66 +2026-05-14T23:08:30+08:00 +2026/05/14 23:08:30.253, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.77, 65 +2026-05-14T23:08:35+08:00 +2026/05/14 23:08:35.276, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 263.01, 65 +2026-05-14T23:08:40+08:00 +2026/05/14 23:08:40.298, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.18, 66 +2026-05-14T23:08:45+08:00 +2026/05/14 23:08:45.323, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.42, 65 +2026-05-14T23:08:50+08:00 +2026/05/14 23:08:50.351, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.92, 66 +2026-05-14T23:08:55+08:00 +2026/05/14 23:08:55.379, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.02, 65 +2026-05-14T23:09:00+08:00 +2026/05/14 23:09:00.402, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.91, 65 +2026-05-14T23:09:05+08:00 +2026/05/14 23:09:05.427, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 66 +2026-05-14T23:09:10+08:00 +2026/05/14 23:09:10.452, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 243.86, 65 +2026-05-14T23:09:15+08:00 +2026/05/14 23:09:15.475, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.39, 66 +2026-05-14T23:09:20+08:00 +2026/05/14 23:09:20.498, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.20, 65 +2026-05-14T23:09:25+08:00 +2026/05/14 23:09:25.521, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.23, 66 +2026-05-14T23:09:30+08:00 +2026/05/14 23:09:30.547, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.94, 65 +2026-05-14T23:09:35+08:00 +2026/05/14 23:09:35.571, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.20, 65 +2026-05-14T23:09:40+08:00 +2026/05/14 23:09:40.594, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.36, 65 +2026-05-14T23:09:45+08:00 +2026/05/14 23:09:45.617, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.43, 65 +2026-05-14T23:09:50+08:00 +2026/05/14 23:09:50.643, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.12, 65 +2026-05-14T23:09:55+08:00 +2026/05/14 23:09:55.666, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.07, 65 +2026-05-14T23:10:00+08:00 +2026/05/14 23:10:00.694, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.03, 65 +2026-05-14T23:10:05+08:00 +2026/05/14 23:10:05.718, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.61, 65 +2026-05-14T23:10:10+08:00 +2026/05/14 23:10:10.740, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.42, 64 +2026-05-14T23:10:15+08:00 +2026/05/14 23:10:15.764, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.68, 64 +2026-05-14T23:10:20+08:00 +2026/05/14 23:10:20.790, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.29, 64 +2026-05-14T23:10:25+08:00 +2026/05/14 23:10:25.814, NVIDIA GeForce RTX 5090, 1, 0, 9607, 32607, 265.15, 59 +2026-05-14T23:10:30+08:00 +2026/05/14 23:10:30.842, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.44, 66 +2026-05-14T23:10:35+08:00 +2026/05/14 23:10:35.865, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.76, 65 +2026-05-14T23:10:40+08:00 +2026/05/14 23:10:40.889, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.72, 65 +2026-05-14T23:10:45+08:00 +2026/05/14 23:10:45.913, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.83, 65 +2026-05-14T23:10:50+08:00 +2026/05/14 23:10:50.936, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.76, 66 +2026-05-14T23:10:55+08:00 +2026/05/14 23:10:55.960, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.22, 66 +2026-05-14T23:11:00+08:00 +2026/05/14 23:11:00.983, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.46, 66 +2026-05-14T23:11:05+08:00 +2026/05/14 23:11:06.006, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.64, 66 +2026-05-14T23:11:11+08:00 +2026/05/14 23:11:11.031, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 355.03, 64 +2026-05-14T23:11:16+08:00 +2026/05/14 23:11:16.055, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.75, 65 +2026-05-14T23:11:21+08:00 +2026/05/14 23:11:21.077, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.64, 65 +2026-05-14T23:11:26+08:00 +2026/05/14 23:11:26.105, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.71, 65 +2026-05-14T23:11:31+08:00 +2026/05/14 23:11:31.129, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.88, 65 +2026-05-14T23:11:36+08:00 +2026/05/14 23:11:36.153, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.29, 66 +2026-05-14T23:11:41+08:00 +2026/05/14 23:11:41.180, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.57, 66 +2026-05-14T23:11:46+08:00 +2026/05/14 23:11:46.204, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.70, 66 +2026-05-14T23:11:51+08:00 +2026/05/14 23:11:51.227, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.56, 66 +2026-05-14T23:11:56+08:00 +2026/05/14 23:11:56.288, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.29, 66 +2026-05-14T23:12:01+08:00 +2026/05/14 23:12:01.312, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.85, 66 +2026-05-14T23:12:06+08:00 +2026/05/14 23:12:06.387, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.13, 65 +2026-05-14T23:12:11+08:00 +2026/05/14 23:12:11.412, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.96, 65 +2026-05-14T23:12:16+08:00 +2026/05/14 23:12:16.453, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 280.09, 65 +2026-05-14T23:12:21+08:00 +2026/05/14 23:12:21.495, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.41, 65 +2026-05-14T23:12:26+08:00 +2026/05/14 23:12:26.520, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.72, 65 +2026-05-14T23:12:31+08:00 +2026/05/14 23:12:31.544, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 364.49, 66 +2026-05-14T23:12:36+08:00 +2026/05/14 23:12:36.569, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.83, 66 +2026-05-14T23:12:41+08:00 +2026/05/14 23:12:41.594, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.91, 65 +2026-05-14T23:12:46+08:00 +2026/05/14 23:12:46.620, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 364.06, 66 +2026-05-14T23:12:51+08:00 +2026/05/14 23:12:51.645, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 364.35, 65 +2026-05-14T23:12:56+08:00 +2026/05/14 23:12:56.667, NVIDIA GeForce RTX 5090, 70, 32, 9607, 32607, 337.31, 65 +2026-05-14T23:13:01+08:00 +2026/05/14 23:13:01.689, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.50, 66 +2026-05-14T23:13:06+08:00 +2026/05/14 23:13:06.713, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.29, 65 +2026-05-14T23:13:11+08:00 +2026/05/14 23:13:11.736, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 364.87, 66 +2026-05-14T23:13:16+08:00 +2026/05/14 23:13:16.765, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 364.78, 65 +2026-05-14T23:13:21+08:00 +2026/05/14 23:13:21.787, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.21, 65 +2026-05-14T23:13:26+08:00 +2026/05/14 23:13:26.811, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 364.39, 66 +2026-05-14T23:13:31+08:00 +2026/05/14 23:13:31.834, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 364.58, 65 +2026-05-14T23:13:36+08:00 +2026/05/14 23:13:36.861, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.08, 64 +2026-05-14T23:13:41+08:00 +2026/05/14 23:13:41.884, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.87, 66 +2026-05-14T23:13:46+08:00 +2026/05/14 23:13:46.908, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.79, 66 +2026-05-14T23:13:51+08:00 +2026/05/14 23:13:51.933, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.48, 65 +2026-05-14T23:13:56+08:00 +2026/05/14 23:13:56.955, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 363.96, 65 +2026-05-14T23:14:01+08:00 +2026/05/14 23:14:01.978, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.93, 66 +2026-05-14T23:14:06+08:00 +2026/05/14 23:14:07.003, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.95, 65 +2026-05-14T23:14:12+08:00 +2026/05/14 23:14:12.026, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.12, 66 +2026-05-14T23:14:17+08:00 +2026/05/14 23:14:17.054, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.18, 65 +2026-05-14T23:14:22+08:00 +2026/05/14 23:14:22.114, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.94, 65 +2026-05-14T23:14:27+08:00 +2026/05/14 23:14:27.138, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.12, 66 +2026-05-14T23:14:32+08:00 +2026/05/14 23:14:32.161, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.96, 64 +2026-05-14T23:14:37+08:00 +2026/05/14 23:14:37.203, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.07, 64 +2026-05-14T23:14:42+08:00 +2026/05/14 23:14:42.226, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.27, 64 +2026-05-14T23:14:47+08:00 +2026/05/14 23:14:47.282, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.55, 65 +2026-05-14T23:14:52+08:00 +2026/05/14 23:14:52.306, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.21, 64 +2026-05-14T23:14:57+08:00 +2026/05/14 23:14:57.328, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.73, 65 +2026-05-14T23:15:02+08:00 +2026/05/14 23:15:02.352, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.66, 65 +2026-05-14T23:15:07+08:00 +2026/05/14 23:15:07.394, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.31, 65 +2026-05-14T23:15:12+08:00 +2026/05/14 23:15:12.435, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.40, 66 +2026-05-14T23:15:17+08:00 +2026/05/14 23:15:17.458, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.20, 65 +2026-05-14T23:15:22+08:00 +2026/05/14 23:15:22.481, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.10, 66 +2026-05-14T23:15:27+08:00 +2026/05/14 23:15:27.505, NVIDIA GeForce RTX 5090, 6, 6, 9607, 32607, 269.57, 64 +2026-05-14T23:15:32+08:00 +2026/05/14 23:15:32.528, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.53, 65 +2026-05-14T23:15:37+08:00 +2026/05/14 23:15:37.552, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.91, 65 +2026-05-14T23:15:42+08:00 +2026/05/14 23:15:42.581, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.05, 65 +2026-05-14T23:15:47+08:00 +2026/05/14 23:15:47.605, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.38, 65 +2026-05-14T23:15:52+08:00 +2026/05/14 23:15:52.629, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.46, 65 +2026-05-14T23:15:57+08:00 +2026/05/14 23:15:57.652, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.13, 66 +2026-05-14T23:16:02+08:00 +2026/05/14 23:16:02.676, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.37, 66 +2026-05-14T23:16:07+08:00 +2026/05/14 23:16:07.700, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 261.90, 64 +2026-05-14T23:16:12+08:00 +2026/05/14 23:16:12.724, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.36, 64 +2026-05-14T23:16:17+08:00 +2026/05/14 23:16:17.746, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.76, 64 +2026-05-14T23:16:22+08:00 +2026/05/14 23:16:22.771, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.64, 64 +2026-05-14T23:16:27+08:00 +2026/05/14 23:16:27.794, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 64 +2026-05-14T23:16:32+08:00 +2026/05/14 23:16:32.820, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 64 +2026-05-14T23:16:37+08:00 +2026/05/14 23:16:37.843, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 315.05, 60 +2026-05-14T23:16:42+08:00 +2026/05/14 23:16:42.864, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.36, 65 +2026-05-14T23:16:47+08:00 +2026/05/14 23:16:47.890, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.95, 64 +2026-05-14T23:16:52+08:00 +2026/05/14 23:16:52.917, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.05, 64 +2026-05-14T23:16:57+08:00 +2026/05/14 23:16:57.941, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.09, 64 +2026-05-14T23:17:02+08:00 +2026/05/14 23:17:02.965, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.49, 65 +2026-05-14T23:17:07+08:00 +2026/05/14 23:17:07.988, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.75, 65 +2026-05-14T23:17:12+08:00 +2026/05/14 23:17:13.012, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.21, 66 +2026-05-14T23:17:18+08:00 +2026/05/14 23:17:18.036, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.53, 65 +2026-05-14T23:17:23+08:00 +2026/05/14 23:17:23.059, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.05, 65 +2026-05-14T23:17:28+08:00 +2026/05/14 23:17:28.082, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.95, 65 +2026-05-14T23:17:33+08:00 +2026/05/14 23:17:33.107, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.65, 66 +2026-05-14T23:17:38+08:00 +2026/05/14 23:17:38.130, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.41, 64 +2026-05-14T23:17:43+08:00 +2026/05/14 23:17:43.154, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.83, 65 +2026-05-14T23:17:48+08:00 +2026/05/14 23:17:48.177, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.69, 66 +2026-05-14T23:17:53+08:00 +2026/05/14 23:17:53.202, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.70, 66 +2026-05-14T23:17:58+08:00 +2026/05/14 23:17:58.226, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.22, 64 +2026-05-14T23:18:03+08:00 +2026/05/14 23:18:03.249, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.02, 66 +2026-05-14T23:18:08+08:00 +2026/05/14 23:18:08.275, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.36, 64 +2026-05-14T23:18:13+08:00 +2026/05/14 23:18:13.298, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.45, 65 +2026-05-14T23:18:18+08:00 +2026/05/14 23:18:18.323, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.78, 67 +2026-05-14T23:18:23+08:00 +2026/05/14 23:18:23.346, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.67, 64 +2026-05-14T23:18:28+08:00 +2026/05/14 23:18:28.378, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.42, 66 +2026-05-14T23:18:33+08:00 +2026/05/14 23:18:33.403, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.75, 65 +2026-05-14T23:18:38+08:00 +2026/05/14 23:18:38.425, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.11, 65 +2026-05-14T23:18:43+08:00 +2026/05/14 23:18:43.478, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.17, 65 +2026-05-14T23:18:48+08:00 +2026/05/14 23:18:48.501, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.75, 66 +2026-05-14T23:18:53+08:00 +2026/05/14 23:18:53.529, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.36, 66 +2026-05-14T23:18:58+08:00 +2026/05/14 23:18:58.571, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 65 +2026-05-14T23:19:03+08:00 +2026/05/14 23:19:03.595, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.21, 66 +2026-05-14T23:19:08+08:00 +2026/05/14 23:19:08.636, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.15, 65 +2026-05-14T23:19:13+08:00 +2026/05/14 23:19:13.697, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.74, 66 +2026-05-14T23:19:18+08:00 +2026/05/14 23:19:18.723, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.54, 65 +2026-05-14T23:19:23+08:00 +2026/05/14 23:19:23.748, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 253.82, 65 +2026-05-14T23:19:28+08:00 +2026/05/14 23:19:28.791, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.61, 65 +2026-05-14T23:19:33+08:00 +2026/05/14 23:19:33.832, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.31, 65 +2026-05-14T23:19:38+08:00 +2026/05/14 23:19:38.855, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 66 +2026-05-14T23:19:43+08:00 +2026/05/14 23:19:43.880, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 366.08, 66 +2026-05-14T23:19:48+08:00 +2026/05/14 23:19:48.905, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.61, 66 +2026-05-14T23:19:53+08:00 +2026/05/14 23:19:53.952, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.10, 64 +2026-05-14T23:19:58+08:00 +2026/05/14 23:19:58.975, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.05, 66 +2026-05-14T23:20:04+08:00 +2026/05/14 23:20:04.018, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.11, 65 +2026-05-14T23:20:09+08:00 +2026/05/14 23:20:09.060, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 65 +2026-05-14T23:20:14+08:00 +2026/05/14 23:20:14.101, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.98, 64 +2026-05-14T23:20:19+08:00 +2026/05/14 23:20:19.156, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.93, 65 +2026-05-14T23:20:24+08:00 +2026/05/14 23:20:24.180, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 65 +2026-05-14T23:20:29+08:00 +2026/05/14 23:20:29.238, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.82, 65 +2026-05-14T23:20:34+08:00 +2026/05/14 23:20:34.265, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.88, 64 +2026-05-14T23:20:39+08:00 +2026/05/14 23:20:39.288, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.51, 65 +2026-05-14T23:20:44+08:00 +2026/05/14 23:20:44.365, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.50, 64 +2026-05-14T23:20:49+08:00 +2026/05/14 23:20:49.388, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.74, 64 +2026-05-14T23:20:54+08:00 +2026/05/14 23:20:54.412, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.09, 64 +2026-05-14T23:20:59+08:00 +2026/05/14 23:20:59.451, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.56, 65 +2026-05-14T23:21:04+08:00 +2026/05/14 23:21:04.473, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.83, 64 +2026-05-14T23:21:09+08:00 +2026/05/14 23:21:09.496, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.93, 66 +2026-05-14T23:21:14+08:00 +2026/05/14 23:21:14.521, NVIDIA GeForce RTX 5090, 76, 34, 9607, 32607, 250.43, 59 +2026-05-14T23:21:19+08:00 +2026/05/14 23:21:19.544, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.93, 65 +2026-05-14T23:21:24+08:00 +2026/05/14 23:21:24.567, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.15, 66 +2026-05-14T23:21:29+08:00 +2026/05/14 23:21:29.589, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.43, 65 +2026-05-14T23:21:34+08:00 +2026/05/14 23:21:34.613, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.46, 65 +2026-05-14T23:21:39+08:00 +2026/05/14 23:21:39.639, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 362.66, 65 +2026-05-14T23:21:44+08:00 +2026/05/14 23:21:44.663, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.46, 65 +2026-05-14T23:21:49+08:00 +2026/05/14 23:21:49.690, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.86, 65 +2026-05-14T23:21:54+08:00 +2026/05/14 23:21:54.712, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 302.52, 65 +2026-05-14T23:21:59+08:00 +2026/05/14 23:21:59.736, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.96, 66 +2026-05-14T23:22:04+08:00 +2026/05/14 23:22:04.763, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.17, 66 +2026-05-14T23:22:09+08:00 +2026/05/14 23:22:09.787, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.07, 65 +2026-05-14T23:22:14+08:00 +2026/05/14 23:22:14.813, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.46, 65 +2026-05-14T23:22:19+08:00 +2026/05/14 23:22:19.836, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.53, 66 +2026-05-14T23:22:24+08:00 +2026/05/14 23:22:24.863, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.17, 66 +2026-05-14T23:22:29+08:00 +2026/05/14 23:22:29.892, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.43, 66 +2026-05-14T23:22:34+08:00 +2026/05/14 23:22:34.914, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.18, 65 +2026-05-14T23:22:39+08:00 +2026/05/14 23:22:39.940, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.47, 66 +2026-05-14T23:22:44+08:00 +2026/05/14 23:22:44.965, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.72, 66 +2026-05-14T23:22:49+08:00 +2026/05/14 23:22:49.987, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.70, 66 +2026-05-14T23:22:54+08:00 +2026/05/14 23:22:55.009, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.26, 66 +2026-05-14T23:23:00+08:00 +2026/05/14 23:23:00.032, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.18, 65 +2026-05-14T23:23:05+08:00 +2026/05/14 23:23:05.054, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.76, 66 +2026-05-14T23:23:10+08:00 +2026/05/14 23:23:10.077, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.47, 65 +2026-05-14T23:23:15+08:00 +2026/05/14 23:23:15.100, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.00, 65 +2026-05-14T23:23:20+08:00 +2026/05/14 23:23:20.124, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.15, 65 +2026-05-14T23:23:25+08:00 +2026/05/14 23:23:25.147, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.95, 66 +2026-05-14T23:23:30+08:00 +2026/05/14 23:23:30.171, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.02, 65 +2026-05-14T23:23:35+08:00 +2026/05/14 23:23:35.193, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.54, 65 +2026-05-14T23:23:40+08:00 +2026/05/14 23:23:40.219, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.04, 65 +2026-05-14T23:23:45+08:00 +2026/05/14 23:23:45.243, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.65, 64 +2026-05-14T23:23:50+08:00 +2026/05/14 23:23:50.266, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.10, 64 +2026-05-14T23:23:55+08:00 +2026/05/14 23:23:55.290, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.83, 65 +2026-05-14T23:24:00+08:00 +2026/05/14 23:24:00.316, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.45, 65 +2026-05-14T23:24:05+08:00 +2026/05/14 23:24:05.341, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 282.48, 59 +2026-05-14T23:24:10+08:00 +2026/05/14 23:24:10.382, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 363.57, 66 +2026-05-14T23:24:15+08:00 +2026/05/14 23:24:15.426, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 363.24, 66 +2026-05-14T23:24:20+08:00 +2026/05/14 23:24:20.452, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 363.48, 66 +2026-05-14T23:24:25+08:00 +2026/05/14 23:24:25.475, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.19, 66 +2026-05-14T23:24:30+08:00 +2026/05/14 23:24:30.500, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 363.90, 66 +2026-05-14T23:24:35+08:00 +2026/05/14 23:24:35.523, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.04, 65 +2026-05-14T23:24:40+08:00 +2026/05/14 23:24:40.567, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.53, 66 +2026-05-14T23:24:45+08:00 +2026/05/14 23:24:45.637, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.17, 65 +2026-05-14T23:24:50+08:00 +2026/05/14 23:24:50.662, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.66, 65 +2026-05-14T23:24:55+08:00 +2026/05/14 23:24:55.735, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.17, 66 +2026-05-14T23:25:00+08:00 +2026/05/14 23:25:00.758, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.51, 65 +2026-05-14T23:25:05+08:00 +2026/05/14 23:25:05.832, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.63, 66 +2026-05-14T23:25:10+08:00 +2026/05/14 23:25:10.855, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.76, 65 +2026-05-14T23:25:15+08:00 +2026/05/14 23:25:15.931, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.82, 65 +2026-05-14T23:25:20+08:00 +2026/05/14 23:25:20.953, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.55, 65 +2026-05-14T23:25:25+08:00 +2026/05/14 23:25:25.975, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 229.16, 64 +2026-05-14T23:25:31+08:00 +2026/05/14 23:25:31.050, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.60, 65 +2026-05-14T23:25:36+08:00 +2026/05/14 23:25:36.073, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.36, 65 +2026-05-14T23:25:41+08:00 +2026/05/14 23:25:41.141, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.81, 65 +2026-05-14T23:25:46+08:00 +2026/05/14 23:25:46.201, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.51, 65 +2026-05-14T23:25:51+08:00 +2026/05/14 23:25:51.230, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.52, 65 +2026-05-14T23:25:56+08:00 +2026/05/14 23:25:56.262, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.72, 65 +2026-05-14T23:26:01+08:00 +2026/05/14 23:26:01.297, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.34, 65 +2026-05-14T23:26:06+08:00 +2026/05/14 23:26:06.348, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.20, 65 +2026-05-14T23:26:11+08:00 +2026/05/14 23:26:11.389, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.16, 66 +2026-05-14T23:26:16+08:00 +2026/05/14 23:26:16.422, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.92, 65 +2026-05-14T23:26:21+08:00 +2026/05/14 23:26:21.459, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.53, 65 +2026-05-14T23:26:26+08:00 +2026/05/14 23:26:26.482, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.55, 65 +2026-05-14T23:26:31+08:00 +2026/05/14 23:26:31.509, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 364.14, 66 +2026-05-14T23:26:36+08:00 +2026/05/14 23:26:36.582, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 364.20, 66 +2026-05-14T23:26:41+08:00 +2026/05/14 23:26:41.605, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 364.13, 65 +2026-05-14T23:26:46+08:00 +2026/05/14 23:26:46.646, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.74, 65 +2026-05-14T23:26:51+08:00 +2026/05/14 23:26:51.669, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.35, 65 +2026-05-14T23:26:56+08:00 +2026/05/14 23:26:56.692, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.48, 66 +2026-05-14T23:27:01+08:00 +2026/05/14 23:27:01.715, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.20, 65 +2026-05-14T23:27:06+08:00 +2026/05/14 23:27:06.740, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 248.50, 64 +2026-05-14T23:27:11+08:00 +2026/05/14 23:27:11.765, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.77, 64 +2026-05-14T23:27:16+08:00 +2026/05/14 23:27:16.791, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.41, 65 +2026-05-14T23:27:21+08:00 +2026/05/14 23:27:21.816, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.43, 64 +2026-05-14T23:27:26+08:00 +2026/05/14 23:27:26.840, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.82, 64 +2026-05-14T23:27:31+08:00 +2026/05/14 23:27:31.865, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.04, 64 +2026-05-14T23:27:36+08:00 +2026/05/14 23:27:36.888, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.85, 64 +2026-05-14T23:27:41+08:00 +2026/05/14 23:27:41.912, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.83, 66 +2026-05-14T23:27:46+08:00 +2026/05/14 23:27:46.937, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.95, 65 +2026-05-14T23:27:51+08:00 +2026/05/14 23:27:51.961, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.36, 65 +2026-05-14T23:27:56+08:00 +2026/05/14 23:27:56.989, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 218.37, 63 +2026-05-14T23:28:01+08:00 +2026/05/14 23:28:02.011, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 65 +2026-05-14T23:28:07+08:00 +2026/05/14 23:28:07.036, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.95, 66 +2026-05-14T23:28:12+08:00 +2026/05/14 23:28:12.063, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.36, 66 +2026-05-14T23:28:17+08:00 +2026/05/14 23:28:17.089, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.62, 64 +2026-05-14T23:28:22+08:00 +2026/05/14 23:28:22.117, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.72, 65 +2026-05-14T23:28:27+08:00 +2026/05/14 23:28:27.140, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.10, 65 +2026-05-14T23:28:32+08:00 +2026/05/14 23:28:32.166, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.89, 65 +2026-05-14T23:28:37+08:00 +2026/05/14 23:28:37.189, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.73, 65 +2026-05-14T23:28:42+08:00 +2026/05/14 23:28:42.213, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.59, 65 +2026-05-14T23:28:47+08:00 +2026/05/14 23:28:47.238, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 65 +2026-05-14T23:28:52+08:00 +2026/05/14 23:28:52.261, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.88, 65 +2026-05-14T23:28:57+08:00 +2026/05/14 23:28:57.287, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 292.98, 59 +2026-05-14T23:29:02+08:00 +2026/05/14 23:29:02.309, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 365.19, 65 +2026-05-14T23:29:07+08:00 +2026/05/14 23:29:07.331, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.07, 65 +2026-05-14T23:29:12+08:00 +2026/05/14 23:29:12.354, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.36, 65 +2026-05-14T23:29:17+08:00 +2026/05/14 23:29:17.378, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.26, 66 +2026-05-14T23:29:22+08:00 +2026/05/14 23:29:22.402, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 66 +2026-05-14T23:29:27+08:00 +2026/05/14 23:29:27.427, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.85, 64 +2026-05-14T23:29:32+08:00 +2026/05/14 23:29:32.451, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.05, 64 +2026-05-14T23:29:37+08:00 +2026/05/14 23:29:37.474, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.35, 66 +2026-05-14T23:29:42+08:00 +2026/05/14 23:29:42.497, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 65 +2026-05-14T23:29:47+08:00 +2026/05/14 23:29:47.520, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 363.94, 65 +2026-05-14T23:29:52+08:00 +2026/05/14 23:29:52.544, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.84, 65 +2026-05-14T23:29:57+08:00 +2026/05/14 23:29:57.604, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.03, 65 +2026-05-14T23:30:02+08:00 +2026/05/14 23:30:02.628, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 345.29, 62 +2026-05-14T23:30:07+08:00 +2026/05/14 23:30:07.649, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.88, 65 +2026-05-14T23:30:12+08:00 +2026/05/14 23:30:12.673, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 255.37, 64 +2026-05-14T23:30:17+08:00 +2026/05/14 23:30:17.696, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.06, 64 +2026-05-14T23:30:22+08:00 +2026/05/14 23:30:22.723, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.69, 64 +2026-05-14T23:30:27+08:00 +2026/05/14 23:30:27.748, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 355.65, 66 +2026-05-14T23:30:32+08:00 +2026/05/14 23:30:32.770, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.08, 65 +2026-05-14T23:30:37+08:00 +2026/05/14 23:30:37.794, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.20, 65 +2026-05-14T23:30:42+08:00 +2026/05/14 23:30:42.817, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.27, 66 +2026-05-14T23:30:47+08:00 +2026/05/14 23:30:47.842, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.03, 66 +2026-05-14T23:30:52+08:00 +2026/05/14 23:30:52.864, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 65 +2026-05-14T23:30:57+08:00 +2026/05/14 23:30:57.888, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.20, 65 +2026-05-14T23:31:02+08:00 +2026/05/14 23:31:02.914, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.46, 65 +2026-05-14T23:31:07+08:00 +2026/05/14 23:31:07.937, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.54, 65 +2026-05-14T23:31:12+08:00 +2026/05/14 23:31:12.964, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.32, 65 +2026-05-14T23:31:17+08:00 +2026/05/14 23:31:17.987, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.64, 65 +2026-05-14T23:31:22+08:00 +2026/05/14 23:31:23.011, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.58, 66 +2026-05-14T23:31:28+08:00 +2026/05/14 23:31:28.035, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 263.75, 65 +2026-05-14T23:31:33+08:00 +2026/05/14 23:31:33.059, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.31, 66 +2026-05-14T23:31:38+08:00 +2026/05/14 23:31:38.133, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.77, 65 +2026-05-14T23:31:43+08:00 +2026/05/14 23:31:43.158, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 65 +2026-05-14T23:31:48+08:00 +2026/05/14 23:31:48.235, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.00, 65 +2026-05-14T23:31:53+08:00 +2026/05/14 23:31:53.269, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.67, 65 +2026-05-14T23:31:58+08:00 +2026/05/14 23:31:58.307, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.42, 66 +2026-05-14T23:32:03+08:00 +2026/05/14 23:32:03.332, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.62, 65 +2026-05-14T23:32:08+08:00 +2026/05/14 23:32:08.373, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 316.13, 65 +2026-05-14T23:32:13+08:00 +2026/05/14 23:32:13.398, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 65 +2026-05-14T23:32:18+08:00 +2026/05/14 23:32:18.441, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.17, 64 +2026-05-14T23:32:23+08:00 +2026/05/14 23:32:23.465, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.27, 65 +2026-05-14T23:32:28+08:00 +2026/05/14 23:32:28.494, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.71, 65 +2026-05-14T23:32:33+08:00 +2026/05/14 23:32:33.516, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.85, 66 +2026-05-14T23:32:38+08:00 +2026/05/14 23:32:38.541, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.47, 66 +2026-05-14T23:32:43+08:00 +2026/05/14 23:32:43.563, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.22, 65 +2026-05-14T23:32:48+08:00 +2026/05/14 23:32:48.587, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.16, 66 +2026-05-14T23:32:53+08:00 +2026/05/14 23:32:53.609, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.17, 65 +2026-05-14T23:32:58+08:00 +2026/05/14 23:32:58.632, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.19, 65 +2026-05-14T23:33:03+08:00 +2026/05/14 23:33:03.656, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.84, 65 +2026-05-14T23:33:08+08:00 +2026/05/14 23:33:08.680, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.76, 66 +2026-05-14T23:33:13+08:00 +2026/05/14 23:33:13.704, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.86, 65 +2026-05-14T23:33:18+08:00 +2026/05/14 23:33:18.728, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.52, 66 +2026-05-14T23:33:23+08:00 +2026/05/14 23:33:23.753, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.42, 65 +2026-05-14T23:33:28+08:00 +2026/05/14 23:33:28.776, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.05, 65 +2026-05-14T23:33:33+08:00 +2026/05/14 23:33:33.800, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.07, 66 +2026-05-14T23:33:38+08:00 +2026/05/14 23:33:38.824, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.75, 66 +2026-05-14T23:33:43+08:00 +2026/05/14 23:33:43.847, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.69, 65 +2026-05-14T23:33:48+08:00 +2026/05/14 23:33:48.872, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.19, 65 +2026-05-14T23:33:53+08:00 +2026/05/14 23:33:53.896, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.94, 66 +2026-05-14T23:33:58+08:00 +2026/05/14 23:33:58.921, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 283.82, 59 +2026-05-14T23:34:03+08:00 +2026/05/14 23:34:03.946, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 356.54, 66 +2026-05-14T23:34:08+08:00 +2026/05/14 23:34:08.969, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 356.97, 66 +2026-05-14T23:34:13+08:00 +2026/05/14 23:34:13.991, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.75, 66 +2026-05-14T23:34:19+08:00 +2026/05/14 23:34:19.014, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.23, 66 +2026-05-14T23:34:24+08:00 +2026/05/14 23:34:24.037, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.47, 65 +2026-05-14T23:34:29+08:00 +2026/05/14 23:34:29.060, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.45, 66 +2026-05-14T23:34:34+08:00 +2026/05/14 23:34:34.088, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.92, 65 +2026-05-14T23:34:39+08:00 +2026/05/14 23:34:39.116, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.22, 64 +2026-05-14T23:34:44+08:00 +2026/05/14 23:34:44.142, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.76, 66 +2026-05-14T23:34:49+08:00 +2026/05/14 23:34:49.167, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.80, 66 +2026-05-14T23:34:54+08:00 +2026/05/14 23:34:54.193, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.18, 65 +2026-05-14T23:34:59+08:00 +2026/05/14 23:34:59.216, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.97, 65 +2026-05-14T23:35:04+08:00 +2026/05/14 23:35:04.241, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.23, 65 +2026-05-14T23:35:09+08:00 +2026/05/14 23:35:09.265, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 66 +2026-05-14T23:35:14+08:00 +2026/05/14 23:35:14.289, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.55, 64 +2026-05-14T23:35:19+08:00 +2026/05/14 23:35:19.312, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.40, 65 +2026-05-14T23:35:24+08:00 +2026/05/14 23:35:24.334, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.65, 65 +2026-05-14T23:35:29+08:00 +2026/05/14 23:35:29.362, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.78, 66 +2026-05-14T23:35:34+08:00 +2026/05/14 23:35:34.386, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.40, 65 +2026-05-14T23:35:39+08:00 +2026/05/14 23:35:39.408, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.89, 65 +2026-05-14T23:35:44+08:00 +2026/05/14 23:35:44.433, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.12, 65 +2026-05-14T23:35:49+08:00 +2026/05/14 23:35:49.461, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.93, 65 +2026-05-14T23:35:54+08:00 +2026/05/14 23:35:54.484, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.19, 66 +2026-05-14T23:35:59+08:00 +2026/05/14 23:35:59.506, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 365.02, 64 +2026-05-14T23:36:04+08:00 +2026/05/14 23:36:04.534, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.14, 66 +2026-05-14T23:36:09+08:00 +2026/05/14 23:36:09.558, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.14, 65 +2026-05-14T23:36:14+08:00 +2026/05/14 23:36:14.582, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 366.07, 64 +2026-05-14T23:36:19+08:00 +2026/05/14 23:36:19.605, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.80, 65 +2026-05-14T23:36:24+08:00 +2026/05/14 23:36:24.632, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 282.42, 64 +2026-05-14T23:36:29+08:00 +2026/05/14 23:36:29.655, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.25, 66 +2026-05-14T23:36:34+08:00 +2026/05/14 23:36:34.680, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.35, 65 +2026-05-14T23:36:39+08:00 +2026/05/14 23:36:39.706, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 65 +2026-05-14T23:36:44+08:00 +2026/05/14 23:36:44.729, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.10, 65 +2026-05-14T23:36:49+08:00 +2026/05/14 23:36:49.753, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.29, 65 +2026-05-14T23:36:54+08:00 +2026/05/14 23:36:54.778, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.61, 65 +2026-05-14T23:36:59+08:00 +2026/05/14 23:36:59.802, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.24, 65 +2026-05-14T23:37:04+08:00 +2026/05/14 23:37:04.828, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.30, 65 +2026-05-14T23:37:09+08:00 +2026/05/14 23:37:09.850, NVIDIA GeForce RTX 5090, 63, 30, 9607, 32607, 359.15, 61 +2026-05-14T23:37:14+08:00 +2026/05/14 23:37:14.872, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.30, 66 +2026-05-14T23:37:19+08:00 +2026/05/14 23:37:19.902, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.58, 66 +2026-05-14T23:37:24+08:00 +2026/05/14 23:37:24.926, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.41, 65 +2026-05-14T23:37:29+08:00 +2026/05/14 23:37:29.951, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.93, 66 +2026-05-14T23:37:34+08:00 +2026/05/14 23:37:34.975, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.26, 67 +2026-05-14T23:37:39+08:00 +2026/05/14 23:37:40.000, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.96, 65 +2026-05-14T23:37:45+08:00 +2026/05/14 23:37:45.022, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.04, 66 +2026-05-14T23:37:50+08:00 +2026/05/14 23:37:50.048, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 263.42, 66 +2026-05-14T23:37:55+08:00 +2026/05/14 23:37:55.070, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 333.18, 60 +2026-05-14T23:38:00+08:00 +2026/05/14 23:38:00.095, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.48, 65 +2026-05-14T23:38:05+08:00 +2026/05/14 23:38:05.120, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.72, 66 +2026-05-14T23:38:10+08:00 +2026/05/14 23:38:10.142, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.31, 66 +2026-05-14T23:38:15+08:00 +2026/05/14 23:38:15.166, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.77, 65 +2026-05-14T23:38:20+08:00 +2026/05/14 23:38:20.193, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.98, 65 +2026-05-14T23:38:25+08:00 +2026/05/14 23:38:25.216, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.80, 66 +2026-05-14T23:38:30+08:00 +2026/05/14 23:38:30.241, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.87, 64 +2026-05-14T23:38:35+08:00 +2026/05/14 23:38:35.264, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.21, 65 +2026-05-14T23:38:40+08:00 +2026/05/14 23:38:40.288, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.27, 65 +2026-05-14T23:38:45+08:00 +2026/05/14 23:38:45.313, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.37, 66 +2026-05-14T23:38:50+08:00 +2026/05/14 23:38:50.337, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.93, 66 +2026-05-14T23:38:55+08:00 +2026/05/14 23:38:55.363, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.69, 65 +2026-05-14T23:39:00+08:00 +2026/05/14 23:39:00.390, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.97, 66 +2026-05-14T23:39:05+08:00 +2026/05/14 23:39:05.413, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.98, 65 +2026-05-14T23:39:10+08:00 +2026/05/14 23:39:10.437, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.96, 65 +2026-05-14T23:39:15+08:00 +2026/05/14 23:39:15.460, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.40, 64 +2026-05-14T23:39:20+08:00 +2026/05/14 23:39:20.483, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.42, 65 +2026-05-14T23:39:25+08:00 +2026/05/14 23:39:25.507, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.66, 66 +2026-05-14T23:39:30+08:00 +2026/05/14 23:39:30.530, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.06, 65 +2026-05-14T23:39:35+08:00 +2026/05/14 23:39:35.558, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.78, 66 +2026-05-14T23:39:40+08:00 +2026/05/14 23:39:40.583, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.96, 66 +2026-05-14T23:39:45+08:00 +2026/05/14 23:39:45.607, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.70, 65 +2026-05-14T23:39:50+08:00 +2026/05/14 23:39:50.630, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.53, 66 +2026-05-14T23:39:55+08:00 +2026/05/14 23:39:55.652, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 366.03, 66 +2026-05-14T23:40:00+08:00 +2026/05/14 23:40:00.678, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.79, 65 +2026-05-14T23:40:05+08:00 +2026/05/14 23:40:05.704, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 252.67, 66 +2026-05-14T23:40:10+08:00 +2026/05/14 23:40:10.727, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.60, 65 +2026-05-14T23:40:15+08:00 +2026/05/14 23:40:15.752, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.48, 66 +2026-05-14T23:40:20+08:00 +2026/05/14 23:40:20.776, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.97, 64 +2026-05-14T23:40:25+08:00 +2026/05/14 23:40:25.798, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.07, 66 +2026-05-14T23:40:30+08:00 +2026/05/14 23:40:30.823, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.25, 66 +2026-05-14T23:40:35+08:00 +2026/05/14 23:40:35.847, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.05, 65 +2026-05-14T23:40:40+08:00 +2026/05/14 23:40:40.872, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.32, 66 +2026-05-14T23:40:45+08:00 +2026/05/14 23:40:45.894, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.41, 64 +2026-05-14T23:40:50+08:00 +2026/05/14 23:40:50.917, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 363.07, 66 +2026-05-14T23:40:55+08:00 +2026/05/14 23:40:55.939, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 296.78, 60 +2026-05-14T23:41:00+08:00 +2026/05/14 23:41:00.981, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.94, 65 +2026-05-14T23:41:05+08:00 +2026/05/14 23:41:06.006, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.14, 66 +2026-05-14T23:41:11+08:00 +2026/05/14 23:41:11.031, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.12, 66 +2026-05-14T23:41:16+08:00 +2026/05/14 23:41:16.057, NVIDIA GeForce RTX 5090, 88, 36, 9607, 32607, 364.11, 66 +2026-05-14T23:41:21+08:00 +2026/05/14 23:41:21.080, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.11, 66 +2026-05-14T23:41:26+08:00 +2026/05/14 23:41:26.103, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.36, 65 +2026-05-14T23:41:31+08:00 +2026/05/14 23:41:31.126, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.28, 65 +2026-05-14T23:41:36+08:00 +2026/05/14 23:41:36.149, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.10, 66 +2026-05-14T23:41:41+08:00 +2026/05/14 23:41:41.172, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 366.25, 65 +2026-05-14T23:41:46+08:00 +2026/05/14 23:41:46.194, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.36, 65 +2026-05-14T23:41:51+08:00 +2026/05/14 23:41:51.216, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.49, 66 +2026-05-14T23:41:56+08:00 +2026/05/14 23:41:56.239, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.93, 65 +2026-05-14T23:42:01+08:00 +2026/05/14 23:42:01.263, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.06, 65 +2026-05-14T23:42:06+08:00 +2026/05/14 23:42:06.286, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.36, 65 +2026-05-14T23:42:11+08:00 +2026/05/14 23:42:11.309, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.48, 64 +2026-05-14T23:42:16+08:00 +2026/05/14 23:42:16.345, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.73, 66 +2026-05-14T23:42:21+08:00 +2026/05/14 23:42:21.368, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 203.55, 63 +2026-05-14T23:42:26+08:00 +2026/05/14 23:42:26.391, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.00, 65 +2026-05-14T23:42:31+08:00 +2026/05/14 23:42:31.415, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.10, 65 +2026-05-14T23:42:36+08:00 +2026/05/14 23:42:36.439, NVIDIA GeForce RTX 5090, 87, 36, 9607, 32607, 361.70, 65 +2026-05-14T23:42:41+08:00 +2026/05/14 23:42:41.461, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.16, 66 +2026-05-14T23:42:46+08:00 +2026/05/14 23:42:46.488, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.50, 64 +2026-05-14T23:42:51+08:00 +2026/05/14 23:42:51.510, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.85, 66 +2026-05-14T23:42:56+08:00 +2026/05/14 23:42:56.531, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 361.23, 66 +2026-05-14T23:43:01+08:00 +2026/05/14 23:43:01.557, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.37, 65 +2026-05-14T23:43:06+08:00 +2026/05/14 23:43:06.581, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.56, 66 +2026-05-14T23:43:11+08:00 +2026/05/14 23:43:11.603, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.66, 65 +2026-05-14T23:43:16+08:00 +2026/05/14 23:43:16.627, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.95, 65 +2026-05-14T23:43:21+08:00 +2026/05/14 23:43:21.650, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.05, 65 +2026-05-14T23:43:26+08:00 +2026/05/14 23:43:26.675, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.59, 66 +2026-05-14T23:43:31+08:00 +2026/05/14 23:43:31.698, NVIDIA GeForce RTX 5090, 78, 32, 9607, 32607, 254.40, 66 +2026-05-14T23:43:36+08:00 +2026/05/14 23:43:36.721, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.00, 66 +2026-05-14T23:43:41+08:00 +2026/05/14 23:43:41.775, NVIDIA GeForce RTX 5090, 87, 36, 9607, 32607, 360.77, 66 +2026-05-14T23:43:46+08:00 +2026/05/14 23:43:46.831, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.53, 65 +2026-05-14T23:43:51+08:00 +2026/05/14 23:43:51.854, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.52, 65 +2026-05-14T23:43:56+08:00 +2026/05/14 23:43:56.878, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.38, 65 +2026-05-14T23:44:01+08:00 +2026/05/14 23:44:01.919, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.48, 65 +2026-05-14T23:44:06+08:00 +2026/05/14 23:44:06.961, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.95, 64 +2026-05-14T23:44:11+08:00 +2026/05/14 23:44:11.985, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.45, 64 +2026-05-14T23:44:16+08:00 +2026/05/14 23:44:17.008, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.53, 65 +2026-05-14T23:44:22+08:00 +2026/05/14 23:44:22.030, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.87, 65 +2026-05-14T23:44:27+08:00 +2026/05/14 23:44:27.055, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.80, 65 +2026-05-14T23:44:32+08:00 +2026/05/14 23:44:32.077, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.98, 65 +2026-05-14T23:44:37+08:00 +2026/05/14 23:44:37.102, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.34, 65 +2026-05-14T23:44:42+08:00 +2026/05/14 23:44:42.125, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.24, 65 +2026-05-14T23:44:47+08:00 +2026/05/14 23:44:47.148, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 275.65, 59 +2026-05-14T23:44:52+08:00 +2026/05/14 23:44:52.172, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.66, 65 +2026-05-14T23:44:57+08:00 +2026/05/14 23:44:57.201, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.56, 65 +2026-05-14T23:45:02+08:00 +2026/05/14 23:45:02.227, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.15, 65 +2026-05-14T23:45:07+08:00 +2026/05/14 23:45:07.251, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.62, 65 +2026-05-14T23:45:12+08:00 +2026/05/14 23:45:12.274, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.31, 65 +2026-05-14T23:45:17+08:00 +2026/05/14 23:45:17.296, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.94, 65 +2026-05-14T23:45:22+08:00 +2026/05/14 23:45:22.320, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.87, 66 +2026-05-14T23:45:27+08:00 +2026/05/14 23:45:27.343, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 65 +2026-05-14T23:45:32+08:00 +2026/05/14 23:45:32.367, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.23, 66 +2026-05-14T23:45:37+08:00 +2026/05/14 23:45:37.390, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.37, 65 +2026-05-14T23:45:42+08:00 +2026/05/14 23:45:42.413, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.61, 66 +2026-05-14T23:45:47+08:00 +2026/05/14 23:45:47.434, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.45, 65 +2026-05-14T23:45:52+08:00 +2026/05/14 23:45:52.459, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.89, 66 +2026-05-14T23:45:57+08:00 +2026/05/14 23:45:57.484, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.25, 65 +2026-05-14T23:46:02+08:00 +2026/05/14 23:46:02.511, NVIDIA GeForce RTX 5090, 22, 15, 9607, 32607, 241.48, 62 +2026-05-14T23:46:07+08:00 +2026/05/14 23:46:07.536, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.50, 66 +2026-05-14T23:46:12+08:00 +2026/05/14 23:46:12.558, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.28, 65 +2026-05-14T23:46:17+08:00 +2026/05/14 23:46:17.584, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.58, 66 +2026-05-14T23:46:22+08:00 +2026/05/14 23:46:22.608, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.29, 64 +2026-05-14T23:46:27+08:00 +2026/05/14 23:46:27.633, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.28, 66 +2026-05-14T23:46:32+08:00 +2026/05/14 23:46:32.656, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.53, 66 +2026-05-14T23:46:37+08:00 +2026/05/14 23:46:37.680, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.13, 66 +2026-05-14T23:46:42+08:00 +2026/05/14 23:46:42.703, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 252.41, 59 +2026-05-14T23:46:47+08:00 +2026/05/14 23:46:47.726, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.02, 65 +2026-05-14T23:46:52+08:00 +2026/05/14 23:46:52.749, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.11, 65 +2026-05-14T23:46:57+08:00 +2026/05/14 23:46:57.772, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.08, 66 +2026-05-14T23:47:02+08:00 +2026/05/14 23:47:02.798, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.63, 65 +2026-05-14T23:47:07+08:00 +2026/05/14 23:47:07.822, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.86, 65 +2026-05-14T23:47:12+08:00 +2026/05/14 23:47:12.844, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.48, 67 +2026-05-14T23:47:17+08:00 +2026/05/14 23:47:17.869, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 367.49, 65 +2026-05-14T23:47:22+08:00 +2026/05/14 23:47:22.893, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.33, 65 +2026-05-14T23:47:27+08:00 +2026/05/14 23:47:27.916, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.33, 66 +2026-05-14T23:47:32+08:00 +2026/05/14 23:47:32.939, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.86, 65 +2026-05-14T23:47:37+08:00 +2026/05/14 23:47:37.962, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.30, 65 +2026-05-14T23:47:42+08:00 +2026/05/14 23:47:42.986, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.16, 66 +2026-05-14T23:47:47+08:00 +2026/05/14 23:47:48.009, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 367.28, 65 +2026-05-14T23:47:53+08:00 +2026/05/14 23:47:53.034, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.87, 65 +2026-05-14T23:47:58+08:00 +2026/05/14 23:47:58.060, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.97, 65 +2026-05-14T23:48:03+08:00 +2026/05/14 23:48:03.084, NVIDIA GeForce RTX 5090, 87, 36, 9607, 32607, 258.97, 66 +2026-05-14T23:48:08+08:00 +2026/05/14 23:48:08.133, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.03, 66 +2026-05-14T23:48:13+08:00 +2026/05/14 23:48:13.157, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.99, 66 +2026-05-14T23:48:18+08:00 +2026/05/14 23:48:18.199, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 367.08, 66 +2026-05-14T23:48:23+08:00 +2026/05/14 23:48:23.223, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.43, 66 +2026-05-14T23:48:28+08:00 +2026/05/14 23:48:28.250, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.47, 64 +2026-05-14T23:48:33+08:00 +2026/05/14 23:48:33.273, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.09, 65 +2026-05-14T23:48:38+08:00 +2026/05/14 23:48:38.301, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.03, 66 +2026-05-14T23:48:43+08:00 +2026/05/14 23:48:43.326, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.82, 64 +2026-05-14T23:48:48+08:00 +2026/05/14 23:48:48.349, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.46, 65 +2026-05-14T23:48:53+08:00 +2026/05/14 23:48:53.373, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.72, 65 +2026-05-14T23:48:58+08:00 +2026/05/14 23:48:58.396, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.45, 66 +2026-05-14T23:49:03+08:00 +2026/05/14 23:49:03.420, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.34, 64 +2026-05-14T23:49:08+08:00 +2026/05/14 23:49:08.444, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.31, 66 +2026-05-14T23:49:13+08:00 +2026/05/14 23:49:13.467, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.11, 65 +2026-05-14T23:49:18+08:00 +2026/05/14 23:49:18.495, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.31, 66 +2026-05-14T23:49:23+08:00 +2026/05/14 23:49:23.517, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 367.52, 65 +2026-05-14T23:49:28+08:00 +2026/05/14 23:49:28.542, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.14, 66 +2026-05-14T23:49:33+08:00 +2026/05/14 23:49:33.564, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.81, 65 +2026-05-14T23:49:38+08:00 +2026/05/14 23:49:38.589, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.02, 66 +2026-05-14T23:49:43+08:00 +2026/05/14 23:49:43.629, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.36, 66 +2026-05-14T23:49:48+08:00 +2026/05/14 23:49:48.655, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.51, 65 +2026-05-14T23:49:53+08:00 +2026/05/14 23:49:53.684, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.04, 65 +2026-05-14T23:49:58+08:00 +2026/05/14 23:49:58.708, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.33, 66 +2026-05-14T23:50:03+08:00 +2026/05/14 23:50:03.732, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.63, 65 +2026-05-14T23:50:08+08:00 +2026/05/14 23:50:08.753, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.08, 65 +2026-05-14T23:50:13+08:00 +2026/05/14 23:50:13.779, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.49, 66 +2026-05-14T23:50:18+08:00 +2026/05/14 23:50:18.805, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.55, 64 +2026-05-14T23:50:23+08:00 +2026/05/14 23:50:23.828, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 367.53, 65 +2026-05-14T23:50:28+08:00 +2026/05/14 23:50:28.851, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 218.94, 63 +2026-05-14T23:50:33+08:00 +2026/05/14 23:50:33.873, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.02, 65 +2026-05-14T23:50:38+08:00 +2026/05/14 23:50:38.898, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.85, 66 +2026-05-14T23:50:43+08:00 +2026/05/14 23:50:43.919, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 64 +2026-05-14T23:50:48+08:00 +2026/05/14 23:50:48.947, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.16, 65 +2026-05-14T23:50:53+08:00 +2026/05/14 23:50:53.969, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.76, 65 +2026-05-14T23:50:58+08:00 +2026/05/14 23:50:58.997, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 367.10, 65 +2026-05-14T23:51:04+08:00 +2026/05/14 23:51:04.019, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.76, 66 +2026-05-14T23:51:09+08:00 +2026/05/14 23:51:09.044, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.21, 65 +2026-05-14T23:51:14+08:00 +2026/05/14 23:51:14.067, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.27, 66 +2026-05-14T23:51:19+08:00 +2026/05/14 23:51:19.090, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.89, 65 +2026-05-14T23:51:24+08:00 +2026/05/14 23:51:24.109, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.47, 66 +2026-05-14T23:51:29+08:00 +2026/05/14 23:51:29.133, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.22, 65 +2026-05-14T23:51:34+08:00 +2026/05/14 23:51:34.156, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.76, 65 +2026-05-14T23:51:39+08:00 +2026/05/14 23:51:39.181, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.26, 65 +2026-05-14T23:51:44+08:00 +2026/05/14 23:51:44.202, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.39, 66 +2026-05-14T23:51:49+08:00 +2026/05/14 23:51:49.226, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.60, 65 +2026-05-14T23:51:54+08:00 +2026/05/14 23:51:54.249, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.23, 65 +2026-05-14T23:51:59+08:00 +2026/05/14 23:51:59.271, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.00, 64 +2026-05-14T23:52:04+08:00 +2026/05/14 23:52:04.294, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.13, 65 +2026-05-14T23:52:09+08:00 +2026/05/14 23:52:09.337, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.94, 66 +2026-05-14T23:52:14+08:00 +2026/05/14 23:52:14.378, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.92, 67 +2026-05-14T23:52:19+08:00 +2026/05/14 23:52:19.420, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.34, 65 +2026-05-14T23:52:24+08:00 +2026/05/14 23:52:24.444, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.99, 65 +2026-05-14T23:52:29+08:00 +2026/05/14 23:52:29.469, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.71, 64 +2026-05-14T23:52:34+08:00 +2026/05/14 23:52:34.491, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 366.31, 65 +2026-05-14T23:52:39+08:00 +2026/05/14 23:52:39.516, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.11, 64 +2026-05-14T23:52:44+08:00 +2026/05/14 23:52:44.539, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.88, 65 +2026-05-14T23:52:49+08:00 +2026/05/14 23:52:49.566, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.42, 65 +2026-05-14T23:52:54+08:00 +2026/05/14 23:52:54.587, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.63, 66 +2026-05-14T23:52:59+08:00 +2026/05/14 23:52:59.613, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.15, 64 +2026-05-14T23:53:04+08:00 +2026/05/14 23:53:04.638, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.34, 66 +2026-05-14T23:53:09+08:00 +2026/05/14 23:53:09.663, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.43, 65 +2026-05-14T23:53:14+08:00 +2026/05/14 23:53:14.686, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 366.40, 65 +2026-05-14T23:53:19+08:00 +2026/05/14 23:53:19.711, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.42, 64 +2026-05-14T23:53:24+08:00 +2026/05/14 23:53:24.735, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.08, 66 +2026-05-14T23:53:29+08:00 +2026/05/14 23:53:29.759, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.61, 66 +2026-05-14T23:53:34+08:00 +2026/05/14 23:53:34.785, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.67, 66 +2026-05-14T23:53:39+08:00 +2026/05/14 23:53:39.809, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.52, 65 +2026-05-14T23:53:44+08:00 +2026/05/14 23:53:44.834, NVIDIA GeForce RTX 5090, 28, 17, 9607, 32607, 351.55, 62 +2026-05-14T23:53:49+08:00 +2026/05/14 23:53:49.855, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 288.80, 59 +2026-05-14T23:53:54+08:00 +2026/05/14 23:53:54.877, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.62, 65 +2026-05-14T23:53:59+08:00 +2026/05/14 23:53:59.903, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 358.71, 66 +2026-05-14T23:54:04+08:00 +2026/05/14 23:54:04.927, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 366.14, 66 +2026-05-14T23:54:09+08:00 +2026/05/14 23:54:09.950, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.38, 65 +2026-05-14T23:54:14+08:00 +2026/05/14 23:54:14.977, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.06, 65 +2026-05-14T23:54:19+08:00 +2026/05/14 23:54:20.001, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.35, 65 +2026-05-14T23:54:25+08:00 +2026/05/14 23:54:25.024, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.31, 65 +2026-05-14T23:54:30+08:00 +2026/05/14 23:54:30.048, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.02, 64 +2026-05-14T23:54:35+08:00 +2026/05/14 23:54:35.070, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.60, 65 +2026-05-14T23:54:40+08:00 +2026/05/14 23:54:40.093, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.77, 65 +2026-05-14T23:54:45+08:00 +2026/05/14 23:54:45.118, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.96, 65 +2026-05-14T23:54:50+08:00 +2026/05/14 23:54:50.141, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.86, 65 +2026-05-14T23:54:55+08:00 +2026/05/14 23:54:55.168, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 219.91, 64 +2026-05-14T23:55:00+08:00 +2026/05/14 23:55:00.190, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.59, 65 +2026-05-14T23:55:05+08:00 +2026/05/14 23:55:05.226, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 276.31, 59 +2026-05-14T23:55:10+08:00 +2026/05/14 23:55:10.249, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.82, 65 +2026-05-14T23:55:15+08:00 +2026/05/14 23:55:15.271, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 367.22, 66 +2026-05-14T23:55:20+08:00 +2026/05/14 23:55:20.292, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 65 +2026-05-14T23:55:25+08:00 +2026/05/14 23:55:25.356, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.95, 66 +2026-05-14T23:55:30+08:00 +2026/05/14 23:55:30.380, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.80, 65 +2026-05-14T23:55:35+08:00 +2026/05/14 23:55:35.403, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 366.74, 66 +2026-05-14T23:55:40+08:00 +2026/05/14 23:55:40.427, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.29, 65 +2026-05-14T23:55:45+08:00 +2026/05/14 23:55:45.451, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.08, 66 +2026-05-14T23:55:50+08:00 +2026/05/14 23:55:50.473, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.44, 65 +2026-05-14T23:55:55+08:00 +2026/05/14 23:55:55.497, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 367.09, 66 +2026-05-14T23:56:00+08:00 +2026/05/14 23:56:00.527, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 366.05, 66 +2026-05-14T23:56:05+08:00 +2026/05/14 23:56:05.556, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.88, 65 +2026-05-14T23:56:10+08:00 +2026/05/14 23:56:10.579, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.75, 66 +2026-05-14T23:56:15+08:00 +2026/05/14 23:56:15.607, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.70, 65 +2026-05-14T23:56:20+08:00 +2026/05/14 23:56:20.630, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.43, 66 +2026-05-14T23:56:25+08:00 +2026/05/14 23:56:25.653, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.19, 65 +2026-05-14T23:56:30+08:00 +2026/05/14 23:56:30.693, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.29, 65 +2026-05-14T23:56:35+08:00 +2026/05/14 23:56:35.718, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.77, 64 +2026-05-14T23:56:40+08:00 +2026/05/14 23:56:40.758, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.96, 65 +2026-05-14T23:56:45+08:00 +2026/05/14 23:56:45.798, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.70, 66 +2026-05-14T23:56:50+08:00 +2026/05/14 23:56:50.874, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.94, 65 +2026-05-14T23:56:55+08:00 +2026/05/14 23:56:55.897, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.84, 65 +2026-05-14T23:57:00+08:00 +2026/05/14 23:57:00.942, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.95, 66 +2026-05-14T23:57:05+08:00 +2026/05/14 23:57:05.968, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.51, 65 +2026-05-14T23:57:10+08:00 +2026/05/14 23:57:11.007, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 305.22, 60 +2026-05-14T23:57:16+08:00 +2026/05/14 23:57:16.050, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.95, 66 +2026-05-14T23:57:21+08:00 +2026/05/14 23:57:21.091, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.65, 65 +2026-05-14T23:57:26+08:00 +2026/05/14 23:57:26.117, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.13, 65 +2026-05-14T23:57:31+08:00 +2026/05/14 23:57:31.141, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.78, 66 +2026-05-14T23:57:36+08:00 +2026/05/14 23:57:36.166, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.71, 65 +2026-05-14T23:57:41+08:00 +2026/05/14 23:57:41.189, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.60, 65 +2026-05-14T23:57:46+08:00 +2026/05/14 23:57:46.212, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.31, 65 +2026-05-14T23:57:51+08:00 +2026/05/14 23:57:51.235, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.19, 66 +2026-05-14T23:57:56+08:00 +2026/05/14 23:57:56.258, NVIDIA GeForce RTX 5090, 88, 36, 9607, 32607, 362.44, 65 +2026-05-14T23:58:01+08:00 +2026/05/14 23:58:01.283, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.19, 65 +2026-05-14T23:58:06+08:00 +2026/05/14 23:58:06.308, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.68, 65 +2026-05-14T23:58:11+08:00 +2026/05/14 23:58:11.335, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.55, 65 +2026-05-14T23:58:16+08:00 +2026/05/14 23:58:16.356, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 363.54, 66 +2026-05-14T23:58:21+08:00 +2026/05/14 23:58:21.379, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.12, 65 +2026-05-14T23:58:26+08:00 +2026/05/14 23:58:26.407, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.91, 65 +2026-05-14T23:58:31+08:00 +2026/05/14 23:58:31.432, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.25, 64 +2026-05-14T23:58:36+08:00 +2026/05/14 23:58:36.459, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.89, 65 +2026-05-14T23:58:41+08:00 +2026/05/14 23:58:41.483, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.48, 65 +2026-05-14T23:58:46+08:00 +2026/05/14 23:58:46.508, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.74, 65 +2026-05-14T23:58:51+08:00 +2026/05/14 23:58:51.532, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.36, 65 +2026-05-14T23:58:56+08:00 +2026/05/14 23:58:56.555, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.79, 65 +2026-05-14T23:59:01+08:00 +2026/05/14 23:59:01.579, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.45, 64 +2026-05-14T23:59:06+08:00 +2026/05/14 23:59:06.604, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.90, 65 +2026-05-14T23:59:11+08:00 +2026/05/14 23:59:11.627, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.31, 66 +2026-05-14T23:59:16+08:00 +2026/05/14 23:59:16.650, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.94, 65 +2026-05-14T23:59:21+08:00 +2026/05/14 23:59:21.674, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.62, 65 +2026-05-14T23:59:26+08:00 +2026/05/14 23:59:26.697, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.44, 65 +2026-05-14T23:59:31+08:00 +2026/05/14 23:59:31.720, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 362.98, 65 +2026-05-14T23:59:36+08:00 +2026/05/14 23:59:36.744, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.14, 65 +2026-05-14T23:59:41+08:00 +2026/05/14 23:59:41.768, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.94, 65 +2026-05-14T23:59:46+08:00 +2026/05/14 23:59:46.792, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.08, 66 +2026-05-14T23:59:51+08:00 +2026/05/14 23:59:51.817, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.11, 65 +2026-05-14T23:59:56+08:00 +2026/05/14 23:59:56.840, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.71, 65 +2026-05-15T00:00:01+08:00 +2026/05/15 00:00:01.867, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.69, 66 +2026-05-15T00:00:06+08:00 +2026/05/15 00:00:06.891, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.36, 65 +2026-05-15T00:00:11+08:00 +2026/05/15 00:00:11.914, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 236.78, 59 +2026-05-15T00:00:16+08:00 +2026/05/15 00:00:16.937, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.35, 65 +2026-05-15T00:00:21+08:00 +2026/05/15 00:00:21.961, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.26, 65 +2026-05-15T00:00:26+08:00 +2026/05/15 00:00:26.986, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.04, 66 +2026-05-15T00:00:31+08:00 +2026/05/15 00:00:32.010, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 366.51, 65 +2026-05-15T00:00:37+08:00 +2026/05/15 00:00:37.035, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.01, 65 +2026-05-15T00:00:42+08:00 +2026/05/15 00:00:42.063, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 246.44, 64 +2026-05-15T00:00:47+08:00 +2026/05/15 00:00:47.086, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.20, 64 +2026-05-15T00:00:52+08:00 +2026/05/15 00:00:52.109, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 355.57, 66 +2026-05-15T00:00:57+08:00 +2026/05/15 00:00:57.133, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 366.06, 66 +2026-05-15T00:01:02+08:00 +2026/05/15 00:01:02.157, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 366.48, 65 +2026-05-15T00:01:07+08:00 +2026/05/15 00:01:07.182, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.22, 66 +2026-05-15T00:01:12+08:00 +2026/05/15 00:01:12.207, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 366.30, 65 +2026-05-15T00:01:17+08:00 +2026/05/15 00:01:17.232, NVIDIA GeForce RTX 5090, 3, 3, 9607, 32607, 344.97, 60 +2026-05-15T00:01:22+08:00 +2026/05/15 00:01:22.255, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.95, 64 +2026-05-15T00:01:27+08:00 +2026/05/15 00:01:27.279, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.91, 64 +2026-05-15T00:01:32+08:00 +2026/05/15 00:01:32.302, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.52, 64 +2026-05-15T00:01:37+08:00 +2026/05/15 00:01:37.327, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.83, 64 +2026-05-15T00:01:42+08:00 +2026/05/15 00:01:42.349, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.53, 64 +2026-05-15T00:01:47+08:00 +2026/05/15 00:01:47.372, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 289.08, 59 +2026-05-15T00:01:52+08:00 +2026/05/15 00:01:52.393, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.04, 65 +2026-05-15T00:01:57+08:00 +2026/05/15 00:01:57.416, NVIDIA GeForce RTX 5090, 1, 0, 9607, 32607, 262.16, 65 +2026-05-15T00:02:02+08:00 +2026/05/15 00:02:02.441, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 65 +2026-05-15T00:02:07+08:00 +2026/05/15 00:02:07.467, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 356.03, 66 +2026-05-15T00:02:12+08:00 +2026/05/15 00:02:12.490, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.73, 66 +2026-05-15T00:02:17+08:00 +2026/05/15 00:02:17.516, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.66, 66 +2026-05-15T00:02:22+08:00 +2026/05/15 00:02:22.538, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.61, 65 +2026-05-15T00:02:27+08:00 +2026/05/15 00:02:27.562, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.56, 66 +2026-05-15T00:02:32+08:00 +2026/05/15 00:02:32.585, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.00, 65 +2026-05-15T00:02:37+08:00 +2026/05/15 00:02:37.611, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.18, 65 +2026-05-15T00:02:42+08:00 +2026/05/15 00:02:42.634, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.82, 65 +2026-05-15T00:02:47+08:00 +2026/05/15 00:02:47.715, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.77, 66 +2026-05-15T00:02:52+08:00 +2026/05/15 00:02:52.738, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.72, 66 +2026-05-15T00:02:57+08:00 +2026/05/15 00:02:57.763, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.80, 65 +2026-05-15T00:03:02+08:00 +2026/05/15 00:03:02.786, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.87, 66 +2026-05-15T00:03:07+08:00 +2026/05/15 00:03:07.812, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.00, 65 +2026-05-15T00:03:12+08:00 +2026/05/15 00:03:12.836, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.59, 66 +2026-05-15T00:03:17+08:00 +2026/05/15 00:03:17.862, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.93, 65 +2026-05-15T00:03:22+08:00 +2026/05/15 00:03:22.887, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.83, 65 +2026-05-15T00:03:27+08:00 +2026/05/15 00:03:27.910, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.81, 65 +2026-05-15T00:03:32+08:00 +2026/05/15 00:03:32.934, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 65 +2026-05-15T00:03:37+08:00 +2026/05/15 00:03:37.959, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.88, 65 +2026-05-15T00:03:42+08:00 +2026/05/15 00:03:42.984, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.37, 65 +2026-05-15T00:03:47+08:00 +2026/05/15 00:03:48.008, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.45, 66 +2026-05-15T00:03:53+08:00 +2026/05/15 00:03:53.036, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 66 +2026-05-15T00:03:58+08:00 +2026/05/15 00:03:58.060, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.36, 65 +2026-05-15T00:04:03+08:00 +2026/05/15 00:04:03.083, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.51, 66 +2026-05-15T00:04:08+08:00 +2026/05/15 00:04:08.141, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.95, 66 +2026-05-15T00:04:13+08:00 +2026/05/15 00:04:13.164, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.69, 66 +2026-05-15T00:04:18+08:00 +2026/05/15 00:04:18.188, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.97, 65 +2026-05-15T00:04:23+08:00 +2026/05/15 00:04:23.211, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.15, 66 +2026-05-15T00:04:28+08:00 +2026/05/15 00:04:28.236, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 289.38, 64 +2026-05-15T00:04:33+08:00 +2026/05/15 00:04:33.261, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 216.36, 65 +2026-05-15T00:04:38+08:00 +2026/05/15 00:04:38.285, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.05, 65 +2026-05-15T00:04:43+08:00 +2026/05/15 00:04:43.309, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.60, 65 +2026-05-15T00:04:48+08:00 +2026/05/15 00:04:48.333, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.80, 65 +2026-05-15T00:04:53+08:00 +2026/05/15 00:04:53.360, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 65 +2026-05-15T00:04:58+08:00 +2026/05/15 00:04:58.385, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.37, 65 +2026-05-15T00:05:03+08:00 +2026/05/15 00:05:03.412, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.06, 65 +2026-05-15T00:05:08+08:00 +2026/05/15 00:05:08.436, NVIDIA GeForce RTX 5090, 32, 11, 9607, 32607, 258.12, 64 +2026-05-15T00:05:13+08:00 +2026/05/15 00:05:13.458, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 368.21, 66 +2026-05-15T00:05:18+08:00 +2026/05/15 00:05:18.483, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.11, 66 +2026-05-15T00:05:23+08:00 +2026/05/15 00:05:23.508, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.68, 65 +2026-05-15T00:05:28+08:00 +2026/05/15 00:05:28.532, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.21, 65 +2026-05-15T00:05:33+08:00 +2026/05/15 00:05:33.556, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.72, 66 +2026-05-15T00:05:38+08:00 +2026/05/15 00:05:38.579, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 202.79, 65 +2026-05-15T00:05:43+08:00 +2026/05/15 00:05:43.603, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.23, 64 +2026-05-15T00:05:48+08:00 +2026/05/15 00:05:48.627, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 333.57, 60 +2026-05-15T00:05:53+08:00 +2026/05/15 00:05:53.650, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.14, 64 +2026-05-15T00:05:58+08:00 +2026/05/15 00:05:58.674, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.73, 65 +2026-05-15T00:06:03+08:00 +2026/05/15 00:06:03.698, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.40, 65 +2026-05-15T00:06:08+08:00 +2026/05/15 00:06:08.720, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.40, 66 +2026-05-15T00:06:13+08:00 +2026/05/15 00:06:13.742, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.99, 64 +2026-05-15T00:06:18+08:00 +2026/05/15 00:06:18.767, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 65 +2026-05-15T00:06:23+08:00 +2026/05/15 00:06:23.791, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.33, 65 +2026-05-15T00:06:28+08:00 +2026/05/15 00:06:28.813, NVIDIA GeForce RTX 5090, 63, 23, 9607, 32607, 182.66, 59 +2026-05-15T00:06:33+08:00 +2026/05/15 00:06:33.836, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.78, 66 +2026-05-15T00:06:38+08:00 +2026/05/15 00:06:38.860, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.46, 66 +2026-05-15T00:06:43+08:00 +2026/05/15 00:06:43.883, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.64, 65 +2026-05-15T00:06:48+08:00 +2026/05/15 00:06:48.907, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.69, 65 +2026-05-15T00:06:53+08:00 +2026/05/15 00:06:53.934, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.08, 65 +2026-05-15T00:06:58+08:00 +2026/05/15 00:06:58.958, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.27, 65 +2026-05-15T00:07:03+08:00 +2026/05/15 00:07:03.982, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.01, 66 +2026-05-15T00:07:08+08:00 +2026/05/15 00:07:09.005, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.82, 64 +2026-05-15T00:07:14+08:00 +2026/05/15 00:07:14.030, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.20, 64 +2026-05-15T00:07:19+08:00 +2026/05/15 00:07:19.054, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.65, 65 +2026-05-15T00:07:24+08:00 +2026/05/15 00:07:24.076, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.39, 64 +2026-05-15T00:07:29+08:00 +2026/05/15 00:07:29.105, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.90, 64 +2026-05-15T00:07:34+08:00 +2026/05/15 00:07:34.128, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.82, 64 +2026-05-15T00:07:39+08:00 +2026/05/15 00:07:39.154, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.64, 64 +2026-05-15T00:07:44+08:00 +2026/05/15 00:07:44.178, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 65 +2026-05-15T00:07:49+08:00 +2026/05/15 00:07:49.204, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.14, 66 +2026-05-15T00:07:54+08:00 +2026/05/15 00:07:54.227, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 259.52, 59 +2026-05-15T00:07:59+08:00 +2026/05/15 00:07:59.253, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.45, 64 +2026-05-15T00:08:04+08:00 +2026/05/15 00:08:04.275, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 355.33, 66 +2026-05-15T00:08:09+08:00 +2026/05/15 00:08:09.303, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.73, 66 +2026-05-15T00:08:14+08:00 +2026/05/15 00:08:14.326, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.97, 66 +2026-05-15T00:08:19+08:00 +2026/05/15 00:08:19.349, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.57, 66 +2026-05-15T00:08:24+08:00 +2026/05/15 00:08:24.371, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 260.17, 64 +2026-05-15T00:08:29+08:00 +2026/05/15 00:08:29.395, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.21, 65 +2026-05-15T00:08:34+08:00 +2026/05/15 00:08:34.419, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.00, 65 +2026-05-15T00:08:39+08:00 +2026/05/15 00:08:39.449, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.91, 65 +2026-05-15T00:08:44+08:00 +2026/05/15 00:08:44.473, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 354.77, 65 +2026-05-15T00:08:49+08:00 +2026/05/15 00:08:49.495, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.56, 64 +2026-05-15T00:08:54+08:00 +2026/05/15 00:08:54.520, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.35, 65 +2026-05-15T00:08:59+08:00 +2026/05/15 00:08:59.547, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.53, 66 +2026-05-15T00:09:04+08:00 +2026/05/15 00:09:04.584, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.17, 65 +2026-05-15T00:09:09+08:00 +2026/05/15 00:09:09.609, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.91, 65 +2026-05-15T00:09:14+08:00 +2026/05/15 00:09:14.659, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.32, 65 +2026-05-15T00:09:19+08:00 +2026/05/15 00:09:19.696, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.32, 66 +2026-05-15T00:09:24+08:00 +2026/05/15 00:09:24.719, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.61, 65 +2026-05-15T00:09:29+08:00 +2026/05/15 00:09:29.763, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.20, 65 +2026-05-15T00:09:34+08:00 +2026/05/15 00:09:34.804, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.02, 65 +2026-05-15T00:09:39+08:00 +2026/05/15 00:09:39.846, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 252.23, 66 +2026-05-15T00:09:44+08:00 +2026/05/15 00:09:44.903, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.33, 66 +2026-05-15T00:09:49+08:00 +2026/05/15 00:09:49.930, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.31, 65 +2026-05-15T00:09:54+08:00 +2026/05/15 00:09:54.984, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.78, 64 +2026-05-15T00:09:59+08:00 +2026/05/15 00:10:00.009, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.83, 65 +2026-05-15T00:10:05+08:00 +2026/05/15 00:10:05.034, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.60, 65 +2026-05-15T00:10:10+08:00 +2026/05/15 00:10:10.059, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.25, 66 +2026-05-15T00:10:15+08:00 +2026/05/15 00:10:15.079, NVIDIA GeForce RTX 5090, 30, 18, 9607, 32607, 258.45, 59 +2026-05-15T00:10:20+08:00 +2026/05/15 00:10:20.102, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.85, 65 +2026-05-15T00:10:25+08:00 +2026/05/15 00:10:25.128, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.89, 64 +2026-05-15T00:10:30+08:00 +2026/05/15 00:10:30.152, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.28, 65 +2026-05-15T00:10:35+08:00 +2026/05/15 00:10:35.176, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.95, 65 +2026-05-15T00:10:40+08:00 +2026/05/15 00:10:40.199, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.78, 66 +2026-05-15T00:10:45+08:00 +2026/05/15 00:10:45.223, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.70, 65 +2026-05-15T00:10:50+08:00 +2026/05/15 00:10:50.247, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.15, 66 +2026-05-15T00:10:55+08:00 +2026/05/15 00:10:55.269, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.67, 66 +2026-05-15T00:11:00+08:00 +2026/05/15 00:11:00.298, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.21, 66 +2026-05-15T00:11:05+08:00 +2026/05/15 00:11:05.322, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.99, 65 +2026-05-15T00:11:10+08:00 +2026/05/15 00:11:10.346, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.75, 65 +2026-05-15T00:11:15+08:00 +2026/05/15 00:11:15.374, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.12, 66 +2026-05-15T00:11:20+08:00 +2026/05/15 00:11:20.400, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.00, 66 +2026-05-15T00:11:25+08:00 +2026/05/15 00:11:25.425, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.49, 64 +2026-05-15T00:11:30+08:00 +2026/05/15 00:11:30.453, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.55, 65 +2026-05-15T00:11:35+08:00 +2026/05/15 00:11:35.476, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.09, 65 +2026-05-15T00:11:40+08:00 +2026/05/15 00:11:40.501, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.30, 66 +2026-05-15T00:11:45+08:00 +2026/05/15 00:11:45.525, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.64, 66 +2026-05-15T00:11:50+08:00 +2026/05/15 00:11:50.553, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.84, 64 +2026-05-15T00:11:55+08:00 +2026/05/15 00:11:55.577, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.73, 65 +2026-05-15T00:12:00+08:00 +2026/05/15 00:12:00.600, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.79, 65 +2026-05-15T00:12:05+08:00 +2026/05/15 00:12:05.624, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.82, 65 +2026-05-15T00:12:10+08:00 +2026/05/15 00:12:10.649, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 240.44, 64 +2026-05-15T00:12:15+08:00 +2026/05/15 00:12:15.672, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.87, 65 +2026-05-15T00:12:20+08:00 +2026/05/15 00:12:20.696, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.81, 65 +2026-05-15T00:12:25+08:00 +2026/05/15 00:12:25.719, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.09, 64 +2026-05-15T00:12:30+08:00 +2026/05/15 00:12:30.741, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 363.39, 66 +2026-05-15T00:12:35+08:00 +2026/05/15 00:12:35.768, NVIDIA GeForce RTX 5090, 39, 21, 9607, 32607, 233.97, 59 +2026-05-15T00:12:40+08:00 +2026/05/15 00:12:40.791, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.32, 66 +2026-05-15T00:12:45+08:00 +2026/05/15 00:12:45.814, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.38, 65 +2026-05-15T00:12:50+08:00 +2026/05/15 00:12:50.837, NVIDIA GeForce RTX 5090, 65, 30, 9607, 32607, 249.55, 63 +2026-05-15T00:12:55+08:00 +2026/05/15 00:12:55.860, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.28, 66 +2026-05-15T00:13:00+08:00 +2026/05/15 00:13:00.891, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.08, 65 +2026-05-15T00:13:05+08:00 +2026/05/15 00:13:05.913, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.98, 66 +2026-05-15T00:13:10+08:00 +2026/05/15 00:13:10.935, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.79, 66 +2026-05-15T00:13:15+08:00 +2026/05/15 00:13:15.959, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.73, 65 +2026-05-15T00:13:20+08:00 +2026/05/15 00:13:20.983, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.71, 65 +2026-05-15T00:13:25+08:00 +2026/05/15 00:13:26.009, NVIDIA GeForce RTX 5090, 21, 15, 9607, 32607, 350.38, 62 +2026-05-15T00:13:31+08:00 +2026/05/15 00:13:31.031, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 65 +2026-05-15T00:13:36+08:00 +2026/05/15 00:13:36.056, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.29, 66 +2026-05-15T00:13:41+08:00 +2026/05/15 00:13:41.080, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.47, 65 +2026-05-15T00:13:46+08:00 +2026/05/15 00:13:46.104, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.07, 67 +2026-05-15T00:13:51+08:00 +2026/05/15 00:13:51.128, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.34, 65 +2026-05-15T00:13:56+08:00 +2026/05/15 00:13:56.153, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.70, 65 +2026-05-15T00:14:01+08:00 +2026/05/15 00:14:01.195, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.18, 64 +2026-05-15T00:14:06+08:00 +2026/05/15 00:14:06.237, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 261.38, 65 +2026-05-15T00:14:11+08:00 +2026/05/15 00:14:11.261, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.66, 66 +2026-05-15T00:14:16+08:00 +2026/05/15 00:14:16.302, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.65, 65 +2026-05-15T00:14:21+08:00 +2026/05/15 00:14:21.360, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.73, 65 +2026-05-15T00:14:26+08:00 +2026/05/15 00:14:26.385, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.81, 65 +2026-05-15T00:14:31+08:00 +2026/05/15 00:14:31.437, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.85, 66 +2026-05-15T00:14:36+08:00 +2026/05/15 00:14:36.461, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.97, 65 +2026-05-15T00:14:41+08:00 +2026/05/15 00:14:41.515, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.46, 66 +2026-05-15T00:14:46+08:00 +2026/05/15 00:14:46.541, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 66 +2026-05-15T00:14:51+08:00 +2026/05/15 00:14:51.565, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.53, 65 +2026-05-15T00:14:56+08:00 +2026/05/15 00:14:56.605, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 252.26, 59 +2026-05-15T00:15:01+08:00 +2026/05/15 00:15:01.646, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.87, 65 +2026-05-15T00:15:06+08:00 +2026/05/15 00:15:06.688, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.11, 66 +2026-05-15T00:15:11+08:00 +2026/05/15 00:15:11.711, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.34, 65 +2026-05-15T00:15:16+08:00 +2026/05/15 00:15:16.735, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.42, 65 +2026-05-15T00:15:21+08:00 +2026/05/15 00:15:21.757, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 356.65, 65 +2026-05-15T00:15:26+08:00 +2026/05/15 00:15:26.782, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 324.56, 65 +2026-05-15T00:15:31+08:00 +2026/05/15 00:15:31.805, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.51, 65 +2026-05-15T00:15:36+08:00 +2026/05/15 00:15:36.829, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.79, 64 +2026-05-15T00:15:41+08:00 +2026/05/15 00:15:41.851, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.51, 64 +2026-05-15T00:15:46+08:00 +2026/05/15 00:15:46.876, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.92, 66 +2026-05-15T00:15:51+08:00 +2026/05/15 00:15:51.899, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.38, 66 +2026-05-15T00:15:56+08:00 +2026/05/15 00:15:56.923, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.92, 65 +2026-05-15T00:16:01+08:00 +2026/05/15 00:16:01.947, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.66, 65 +2026-05-15T00:16:06+08:00 +2026/05/15 00:16:06.974, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.05, 65 +2026-05-15T00:16:11+08:00 +2026/05/15 00:16:12.000, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.37, 66 +2026-05-15T00:16:17+08:00 +2026/05/15 00:16:17.025, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.18, 67 +2026-05-15T00:16:22+08:00 +2026/05/15 00:16:22.048, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 66 +2026-05-15T00:16:27+08:00 +2026/05/15 00:16:27.072, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.01, 66 +2026-05-15T00:16:32+08:00 +2026/05/15 00:16:32.096, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.09, 64 +2026-05-15T00:16:37+08:00 +2026/05/15 00:16:37.121, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.76, 65 +2026-05-15T00:16:42+08:00 +2026/05/15 00:16:42.147, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.16, 65 +2026-05-15T00:16:47+08:00 +2026/05/15 00:16:47.170, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.94, 65 +2026-05-15T00:16:52+08:00 +2026/05/15 00:16:52.196, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.18, 66 +2026-05-15T00:16:57+08:00 +2026/05/15 00:16:57.220, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.38, 65 +2026-05-15T00:17:02+08:00 +2026/05/15 00:17:02.244, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.92, 64 +2026-05-15T00:17:07+08:00 +2026/05/15 00:17:07.267, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 65 +2026-05-15T00:17:12+08:00 +2026/05/15 00:17:12.290, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 65 +2026-05-15T00:17:17+08:00 +2026/05/15 00:17:17.314, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.00, 65 +2026-05-15T00:17:22+08:00 +2026/05/15 00:17:22.337, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 65 +2026-05-15T00:17:27+08:00 +2026/05/15 00:17:27.361, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.84, 65 +2026-05-15T00:17:32+08:00 +2026/05/15 00:17:32.384, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.24, 65 +2026-05-15T00:17:37+08:00 +2026/05/15 00:17:37.424, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.57, 66 +2026-05-15T00:17:42+08:00 +2026/05/15 00:17:42.450, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 367.07, 65 +2026-05-15T00:17:47+08:00 +2026/05/15 00:17:47.478, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.48, 66 +2026-05-15T00:17:52+08:00 +2026/05/15 00:17:52.509, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.36, 65 +2026-05-15T00:17:57+08:00 +2026/05/15 00:17:57.532, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 65 +2026-05-15T00:18:02+08:00 +2026/05/15 00:18:02.575, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.72, 65 +2026-05-15T00:18:07+08:00 +2026/05/15 00:18:07.615, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.86, 65 +2026-05-15T00:18:12+08:00 +2026/05/15 00:18:12.658, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.57, 64 +2026-05-15T00:18:17+08:00 +2026/05/15 00:18:17.683, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.22, 64 +2026-05-15T00:18:22+08:00 +2026/05/15 00:18:22.705, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.22, 64 +2026-05-15T00:18:27+08:00 +2026/05/15 00:18:27.783, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.11, 64 +2026-05-15T00:18:32+08:00 +2026/05/15 00:18:32.805, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.36, 64 +2026-05-15T00:18:37+08:00 +2026/05/15 00:18:37.847, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 356.54, 64 +2026-05-15T00:18:42+08:00 +2026/05/15 00:18:42.877, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.70, 65 +2026-05-15T00:18:47+08:00 +2026/05/15 00:18:47.899, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.37, 65 +2026-05-15T00:18:52+08:00 +2026/05/15 00:18:52.924, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 66 +2026-05-15T00:18:57+08:00 +2026/05/15 00:18:57.947, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.70, 66 +2026-05-15T00:19:02+08:00 +2026/05/15 00:19:02.972, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.85, 66 +2026-05-15T00:19:07+08:00 +2026/05/15 00:19:07.995, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.99, 66 +2026-05-15T00:19:13+08:00 +2026/05/15 00:19:13.018, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 366.00, 66 +2026-05-15T00:19:18+08:00 +2026/05/15 00:19:18.042, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.89, 66 +2026-05-15T00:19:23+08:00 +2026/05/15 00:19:23.066, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.57, 65 +2026-05-15T00:19:28+08:00 +2026/05/15 00:19:28.089, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 65 +2026-05-15T00:19:33+08:00 +2026/05/15 00:19:33.114, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.22, 65 +2026-05-15T00:19:38+08:00 +2026/05/15 00:19:38.138, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.02, 66 +2026-05-15T00:19:43+08:00 +2026/05/15 00:19:43.161, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.57, 66 +2026-05-15T00:19:48+08:00 +2026/05/15 00:19:48.185, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.98, 65 +2026-05-15T00:19:53+08:00 +2026/05/15 00:19:53.209, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 364.93, 65 +2026-05-15T00:19:58+08:00 +2026/05/15 00:19:58.250, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 364.61, 66 +2026-05-15T00:20:03+08:00 +2026/05/15 00:20:03.323, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.00, 66 +2026-05-15T00:20:08+08:00 +2026/05/15 00:20:08.347, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.05, 66 +2026-05-15T00:20:13+08:00 +2026/05/15 00:20:13.420, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.17, 66 +2026-05-15T00:20:18+08:00 +2026/05/15 00:20:18.463, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.69, 66 +2026-05-15T00:20:23+08:00 +2026/05/15 00:20:23.486, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.97, 66 +2026-05-15T00:20:28+08:00 +2026/05/15 00:20:28.559, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.16, 66 +2026-05-15T00:20:33+08:00 +2026/05/15 00:20:33.618, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.78, 65 +2026-05-15T00:20:38+08:00 +2026/05/15 00:20:38.659, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.05, 66 +2026-05-15T00:20:43+08:00 +2026/05/15 00:20:43.682, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 66 +2026-05-15T00:20:48+08:00 +2026/05/15 00:20:48.705, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.61, 65 +2026-05-15T00:20:53+08:00 +2026/05/15 00:20:53.782, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.67, 64 +2026-05-15T00:20:58+08:00 +2026/05/15 00:20:58.806, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.82, 65 +2026-05-15T00:21:03+08:00 +2026/05/15 00:21:03.877, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.05, 64 +2026-05-15T00:21:08+08:00 +2026/05/15 00:21:08.901, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.77, 65 +2026-05-15T00:21:13+08:00 +2026/05/15 00:21:13.944, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.41, 65 +2026-05-15T00:21:18+08:00 +2026/05/15 00:21:18.985, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.22, 65 +2026-05-15T00:21:24+08:00 +2026/05/15 00:21:24.058, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.15, 66 +2026-05-15T00:21:29+08:00 +2026/05/15 00:21:29.083, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 66 +2026-05-15T00:21:34+08:00 +2026/05/15 00:21:34.107, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.32, 66 +2026-05-15T00:21:39+08:00 +2026/05/15 00:21:39.130, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.61, 66 +2026-05-15T00:21:44+08:00 +2026/05/15 00:21:44.154, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.09, 65 +2026-05-15T00:21:49+08:00 +2026/05/15 00:21:49.177, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.31, 66 +2026-05-15T00:21:54+08:00 +2026/05/15 00:21:54.203, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.55, 64 +2026-05-15T00:21:59+08:00 +2026/05/15 00:21:59.227, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.55, 66 +2026-05-15T00:22:04+08:00 +2026/05/15 00:22:04.252, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.18, 65 +2026-05-15T00:22:09+08:00 +2026/05/15 00:22:09.274, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.95, 66 +2026-05-15T00:22:14+08:00 +2026/05/15 00:22:14.299, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.02, 66 +2026-05-15T00:22:19+08:00 +2026/05/15 00:22:19.322, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.54, 65 +2026-05-15T00:22:24+08:00 +2026/05/15 00:22:24.345, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.20, 65 +2026-05-15T00:22:29+08:00 +2026/05/15 00:22:29.372, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.37, 64 +2026-05-15T00:22:34+08:00 +2026/05/15 00:22:34.394, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 360.54, 66 +2026-05-15T00:22:39+08:00 +2026/05/15 00:22:39.418, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.31, 65 +2026-05-15T00:22:44+08:00 +2026/05/15 00:22:44.441, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.56, 65 +2026-05-15T00:22:49+08:00 +2026/05/15 00:22:49.463, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.84, 65 +2026-05-15T00:22:54+08:00 +2026/05/15 00:22:54.486, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.28, 64 +2026-05-15T00:22:59+08:00 +2026/05/15 00:22:59.509, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.37, 65 +2026-05-15T00:23:04+08:00 +2026/05/15 00:23:04.534, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.05, 65 +2026-05-15T00:23:09+08:00 +2026/05/15 00:23:09.559, NVIDIA GeForce RTX 5090, 87, 36, 9607, 32607, 362.20, 65 +2026-05-15T00:23:14+08:00 +2026/05/15 00:23:14.582, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.29, 64 +2026-05-15T00:23:19+08:00 +2026/05/15 00:23:19.605, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 362.82, 66 +2026-05-15T00:23:24+08:00 +2026/05/15 00:23:24.629, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.30, 65 +2026-05-15T00:23:29+08:00 +2026/05/15 00:23:29.653, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 357.44, 65 +2026-05-15T00:23:34+08:00 +2026/05/15 00:23:34.678, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.54, 65 +2026-05-15T00:23:39+08:00 +2026/05/15 00:23:39.701, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.93, 64 +2026-05-15T00:23:44+08:00 +2026/05/15 00:23:44.723, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.69, 64 +2026-05-15T00:23:49+08:00 +2026/05/15 00:23:49.752, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.47, 65 +2026-05-15T00:23:54+08:00 +2026/05/15 00:23:54.776, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.27, 65 +2026-05-15T00:23:59+08:00 +2026/05/15 00:23:59.799, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 366.18, 66 +2026-05-15T00:24:04+08:00 +2026/05/15 00:24:04.824, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.93, 65 +2026-05-15T00:24:09+08:00 +2026/05/15 00:24:09.846, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.09, 66 +2026-05-15T00:24:14+08:00 +2026/05/15 00:24:14.926, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.28, 66 +2026-05-15T00:24:19+08:00 +2026/05/15 00:24:19.949, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.57, 65 +2026-05-15T00:24:24+08:00 +2026/05/15 00:24:24.993, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.43, 65 +2026-05-15T00:24:30+08:00 +2026/05/15 00:24:30.016, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.80, 66 +2026-05-15T00:24:35+08:00 +2026/05/15 00:24:35.040, NVIDIA GeForce RTX 5090, 87, 36, 9607, 32607, 362.11, 65 +2026-05-15T00:24:40+08:00 +2026/05/15 00:24:40.064, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.19, 65 +2026-05-15T00:24:45+08:00 +2026/05/15 00:24:45.089, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.53, 65 +2026-05-15T00:24:50+08:00 +2026/05/15 00:24:50.139, NVIDIA GeForce RTX 5090, 87, 36, 9607, 32607, 363.73, 65 +2026-05-15T00:24:55+08:00 +2026/05/15 00:24:55.178, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.90, 65 +2026-05-15T00:25:00+08:00 +2026/05/15 00:25:00.209, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.79, 65 +2026-05-15T00:25:05+08:00 +2026/05/15 00:25:05.232, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.14, 65 +2026-05-15T00:25:10+08:00 +2026/05/15 00:25:10.292, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 363.23, 65 +2026-05-15T00:25:15+08:00 +2026/05/15 00:25:15.316, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.28, 65 +2026-05-15T00:25:20+08:00 +2026/05/15 00:25:20.393, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.99, 64 +2026-05-15T00:25:25+08:00 +2026/05/15 00:25:25.415, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.59, 64 +2026-05-15T00:25:30+08:00 +2026/05/15 00:25:30.490, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.86, 65 +2026-05-15T00:25:35+08:00 +2026/05/15 00:25:35.526, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.49, 65 +2026-05-15T00:25:40+08:00 +2026/05/15 00:25:40.552, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.66, 65 +2026-05-15T00:25:45+08:00 +2026/05/15 00:25:45.613, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.73, 65 +2026-05-15T00:25:50+08:00 +2026/05/15 00:25:50.637, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.02, 65 +2026-05-15T00:25:55+08:00 +2026/05/15 00:25:55.680, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.17, 66 +2026-05-15T00:26:00+08:00 +2026/05/15 00:26:00.751, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.56, 65 +2026-05-15T00:26:05+08:00 +2026/05/15 00:26:05.774, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.94, 66 +2026-05-15T00:26:10+08:00 +2026/05/15 00:26:10.816, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.03, 64 +2026-05-15T00:26:15+08:00 +2026/05/15 00:26:15.887, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.18, 64 +2026-05-15T00:26:20+08:00 +2026/05/15 00:26:20.910, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 363.80, 65 +2026-05-15T00:26:25+08:00 +2026/05/15 00:26:25.935, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.07, 66 +2026-05-15T00:26:30+08:00 +2026/05/15 00:26:30.993, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.71, 64 +2026-05-15T00:26:36+08:00 +2026/05/15 00:26:36.016, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.01, 66 +2026-05-15T00:26:41+08:00 +2026/05/15 00:26:41.040, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.32, 66 +2026-05-15T00:26:46+08:00 +2026/05/15 00:26:46.065, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.46, 65 +2026-05-15T00:26:51+08:00 +2026/05/15 00:26:51.137, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 365.49, 66 +2026-05-15T00:26:56+08:00 +2026/05/15 00:26:56.161, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 365.54, 66 +2026-05-15T00:27:01+08:00 +2026/05/15 00:27:01.202, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 366.29, 65 +2026-05-15T00:27:06+08:00 +2026/05/15 00:27:06.275, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 366.40, 65 +2026-05-15T00:27:11+08:00 +2026/05/15 00:27:11.297, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.02, 65 +2026-05-15T00:27:16+08:00 +2026/05/15 00:27:16.324, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.67, 65 +2026-05-15T00:27:21+08:00 +2026/05/15 00:27:21.346, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.02, 66 +2026-05-15T00:27:26+08:00 +2026/05/15 00:27:26.370, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.63, 65 +2026-05-15T00:27:31+08:00 +2026/05/15 00:27:31.392, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 366.54, 66 +2026-05-15T00:27:36+08:00 +2026/05/15 00:27:36.416, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.52, 66 +2026-05-15T00:27:41+08:00 +2026/05/15 00:27:41.439, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.31, 65 +2026-05-15T00:27:46+08:00 +2026/05/15 00:27:46.462, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.17, 65 +2026-05-15T00:27:51+08:00 +2026/05/15 00:27:51.485, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.63, 66 +2026-05-15T00:27:56+08:00 +2026/05/15 00:27:56.512, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.14, 66 +2026-05-15T00:28:01+08:00 +2026/05/15 00:28:01.535, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.79, 66 +2026-05-15T00:28:06+08:00 +2026/05/15 00:28:06.559, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.90, 66 +2026-05-15T00:28:11+08:00 +2026/05/15 00:28:11.584, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.82, 66 +2026-05-15T00:28:16+08:00 +2026/05/15 00:28:16.608, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.55, 66 +2026-05-15T00:28:21+08:00 +2026/05/15 00:28:21.631, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.62, 66 +2026-05-15T00:28:26+08:00 +2026/05/15 00:28:26.653, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.43, 65 +2026-05-15T00:28:31+08:00 +2026/05/15 00:28:31.679, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 365.76, 66 +2026-05-15T00:28:36+08:00 +2026/05/15 00:28:36.702, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 65 +2026-05-15T00:28:41+08:00 +2026/05/15 00:28:41.725, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.07, 66 +2026-05-15T00:28:46+08:00 +2026/05/15 00:28:46.748, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.05, 66 +2026-05-15T00:28:51+08:00 +2026/05/15 00:28:51.771, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 366.29, 66 +2026-05-15T00:28:56+08:00 +2026/05/15 00:28:56.795, NVIDIA GeForce RTX 5090, 1, 0, 9607, 32607, 263.83, 66 +2026-05-15T00:29:01+08:00 +2026/05/15 00:29:01.819, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 280.91, 65 +2026-05-15T00:29:06+08:00 +2026/05/15 00:29:06.843, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.26, 66 +2026-05-15T00:29:11+08:00 +2026/05/15 00:29:11.867, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.02, 65 +2026-05-15T00:29:16+08:00 +2026/05/15 00:29:16.890, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.46, 66 +2026-05-15T00:29:21+08:00 +2026/05/15 00:29:21.913, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.42, 66 +2026-05-15T00:29:26+08:00 +2026/05/15 00:29:26.936, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.97, 65 +2026-05-15T00:29:31+08:00 +2026/05/15 00:29:31.959, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.06, 66 +2026-05-15T00:29:36+08:00 +2026/05/15 00:29:36.981, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.28, 65 +2026-05-15T00:29:41+08:00 +2026/05/15 00:29:42.003, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.54, 66 +2026-05-15T00:29:47+08:00 +2026/05/15 00:29:47.026, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.64, 66 +2026-05-15T00:29:52+08:00 +2026/05/15 00:29:52.050, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.06, 66 +2026-05-15T00:29:57+08:00 +2026/05/15 00:29:57.073, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.83, 66 +2026-05-15T00:30:02+08:00 +2026/05/15 00:30:02.098, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.89, 65 +2026-05-15T00:30:07+08:00 +2026/05/15 00:30:07.121, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.19, 66 +2026-05-15T00:30:12+08:00 +2026/05/15 00:30:12.143, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.15, 66 +2026-05-15T00:30:17+08:00 +2026/05/15 00:30:17.167, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.31, 65 +2026-05-15T00:30:22+08:00 +2026/05/15 00:30:22.189, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.56, 64 +2026-05-15T00:30:27+08:00 +2026/05/15 00:30:27.213, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.01, 66 +2026-05-15T00:30:32+08:00 +2026/05/15 00:30:32.236, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.28, 65 +2026-05-15T00:30:37+08:00 +2026/05/15 00:30:37.261, NVIDIA GeForce RTX 5090, 57, 20, 9607, 32607, 217.57, 63 +2026-05-15T00:30:42+08:00 +2026/05/15 00:30:42.284, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.63, 65 +2026-05-15T00:30:47+08:00 +2026/05/15 00:30:47.306, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.46, 65 +2026-05-15T00:30:52+08:00 +2026/05/15 00:30:52.329, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.32, 65 +2026-05-15T00:30:57+08:00 +2026/05/15 00:30:57.352, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.79, 65 +2026-05-15T00:31:02+08:00 +2026/05/15 00:31:02.376, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.28, 64 +2026-05-15T00:31:07+08:00 +2026/05/15 00:31:07.400, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.06, 66 +2026-05-15T00:31:12+08:00 +2026/05/15 00:31:12.423, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.70, 65 +2026-05-15T00:31:17+08:00 +2026/05/15 00:31:17.444, NVIDIA GeForce RTX 5090, 71, 32, 9607, 32607, 359.77, 65 +2026-05-15T00:31:22+08:00 +2026/05/15 00:31:22.469, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.57, 66 +2026-05-15T00:31:27+08:00 +2026/05/15 00:31:27.493, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.10, 66 +2026-05-15T00:31:32+08:00 +2026/05/15 00:31:32.517, NVIDIA GeForce RTX 5090, 1, 0, 9607, 32607, 262.09, 65 +2026-05-15T00:31:37+08:00 +2026/05/15 00:31:37.542, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.25, 66 +2026-05-15T00:31:42+08:00 +2026/05/15 00:31:42.565, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.53, 65 +2026-05-15T00:31:47+08:00 +2026/05/15 00:31:47.624, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.15, 65 +2026-05-15T00:31:52+08:00 +2026/05/15 00:31:52.649, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 363.90, 65 +2026-05-15T00:31:57+08:00 +2026/05/15 00:31:57.721, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.55, 66 +2026-05-15T00:32:02+08:00 +2026/05/15 00:32:02.744, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.32, 65 +2026-05-15T00:32:07+08:00 +2026/05/15 00:32:07.786, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.96, 66 +2026-05-15T00:32:12+08:00 +2026/05/15 00:32:12.810, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.55, 66 +2026-05-15T00:32:17+08:00 +2026/05/15 00:32:17.833, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.84, 65 +2026-05-15T00:32:22+08:00 +2026/05/15 00:32:22.857, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 365.80, 65 +2026-05-15T00:32:27+08:00 +2026/05/15 00:32:27.880, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.53, 65 +2026-05-15T00:32:32+08:00 +2026/05/15 00:32:32.903, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.93, 66 +2026-05-15T00:32:37+08:00 +2026/05/15 00:32:37.930, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.15, 66 +2026-05-15T00:32:42+08:00 +2026/05/15 00:32:42.954, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.91, 66 +2026-05-15T00:32:47+08:00 +2026/05/15 00:32:47.994, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 66 +2026-05-15T00:32:53+08:00 +2026/05/15 00:32:53.017, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.14, 66 +2026-05-15T00:32:58+08:00 +2026/05/15 00:32:58.060, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.94, 66 +2026-05-15T00:33:03+08:00 +2026/05/15 00:33:03.083, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.81, 65 +2026-05-15T00:33:08+08:00 +2026/05/15 00:33:08.107, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.85, 66 +2026-05-15T00:33:13+08:00 +2026/05/15 00:33:13.136, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 366.52, 65 +2026-05-15T00:33:18+08:00 +2026/05/15 00:33:18.160, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.42, 65 +2026-05-15T00:33:23+08:00 +2026/05/15 00:33:23.187, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.50, 64 +2026-05-15T00:33:28+08:00 +2026/05/15 00:33:28.210, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 276.54, 66 +2026-05-15T00:33:33+08:00 +2026/05/15 00:33:33.233, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.05, 65 +2026-05-15T00:33:38+08:00 +2026/05/15 00:33:38.257, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.23, 65 +2026-05-15T00:33:43+08:00 +2026/05/15 00:33:43.281, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.34, 66 +2026-05-15T00:33:48+08:00 +2026/05/15 00:33:48.304, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.22, 65 +2026-05-15T00:33:53+08:00 +2026/05/15 00:33:53.327, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.26, 66 +2026-05-15T00:33:58+08:00 +2026/05/15 00:33:58.351, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.13, 66 +2026-05-15T00:34:03+08:00 +2026/05/15 00:34:03.375, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.91, 66 +2026-05-15T00:34:08+08:00 +2026/05/15 00:34:08.421, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 336.73, 65 +2026-05-15T00:34:13+08:00 +2026/05/15 00:34:13.449, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.81, 67 +2026-05-15T00:34:18+08:00 +2026/05/15 00:34:18.472, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.31, 66 +2026-05-15T00:34:23+08:00 +2026/05/15 00:34:23.495, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.14, 65 +2026-05-15T00:34:28+08:00 +2026/05/15 00:34:28.518, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.33, 65 +2026-05-15T00:34:33+08:00 +2026/05/15 00:34:33.542, NVIDIA GeForce RTX 5090, 81, 35, 9607, 32607, 356.75, 65 +2026-05-15T00:34:38+08:00 +2026/05/15 00:34:38.566, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 65 +2026-05-15T00:34:43+08:00 +2026/05/15 00:34:43.590, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.20, 66 +2026-05-15T00:34:48+08:00 +2026/05/15 00:34:48.613, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 65 +2026-05-15T00:34:53+08:00 +2026/05/15 00:34:53.635, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.55, 66 +2026-05-15T00:34:58+08:00 +2026/05/15 00:34:58.659, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.32, 66 +2026-05-15T00:35:03+08:00 +2026/05/15 00:35:03.682, NVIDIA GeForce RTX 5090, 88, 39, 9607, 32607, 365.74, 65 +2026-05-15T00:35:08+08:00 +2026/05/15 00:35:08.708, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 352.37, 66 +2026-05-15T00:35:13+08:00 +2026/05/15 00:35:13.761, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.90, 66 +2026-05-15T00:35:18+08:00 +2026/05/15 00:35:18.785, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.21, 66 +2026-05-15T00:35:23+08:00 +2026/05/15 00:35:23.838, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.33, 66 +2026-05-15T00:35:28+08:00 +2026/05/15 00:35:28.863, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.01, 65 +2026-05-15T00:35:33+08:00 +2026/05/15 00:35:33.886, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.51, 66 +2026-05-15T00:35:38+08:00 +2026/05/15 00:35:38.928, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.83, 66 +2026-05-15T00:35:43+08:00 +2026/05/15 00:35:43.950, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 65 +2026-05-15T00:35:48+08:00 +2026/05/15 00:35:48.974, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.12, 65 +2026-05-15T00:35:53+08:00 +2026/05/15 00:35:53.997, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.29, 66 +2026-05-15T00:35:59+08:00 +2026/05/15 00:35:59.027, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.25, 66 +2026-05-15T00:36:04+08:00 +2026/05/15 00:36:04.050, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 351.60, 66 +2026-05-15T00:36:09+08:00 +2026/05/15 00:36:09.074, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.04, 65 +2026-05-15T00:36:14+08:00 +2026/05/15 00:36:14.098, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.71, 66 +2026-05-15T00:36:19+08:00 +2026/05/15 00:36:19.121, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.01, 66 +2026-05-15T00:36:24+08:00 +2026/05/15 00:36:24.147, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.14, 66 +2026-05-15T00:36:29+08:00 +2026/05/15 00:36:29.170, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.34, 66 +2026-05-15T00:36:34+08:00 +2026/05/15 00:36:34.197, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 364.78, 66 +2026-05-15T00:36:39+08:00 +2026/05/15 00:36:39.221, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.94, 66 +2026-05-15T00:36:44+08:00 +2026/05/15 00:36:44.245, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.43, 65 +2026-05-15T00:36:49+08:00 +2026/05/15 00:36:49.269, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.69, 65 +2026-05-15T00:36:54+08:00 +2026/05/15 00:36:54.292, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.12, 65 +2026-05-15T00:36:59+08:00 +2026/05/15 00:36:59.317, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.08, 65 +2026-05-15T00:37:04+08:00 +2026/05/15 00:37:04.342, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.08, 65 +2026-05-15T00:37:09+08:00 +2026/05/15 00:37:09.364, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.07, 65 +2026-05-15T00:37:14+08:00 +2026/05/15 00:37:14.387, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.22, 65 +2026-05-15T00:37:19+08:00 +2026/05/15 00:37:19.411, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.87, 65 +2026-05-15T00:37:24+08:00 +2026/05/15 00:37:24.434, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 365.12, 65 +2026-05-15T00:37:29+08:00 +2026/05/15 00:37:29.457, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.92, 66 +2026-05-15T00:37:34+08:00 +2026/05/15 00:37:34.483, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.40, 65 +2026-05-15T00:37:39+08:00 +2026/05/15 00:37:39.508, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 364.76, 65 +2026-05-15T00:37:44+08:00 +2026/05/15 00:37:44.532, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.06, 65 +2026-05-15T00:37:49+08:00 +2026/05/15 00:37:49.555, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.02, 65 +2026-05-15T00:37:54+08:00 +2026/05/15 00:37:54.584, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.19, 66 +2026-05-15T00:37:59+08:00 +2026/05/15 00:37:59.609, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.28, 65 +2026-05-15T00:38:04+08:00 +2026/05/15 00:38:04.632, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.52, 64 +2026-05-15T00:38:09+08:00 +2026/05/15 00:38:09.655, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.01, 65 +2026-05-15T00:38:14+08:00 +2026/05/15 00:38:14.680, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.62, 66 +2026-05-15T00:38:19+08:00 +2026/05/15 00:38:19.703, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.00, 66 +2026-05-15T00:38:24+08:00 +2026/05/15 00:38:24.727, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.57, 65 +2026-05-15T00:38:29+08:00 +2026/05/15 00:38:29.751, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.81, 65 +2026-05-15T00:38:34+08:00 +2026/05/15 00:38:34.774, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.56, 66 +2026-05-15T00:38:39+08:00 +2026/05/15 00:38:39.798, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.21, 66 +2026-05-15T00:38:44+08:00 +2026/05/15 00:38:44.823, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.70, 66 +2026-05-15T00:38:49+08:00 +2026/05/15 00:38:49.846, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.55, 65 +2026-05-15T00:38:54+08:00 +2026/05/15 00:38:54.870, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.47, 65 +2026-05-15T00:38:59+08:00 +2026/05/15 00:38:59.898, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 365.76, 65 +2026-05-15T00:39:04+08:00 +2026/05/15 00:39:04.922, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.11, 65 +2026-05-15T00:39:09+08:00 +2026/05/15 00:39:09.951, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 365.30, 65 +2026-05-15T00:39:14+08:00 +2026/05/15 00:39:14.974, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.58, 65 +2026-05-15T00:39:19+08:00 +2026/05/15 00:39:19.997, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.77, 66 +2026-05-15T00:39:25+08:00 +2026/05/15 00:39:25.021, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 365.43, 65 +2026-05-15T00:39:30+08:00 +2026/05/15 00:39:30.044, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.11, 66 +2026-05-15T00:39:35+08:00 +2026/05/15 00:39:35.068, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.50, 65 +2026-05-15T00:39:40+08:00 +2026/05/15 00:39:40.091, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.10, 64 +2026-05-15T00:39:45+08:00 +2026/05/15 00:39:45.115, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.90, 65 +2026-05-15T00:39:50+08:00 +2026/05/15 00:39:50.140, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.79, 65 +2026-05-15T00:39:55+08:00 +2026/05/15 00:39:55.162, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.57, 66 +2026-05-15T00:40:00+08:00 +2026/05/15 00:40:00.189, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.30, 65 +2026-05-15T00:40:05+08:00 +2026/05/15 00:40:05.212, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.63, 65 +2026-05-15T00:40:10+08:00 +2026/05/15 00:40:10.235, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.04, 64 +2026-05-15T00:40:15+08:00 +2026/05/15 00:40:15.257, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.34, 65 +2026-05-15T00:40:20+08:00 +2026/05/15 00:40:20.281, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 366.77, 66 +2026-05-15T00:40:25+08:00 +2026/05/15 00:40:25.306, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.59, 66 +2026-05-15T00:40:30+08:00 +2026/05/15 00:40:30.330, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 65 +2026-05-15T00:40:35+08:00 +2026/05/15 00:40:35.355, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.77, 66 +2026-05-15T00:40:40+08:00 +2026/05/15 00:40:40.396, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.64, 65 +2026-05-15T00:40:45+08:00 +2026/05/15 00:40:45.439, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.00, 65 +2026-05-15T00:40:50+08:00 +2026/05/15 00:40:50.485, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.38, 65 +2026-05-15T00:40:55+08:00 +2026/05/15 00:40:55.508, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.90, 66 +2026-05-15T00:41:00+08:00 +2026/05/15 00:41:00.549, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.59, 66 +2026-05-15T00:41:05+08:00 +2026/05/15 00:41:05.611, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.94, 66 +2026-05-15T00:41:10+08:00 +2026/05/15 00:41:10.661, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.17, 66 +2026-05-15T00:41:15+08:00 +2026/05/15 00:41:15.685, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.16, 66 +2026-05-15T00:41:20+08:00 +2026/05/15 00:41:20.726, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 329.71, 61 +2026-05-15T00:41:25+08:00 +2026/05/15 00:41:25.747, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.32, 66 +2026-05-15T00:41:30+08:00 +2026/05/15 00:41:30.771, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.21, 65 +2026-05-15T00:41:35+08:00 +2026/05/15 00:41:35.795, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.36, 66 +2026-05-15T00:41:40+08:00 +2026/05/15 00:41:40.820, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.00, 65 +2026-05-15T00:41:45+08:00 +2026/05/15 00:41:45.844, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.08, 66 +2026-05-15T00:41:50+08:00 +2026/05/15 00:41:50.872, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 363.82, 66 +2026-05-15T00:41:55+08:00 +2026/05/15 00:41:55.894, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.99, 65 +2026-05-15T00:42:00+08:00 +2026/05/15 00:42:00.919, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.88, 64 +2026-05-15T00:42:05+08:00 +2026/05/15 00:42:05.947, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.39, 65 +2026-05-15T00:42:10+08:00 +2026/05/15 00:42:10.998, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.25, 66 +2026-05-15T00:42:16+08:00 +2026/05/15 00:42:16.023, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.90, 66 +2026-05-15T00:42:21+08:00 +2026/05/15 00:42:21.065, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.80, 66 +2026-05-15T00:42:26+08:00 +2026/05/15 00:42:26.086, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.30, 66 +2026-05-15T00:42:31+08:00 +2026/05/15 00:42:31.113, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.44, 65 +2026-05-15T00:42:36+08:00 +2026/05/15 00:42:36.137, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.49, 65 +2026-05-15T00:42:41+08:00 +2026/05/15 00:42:41.162, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.47, 65 +2026-05-15T00:42:46+08:00 +2026/05/15 00:42:46.185, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.93, 66 +2026-05-15T00:42:51+08:00 +2026/05/15 00:42:51.210, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.79, 66 +2026-05-15T00:42:56+08:00 +2026/05/15 00:42:56.232, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.51, 66 +2026-05-15T00:43:01+08:00 +2026/05/15 00:43:01.254, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.08, 65 +2026-05-15T00:43:06+08:00 +2026/05/15 00:43:06.278, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.77, 65 +2026-05-15T00:43:11+08:00 +2026/05/15 00:43:11.302, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.41, 66 +2026-05-15T00:43:16+08:00 +2026/05/15 00:43:16.331, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.74, 65 +2026-05-15T00:43:21+08:00 +2026/05/15 00:43:21.356, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.56, 65 +2026-05-15T00:43:26+08:00 +2026/05/15 00:43:26.380, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.25, 66 +2026-05-15T00:43:31+08:00 +2026/05/15 00:43:31.403, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.85, 65 +2026-05-15T00:43:36+08:00 +2026/05/15 00:43:36.428, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.20, 65 +2026-05-15T00:43:41+08:00 +2026/05/15 00:43:41.450, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 365.21, 66 +2026-05-15T00:43:46+08:00 +2026/05/15 00:43:46.475, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 365.04, 66 +2026-05-15T00:43:51+08:00 +2026/05/15 00:43:51.500, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 365.05, 66 +2026-05-15T00:43:56+08:00 +2026/05/15 00:43:56.525, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.33, 65 +2026-05-15T00:44:01+08:00 +2026/05/15 00:44:01.551, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.27, 66 +2026-05-15T00:44:06+08:00 +2026/05/15 00:44:06.575, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.74, 66 +2026-05-15T00:44:11+08:00 +2026/05/15 00:44:11.601, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.68, 66 +2026-05-15T00:44:16+08:00 +2026/05/15 00:44:16.624, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.65, 65 +2026-05-15T00:44:21+08:00 +2026/05/15 00:44:21.648, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.93, 64 +2026-05-15T00:44:26+08:00 +2026/05/15 00:44:26.670, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.28, 64 +2026-05-15T00:44:31+08:00 +2026/05/15 00:44:31.694, NVIDIA GeForce RTX 5090, 62, 29, 9607, 32607, 260.92, 63 +2026-05-15T00:44:36+08:00 +2026/05/15 00:44:36.716, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 363.72, 65 +2026-05-15T00:44:41+08:00 +2026/05/15 00:44:41.739, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.31, 64 +2026-05-15T00:44:46+08:00 +2026/05/15 00:44:46.767, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.61, 65 +2026-05-15T00:44:51+08:00 +2026/05/15 00:44:51.790, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.73, 66 +2026-05-15T00:44:56+08:00 +2026/05/15 00:44:56.817, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.57, 66 +2026-05-15T00:45:01+08:00 +2026/05/15 00:45:01.841, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.00, 66 +2026-05-15T00:45:06+08:00 +2026/05/15 00:45:06.864, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.28, 64 +2026-05-15T00:45:11+08:00 +2026/05/15 00:45:11.887, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.75, 66 +2026-05-15T00:45:16+08:00 +2026/05/15 00:45:16.916, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.23, 66 +2026-05-15T00:45:21+08:00 +2026/05/15 00:45:21.940, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.83, 65 +2026-05-15T00:45:26+08:00 +2026/05/15 00:45:26.969, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.53, 65 +2026-05-15T00:45:31+08:00 +2026/05/15 00:45:31.991, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.56, 65 +2026-05-15T00:45:37+08:00 +2026/05/15 00:45:37.015, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.92, 65 +2026-05-15T00:45:42+08:00 +2026/05/15 00:45:42.040, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.60, 66 +2026-05-15T00:45:47+08:00 +2026/05/15 00:45:47.065, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.88, 67 +2026-05-15T00:45:52+08:00 +2026/05/15 00:45:52.088, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.51, 66 +2026-05-15T00:45:57+08:00 +2026/05/15 00:45:57.114, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.19, 65 +2026-05-15T00:46:02+08:00 +2026/05/15 00:46:02.137, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.27, 64 +2026-05-15T00:46:07+08:00 +2026/05/15 00:46:07.167, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.85, 65 +2026-05-15T00:46:12+08:00 +2026/05/15 00:46:12.190, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.10, 66 +2026-05-15T00:46:17+08:00 +2026/05/15 00:46:17.214, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.32, 66 +2026-05-15T00:46:22+08:00 +2026/05/15 00:46:22.237, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 65 +2026-05-15T00:46:27+08:00 +2026/05/15 00:46:27.260, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.65, 66 +2026-05-15T00:46:32+08:00 +2026/05/15 00:46:32.284, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.24, 65 +2026-05-15T00:46:37+08:00 +2026/05/15 00:46:37.307, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.10, 66 +2026-05-15T00:46:42+08:00 +2026/05/15 00:46:42.357, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.53, 65 +2026-05-15T00:46:47+08:00 +2026/05/15 00:46:47.381, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.48, 66 +2026-05-15T00:46:52+08:00 +2026/05/15 00:46:52.436, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 366.24, 65 +2026-05-15T00:46:57+08:00 +2026/05/15 00:46:57.460, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.51, 65 +2026-05-15T00:47:02+08:00 +2026/05/15 00:47:02.503, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 281.12, 59 +2026-05-15T00:47:07+08:00 +2026/05/15 00:47:07.556, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.07, 65 +2026-05-15T00:47:12+08:00 +2026/05/15 00:47:12.579, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.26, 66 +2026-05-15T00:47:17+08:00 +2026/05/15 00:47:17.622, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.88, 65 +2026-05-15T00:47:22+08:00 +2026/05/15 00:47:22.647, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.01, 64 +2026-05-15T00:47:27+08:00 +2026/05/15 00:47:27.673, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.71, 65 +2026-05-15T00:47:32+08:00 +2026/05/15 00:47:32.698, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.64, 66 +2026-05-15T00:47:37+08:00 +2026/05/15 00:47:37.725, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.93, 66 +2026-05-15T00:47:42+08:00 +2026/05/15 00:47:42.749, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 275.23, 59 +2026-05-15T00:47:47+08:00 +2026/05/15 00:47:47.773, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.43, 65 +2026-05-15T00:47:52+08:00 +2026/05/15 00:47:52.796, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.71, 65 +2026-05-15T00:47:57+08:00 +2026/05/15 00:47:57.820, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.27, 65 +2026-05-15T00:48:02+08:00 +2026/05/15 00:48:02.844, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.39, 64 +2026-05-15T00:48:07+08:00 +2026/05/15 00:48:07.867, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.65, 65 +2026-05-15T00:48:12+08:00 +2026/05/15 00:48:12.891, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.04, 65 +2026-05-15T00:48:17+08:00 +2026/05/15 00:48:17.915, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.74, 67 +2026-05-15T00:48:22+08:00 +2026/05/15 00:48:22.939, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.80, 64 +2026-05-15T00:48:27+08:00 +2026/05/15 00:48:27.962, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.74, 65 +2026-05-15T00:48:32+08:00 +2026/05/15 00:48:32.985, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.02, 66 +2026-05-15T00:48:37+08:00 +2026/05/15 00:48:38.011, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.08, 66 +2026-05-15T00:48:43+08:00 +2026/05/15 00:48:43.035, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.63, 64 +2026-05-15T00:48:48+08:00 +2026/05/15 00:48:48.057, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 366.25, 66 +2026-05-15T00:48:53+08:00 +2026/05/15 00:48:53.081, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 66 +2026-05-15T00:48:58+08:00 +2026/05/15 00:48:58.105, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 313.92, 65 +2026-05-15T00:49:03+08:00 +2026/05/15 00:49:03.129, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.20, 66 +2026-05-15T00:49:08+08:00 +2026/05/15 00:49:08.152, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.24, 66 +2026-05-15T00:49:13+08:00 +2026/05/15 00:49:13.175, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.94, 65 +2026-05-15T00:49:18+08:00 +2026/05/15 00:49:18.198, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.23, 65 +2026-05-15T00:49:23+08:00 +2026/05/15 00:49:23.221, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.12, 66 +2026-05-15T00:49:28+08:00 +2026/05/15 00:49:28.245, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 366.01, 66 +2026-05-15T00:49:33+08:00 +2026/05/15 00:49:33.270, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.32, 66 +2026-05-15T00:49:38+08:00 +2026/05/15 00:49:38.294, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.03, 66 +2026-05-15T00:49:43+08:00 +2026/05/15 00:49:43.317, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 351.94, 66 +2026-05-15T00:49:48+08:00 +2026/05/15 00:49:48.341, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.91, 65 +2026-05-15T00:49:53+08:00 +2026/05/15 00:49:53.369, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 356.87, 66 +2026-05-15T00:49:58+08:00 +2026/05/15 00:49:58.392, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.39, 65 +2026-05-15T00:50:03+08:00 +2026/05/15 00:50:03.416, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.52, 65 +2026-05-15T00:50:08+08:00 +2026/05/15 00:50:08.438, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.17, 65 +2026-05-15T00:50:13+08:00 +2026/05/15 00:50:13.460, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 360.45, 65 +2026-05-15T00:50:18+08:00 +2026/05/15 00:50:18.484, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.89, 65 +2026-05-15T00:50:23+08:00 +2026/05/15 00:50:23.508, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.54, 65 +2026-05-15T00:50:28+08:00 +2026/05/15 00:50:28.531, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.83, 65 +2026-05-15T00:50:33+08:00 +2026/05/15 00:50:33.555, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 365.05, 65 +2026-05-15T00:50:38+08:00 +2026/05/15 00:50:38.579, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.00, 66 +2026-05-15T00:50:43+08:00 +2026/05/15 00:50:43.604, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.29, 65 +2026-05-15T00:50:48+08:00 +2026/05/15 00:50:48.628, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 316.14, 60 +2026-05-15T00:50:53+08:00 +2026/05/15 00:50:53.649, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 354.89, 65 +2026-05-15T00:50:58+08:00 +2026/05/15 00:50:58.672, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.23, 66 +2026-05-15T00:51:03+08:00 +2026/05/15 00:51:03.698, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.26, 66 +2026-05-15T00:51:08+08:00 +2026/05/15 00:51:08.721, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.84, 65 +2026-05-15T00:51:13+08:00 +2026/05/15 00:51:13.747, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.95, 66 +2026-05-15T00:51:18+08:00 +2026/05/15 00:51:18.770, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.96, 66 +2026-05-15T00:51:23+08:00 +2026/05/15 00:51:23.798, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.77, 65 +2026-05-15T00:51:28+08:00 +2026/05/15 00:51:28.821, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.37, 65 +2026-05-15T00:51:33+08:00 +2026/05/15 00:51:33.844, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.73, 65 +2026-05-15T00:51:38+08:00 +2026/05/15 00:51:38.870, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.26, 65 +2026-05-15T00:51:43+08:00 +2026/05/15 00:51:43.894, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.94, 65 +2026-05-15T00:51:48+08:00 +2026/05/15 00:51:48.917, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.33, 66 +2026-05-15T00:51:53+08:00 +2026/05/15 00:51:53.942, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.28, 66 +2026-05-15T00:51:58+08:00 +2026/05/15 00:51:58.965, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.18, 65 +2026-05-15T00:52:03+08:00 +2026/05/15 00:52:03.988, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.36, 66 +2026-05-15T00:52:08+08:00 +2026/05/15 00:52:09.011, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.31, 65 +2026-05-15T00:52:14+08:00 +2026/05/15 00:52:14.035, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.74, 65 +2026-05-15T00:52:19+08:00 +2026/05/15 00:52:19.076, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.54, 66 +2026-05-15T00:52:24+08:00 +2026/05/15 00:52:24.099, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.77, 65 +2026-05-15T00:52:29+08:00 +2026/05/15 00:52:29.123, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.98, 65 +2026-05-15T00:52:34+08:00 +2026/05/15 00:52:34.148, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.58, 65 +2026-05-15T00:52:39+08:00 +2026/05/15 00:52:39.172, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.92, 65 +2026-05-15T00:52:44+08:00 +2026/05/15 00:52:44.196, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.99, 65 +2026-05-15T00:52:49+08:00 +2026/05/15 00:52:49.220, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.10, 66 +2026-05-15T00:52:54+08:00 +2026/05/15 00:52:54.243, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.25, 66 +2026-05-15T00:52:59+08:00 +2026/05/15 00:52:59.266, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.99, 65 +2026-05-15T00:53:04+08:00 +2026/05/15 00:53:04.291, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.92, 66 +2026-05-15T00:53:09+08:00 +2026/05/15 00:53:09.315, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.31, 65 +2026-05-15T00:53:14+08:00 +2026/05/15 00:53:14.337, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.53, 65 +2026-05-15T00:53:19+08:00 +2026/05/15 00:53:19.361, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.76, 65 +2026-05-15T00:53:24+08:00 +2026/05/15 00:53:24.385, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 264.59, 64 +2026-05-15T00:53:29+08:00 +2026/05/15 00:53:29.410, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.32, 64 +2026-05-15T00:53:34+08:00 +2026/05/15 00:53:34.433, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.27, 64 +2026-05-15T00:53:39+08:00 +2026/05/15 00:53:39.457, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.65, 66 +2026-05-15T00:53:44+08:00 +2026/05/15 00:53:44.481, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.85, 65 +2026-05-15T00:53:49+08:00 +2026/05/15 00:53:49.504, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 363.22, 65 +2026-05-15T00:53:54+08:00 +2026/05/15 00:53:54.525, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.85, 66 +2026-05-15T00:53:59+08:00 +2026/05/15 00:53:59.550, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.37, 65 +2026-05-15T00:54:04+08:00 +2026/05/15 00:54:04.574, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.27, 66 +2026-05-15T00:54:09+08:00 +2026/05/15 00:54:09.601, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 363.32, 66 +2026-05-15T00:54:14+08:00 +2026/05/15 00:54:14.623, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.10, 66 +2026-05-15T00:54:19+08:00 +2026/05/15 00:54:19.648, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.13, 66 +2026-05-15T00:54:24+08:00 +2026/05/15 00:54:24.670, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.95, 65 +2026-05-15T00:54:29+08:00 +2026/05/15 00:54:29.693, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.80, 65 +2026-05-15T00:54:34+08:00 +2026/05/15 00:54:34.716, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.99, 64 +2026-05-15T00:54:39+08:00 +2026/05/15 00:54:39.738, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.13, 65 +2026-05-15T00:54:44+08:00 +2026/05/15 00:54:44.795, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.06, 65 +2026-05-15T00:54:49+08:00 +2026/05/15 00:54:49.818, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.83, 65 +2026-05-15T00:54:54+08:00 +2026/05/15 00:54:54.841, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 65 +2026-05-15T00:54:59+08:00 +2026/05/15 00:54:59.883, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.07, 65 +2026-05-15T00:55:04+08:00 +2026/05/15 00:55:04.924, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.78, 66 +2026-05-15T00:55:09+08:00 +2026/05/15 00:55:09.983, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.42, 66 +2026-05-15T00:55:14+08:00 +2026/05/15 00:55:15.010, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 255.64, 59 +2026-05-15T00:55:20+08:00 +2026/05/15 00:55:20.052, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.51, 66 +2026-05-15T00:55:25+08:00 +2026/05/15 00:55:25.075, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.54, 64 +2026-05-15T00:55:30+08:00 +2026/05/15 00:55:30.135, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.69, 65 +2026-05-15T00:55:35+08:00 +2026/05/15 00:55:35.158, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.08, 66 +2026-05-15T00:55:40+08:00 +2026/05/15 00:55:40.197, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.15, 65 +2026-05-15T00:55:45+08:00 +2026/05/15 00:55:45.237, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.86, 66 +2026-05-15T00:55:50+08:00 +2026/05/15 00:55:50.260, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.07, 66 +2026-05-15T00:55:55+08:00 +2026/05/15 00:55:55.283, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.99, 67 +2026-05-15T00:56:00+08:00 +2026/05/15 00:56:00.349, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.82, 65 +2026-05-15T00:56:05+08:00 +2026/05/15 00:56:05.373, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.58, 66 +2026-05-15T00:56:10+08:00 +2026/05/15 00:56:10.395, NVIDIA GeForce RTX 5090, 83, 37, 9607, 32607, 364.92, 64 +2026-05-15T00:56:15+08:00 +2026/05/15 00:56:15.420, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 283.94, 65 +2026-05-15T00:56:20+08:00 +2026/05/15 00:56:20.443, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 365.95, 66 +2026-05-15T00:56:25+08:00 +2026/05/15 00:56:25.466, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.24, 66 +2026-05-15T00:56:30+08:00 +2026/05/15 00:56:30.490, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.51, 65 +2026-05-15T00:56:35+08:00 +2026/05/15 00:56:35.512, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.23, 64 +2026-05-15T00:56:40+08:00 +2026/05/15 00:56:40.534, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.31, 65 +2026-05-15T00:56:45+08:00 +2026/05/15 00:56:45.557, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.79, 66 +2026-05-15T00:56:50+08:00 +2026/05/15 00:56:50.581, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.33, 65 +2026-05-15T00:56:55+08:00 +2026/05/15 00:56:55.605, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.41, 65 +2026-05-15T00:57:00+08:00 +2026/05/15 00:57:00.630, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.81, 67 +2026-05-15T00:57:05+08:00 +2026/05/15 00:57:05.654, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.87, 66 +2026-05-15T00:57:10+08:00 +2026/05/15 00:57:10.677, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 261.83, 62 +2026-05-15T00:57:15+08:00 +2026/05/15 00:57:15.700, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.77, 64 +2026-05-15T00:57:20+08:00 +2026/05/15 00:57:20.726, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.06, 65 +2026-05-15T00:57:25+08:00 +2026/05/15 00:57:25.754, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.97, 65 +2026-05-15T00:57:30+08:00 +2026/05/15 00:57:30.778, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.35, 65 +2026-05-15T00:57:35+08:00 +2026/05/15 00:57:35.802, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.25, 64 +2026-05-15T00:57:40+08:00 +2026/05/15 00:57:40.827, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.67, 65 +2026-05-15T00:57:45+08:00 +2026/05/15 00:57:45.850, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.93, 65 +2026-05-15T00:57:50+08:00 +2026/05/15 00:57:50.874, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.25, 65 +2026-05-15T00:57:55+08:00 +2026/05/15 00:57:55.898, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 365.80, 66 +2026-05-15T00:58:00+08:00 +2026/05/15 00:58:00.921, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.42, 65 +2026-05-15T00:58:05+08:00 +2026/05/15 00:58:05.945, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.05, 66 +2026-05-15T00:58:10+08:00 +2026/05/15 00:58:10.969, NVIDIA GeForce RTX 5090, 83, 37, 9607, 32607, 364.34, 65 +2026-05-15T00:58:15+08:00 +2026/05/15 00:58:15.992, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.24, 65 +2026-05-15T00:58:21+08:00 +2026/05/15 00:58:21.017, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.07, 65 +2026-05-15T00:58:26+08:00 +2026/05/15 00:58:26.040, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 288.52, 59 +2026-05-15T00:58:31+08:00 +2026/05/15 00:58:31.063, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.45, 65 +2026-05-15T00:58:36+08:00 +2026/05/15 00:58:36.088, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.03, 64 +2026-05-15T00:58:41+08:00 +2026/05/15 00:58:41.113, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.02, 65 +2026-05-15T00:58:46+08:00 +2026/05/15 00:58:46.136, NVIDIA GeForce RTX 5090, 14, 5, 9607, 32607, 218.13, 62 +2026-05-15T00:58:51+08:00 +2026/05/15 00:58:51.161, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.85, 65 +2026-05-15T00:58:56+08:00 +2026/05/15 00:58:56.184, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.62, 66 +2026-05-15T00:59:01+08:00 +2026/05/15 00:59:01.206, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.78, 66 +2026-05-15T00:59:06+08:00 +2026/05/15 00:59:06.231, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 298.40, 59 +2026-05-15T00:59:11+08:00 +2026/05/15 00:59:11.256, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.54, 65 +2026-05-15T00:59:16+08:00 +2026/05/15 00:59:16.279, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.00, 65 +2026-05-15T00:59:21+08:00 +2026/05/15 00:59:21.301, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.51, 65 +2026-05-15T00:59:26+08:00 +2026/05/15 00:59:26.327, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.54, 66 +2026-05-15T00:59:31+08:00 +2026/05/15 00:59:31.351, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.81, 66 +2026-05-15T00:59:36+08:00 +2026/05/15 00:59:36.374, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.03, 66 +2026-05-15T00:59:41+08:00 +2026/05/15 00:59:41.395, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 366.20, 66 +2026-05-15T00:59:46+08:00 +2026/05/15 00:59:46.420, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.27, 65 +2026-05-15T00:59:51+08:00 +2026/05/15 00:59:51.443, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.14, 65 +2026-05-15T00:59:56+08:00 +2026/05/15 00:59:56.467, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.10, 66 +2026-05-15T01:00:01+08:00 +2026/05/15 01:00:01.493, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.60, 64 +2026-05-15T01:00:06+08:00 +2026/05/15 01:00:06.517, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.75, 65 +2026-05-15T01:00:11+08:00 +2026/05/15 01:00:11.557, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.74, 65 +2026-05-15T01:00:16+08:00 +2026/05/15 01:00:16.581, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.77, 65 +2026-05-15T01:00:21+08:00 +2026/05/15 01:00:21.621, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.05, 66 +2026-05-15T01:00:26+08:00 +2026/05/15 01:00:26.666, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.93, 65 +2026-05-15T01:00:31+08:00 +2026/05/15 01:00:31.707, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.31, 64 +2026-05-15T01:00:36+08:00 +2026/05/15 01:00:36.749, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.48, 66 +2026-05-15T01:00:41+08:00 +2026/05/15 01:00:41.803, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.00, 65 +2026-05-15T01:00:46+08:00 +2026/05/15 01:00:46.828, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.32, 66 +2026-05-15T01:00:51+08:00 +2026/05/15 01:00:51.854, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.04, 66 +2026-05-15T01:00:56+08:00 +2026/05/15 01:00:56.878, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.81, 65 +2026-05-15T01:01:01+08:00 +2026/05/15 01:01:01.924, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 274.64, 59 +2026-05-15T01:01:06+08:00 +2026/05/15 01:01:06.965, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.41, 65 +2026-05-15T01:01:11+08:00 +2026/05/15 01:01:12.007, NVIDIA GeForce RTX 5090, 87, 36, 9607, 32607, 362.92, 65 +2026-05-15T01:01:17+08:00 +2026/05/15 01:01:17.032, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.78, 65 +2026-05-15T01:01:22+08:00 +2026/05/15 01:01:22.060, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.86, 66 +2026-05-15T01:01:27+08:00 +2026/05/15 01:01:27.085, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.05, 65 +2026-05-15T01:01:32+08:00 +2026/05/15 01:01:32.108, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.97, 65 +2026-05-15T01:01:37+08:00 +2026/05/15 01:01:37.131, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.24, 64 +2026-05-15T01:01:42+08:00 +2026/05/15 01:01:42.155, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.42, 65 +2026-05-15T01:01:47+08:00 +2026/05/15 01:01:47.178, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.38, 65 +2026-05-15T01:01:52+08:00 +2026/05/15 01:01:52.203, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.53, 66 +2026-05-15T01:01:57+08:00 +2026/05/15 01:01:57.225, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.98, 66 +2026-05-15T01:02:02+08:00 +2026/05/15 01:02:02.252, NVIDIA GeForce RTX 5090, 87, 36, 9607, 32607, 361.84, 64 +2026-05-15T01:02:07+08:00 +2026/05/15 01:02:07.275, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.56, 66 +2026-05-15T01:02:12+08:00 +2026/05/15 01:02:12.298, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.11, 66 +2026-05-15T01:02:17+08:00 +2026/05/15 01:02:17.322, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.09, 64 +2026-05-15T01:02:22+08:00 +2026/05/15 01:02:22.345, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.15, 66 +2026-05-15T01:02:27+08:00 +2026/05/15 01:02:27.370, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 65 +2026-05-15T01:02:32+08:00 +2026/05/15 01:02:32.395, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.15, 66 +2026-05-15T01:02:37+08:00 +2026/05/15 01:02:37.467, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.95, 66 +2026-05-15T01:02:42+08:00 +2026/05/15 01:02:42.505, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.20, 64 +2026-05-15T01:02:47+08:00 +2026/05/15 01:02:47.528, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.19, 65 +2026-05-15T01:02:52+08:00 +2026/05/15 01:02:52.570, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.31, 64 +2026-05-15T01:02:57+08:00 +2026/05/15 01:02:57.595, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 314.23, 65 +2026-05-15T01:03:02+08:00 +2026/05/15 01:03:02.619, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.70, 66 +2026-05-15T01:03:07+08:00 +2026/05/15 01:03:07.647, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.74, 66 +2026-05-15T01:03:12+08:00 +2026/05/15 01:03:12.670, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.88, 65 +2026-05-15T01:03:17+08:00 +2026/05/15 01:03:17.693, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.54, 66 +2026-05-15T01:03:22+08:00 +2026/05/15 01:03:22.717, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.59, 66 +2026-05-15T01:03:27+08:00 +2026/05/15 01:03:27.741, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.16, 65 +2026-05-15T01:03:32+08:00 +2026/05/15 01:03:32.765, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.25, 66 +2026-05-15T01:03:37+08:00 +2026/05/15 01:03:37.788, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.92, 66 +2026-05-15T01:03:42+08:00 +2026/05/15 01:03:42.826, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.81, 66 +2026-05-15T01:03:47+08:00 +2026/05/15 01:03:47.858, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.96, 66 +2026-05-15T01:03:52+08:00 +2026/05/15 01:03:52.883, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 65 +2026-05-15T01:03:57+08:00 +2026/05/15 01:03:57.922, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.38, 66 +2026-05-15T01:04:02+08:00 +2026/05/15 01:04:02.949, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.30, 66 +2026-05-15T01:04:07+08:00 +2026/05/15 01:04:07.975, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.78, 65 +2026-05-15T01:04:12+08:00 +2026/05/15 01:04:13.000, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 263.82, 66 +2026-05-15T01:04:18+08:00 +2026/05/15 01:04:18.024, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 364.52, 65 +2026-05-15T01:04:23+08:00 +2026/05/15 01:04:23.072, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.32, 66 +2026-05-15T01:04:28+08:00 +2026/05/15 01:04:28.095, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.93, 65 +2026-05-15T01:04:33+08:00 +2026/05/15 01:04:33.118, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 66 +2026-05-15T01:04:38+08:00 +2026/05/15 01:04:38.145, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.31, 66 +2026-05-15T01:04:43+08:00 +2026/05/15 01:04:43.185, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.39, 66 +2026-05-15T01:04:48+08:00 +2026/05/15 01:04:48.209, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.74, 66 +2026-05-15T01:04:53+08:00 +2026/05/15 01:04:53.238, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.95, 66 +2026-05-15T01:04:58+08:00 +2026/05/15 01:04:58.262, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.88, 66 +2026-05-15T01:05:03+08:00 +2026/05/15 01:05:03.286, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.03, 65 +2026-05-15T01:05:08+08:00 +2026/05/15 01:05:08.309, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 305.92, 66 +2026-05-15T01:05:13+08:00 +2026/05/15 01:05:13.332, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.21, 64 +2026-05-15T01:05:18+08:00 +2026/05/15 01:05:18.355, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.07, 65 +2026-05-15T01:05:23+08:00 +2026/05/15 01:05:23.380, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.25, 65 +2026-05-15T01:05:28+08:00 +2026/05/15 01:05:28.405, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.27, 66 +2026-05-15T01:05:33+08:00 +2026/05/15 01:05:33.427, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.54, 65 +2026-05-15T01:05:38+08:00 +2026/05/15 01:05:38.450, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.31, 65 +2026-05-15T01:05:43+08:00 +2026/05/15 01:05:43.474, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.96, 66 +2026-05-15T01:05:48+08:00 +2026/05/15 01:05:48.498, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.13, 66 +2026-05-15T01:05:53+08:00 +2026/05/15 01:05:53.521, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.91, 66 +2026-05-15T01:05:58+08:00 +2026/05/15 01:05:58.545, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.39, 64 +2026-05-15T01:06:03+08:00 +2026/05/15 01:06:03.572, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.09, 66 +2026-05-15T01:06:08+08:00 +2026/05/15 01:06:08.595, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.23, 66 +2026-05-15T01:06:13+08:00 +2026/05/15 01:06:13.618, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.13, 66 +2026-05-15T01:06:18+08:00 +2026/05/15 01:06:18.641, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.67, 66 +2026-05-15T01:06:23+08:00 +2026/05/15 01:06:23.664, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.00, 66 +2026-05-15T01:06:28+08:00 +2026/05/15 01:06:28.691, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.19, 65 +2026-05-15T01:06:33+08:00 +2026/05/15 01:06:33.715, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.75, 65 +2026-05-15T01:06:38+08:00 +2026/05/15 01:06:38.739, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.06, 66 +2026-05-15T01:06:43+08:00 +2026/05/15 01:06:43.761, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 252.58, 65 +2026-05-15T01:06:48+08:00 +2026/05/15 01:06:48.784, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.85, 64 +2026-05-15T01:06:53+08:00 +2026/05/15 01:06:53.808, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.97, 66 +2026-05-15T01:06:58+08:00 +2026/05/15 01:06:58.832, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.67, 65 +2026-05-15T01:07:03+08:00 +2026/05/15 01:07:03.890, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.90, 66 +2026-05-15T01:07:08+08:00 +2026/05/15 01:07:08.915, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.49, 66 +2026-05-15T01:07:13+08:00 +2026/05/15 01:07:13.967, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.91, 66 +2026-05-15T01:07:18+08:00 +2026/05/15 01:07:18.991, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.35, 65 +2026-05-15T01:07:24+08:00 +2026/05/15 01:07:24.015, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 65 +2026-05-15T01:07:29+08:00 +2026/05/15 01:07:29.040, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.34, 65 +2026-05-15T01:07:34+08:00 +2026/05/15 01:07:34.062, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.51, 66 +2026-05-15T01:07:39+08:00 +2026/05/15 01:07:39.085, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.02, 65 +2026-05-15T01:07:44+08:00 +2026/05/15 01:07:44.109, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.54, 66 +2026-05-15T01:07:49+08:00 +2026/05/15 01:07:49.132, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 365.51, 66 +2026-05-15T01:07:54+08:00 +2026/05/15 01:07:54.157, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 65 +2026-05-15T01:07:59+08:00 +2026/05/15 01:07:59.181, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 296.42, 65 +2026-05-15T01:08:04+08:00 +2026/05/15 01:08:04.205, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.70, 64 +2026-05-15T01:08:09+08:00 +2026/05/15 01:08:09.229, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.14, 66 +2026-05-15T01:08:14+08:00 +2026/05/15 01:08:14.253, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.45, 66 +2026-05-15T01:08:19+08:00 +2026/05/15 01:08:19.278, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.31, 65 +2026-05-15T01:08:24+08:00 +2026/05/15 01:08:24.301, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.65, 65 +2026-05-15T01:08:29+08:00 +2026/05/15 01:08:29.324, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.12, 66 +2026-05-15T01:08:34+08:00 +2026/05/15 01:08:34.349, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.64, 65 +2026-05-15T01:08:39+08:00 +2026/05/15 01:08:39.372, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.73, 65 +2026-05-15T01:08:44+08:00 +2026/05/15 01:08:44.398, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.16, 66 +2026-05-15T01:08:49+08:00 +2026/05/15 01:08:49.423, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.89, 65 +2026-05-15T01:08:54+08:00 +2026/05/15 01:08:54.447, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.01, 65 +2026-05-15T01:08:59+08:00 +2026/05/15 01:08:59.469, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.70, 66 +2026-05-15T01:09:04+08:00 +2026/05/15 01:09:04.493, NVIDIA GeForce RTX 5090, 88, 36, 9607, 32607, 363.33, 65 +2026-05-15T01:09:09+08:00 +2026/05/15 01:09:09.516, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 356.20, 65 +2026-05-15T01:09:14+08:00 +2026/05/15 01:09:14.540, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.63, 65 +2026-05-15T01:09:19+08:00 +2026/05/15 01:09:19.563, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.58, 65 +2026-05-15T01:09:24+08:00 +2026/05/15 01:09:24.586, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 356.69, 66 +2026-05-15T01:09:29+08:00 +2026/05/15 01:09:29.615, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.56, 66 +2026-05-15T01:09:34+08:00 +2026/05/15 01:09:34.640, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.81, 65 +2026-05-15T01:09:39+08:00 +2026/05/15 01:09:39.667, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.39, 65 +2026-05-15T01:09:44+08:00 +2026/05/15 01:09:44.691, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.37, 65 +2026-05-15T01:09:49+08:00 +2026/05/15 01:09:49.719, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 365.28, 65 +2026-05-15T01:09:54+08:00 +2026/05/15 01:09:54.741, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.41, 66 +2026-05-15T01:09:59+08:00 +2026/05/15 01:09:59.765, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 65 +2026-05-15T01:10:04+08:00 +2026/05/15 01:10:04.789, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.16, 66 +2026-05-15T01:10:09+08:00 +2026/05/15 01:10:09.813, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.11, 65 +2026-05-15T01:10:14+08:00 +2026/05/15 01:10:14.839, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.01, 65 +2026-05-15T01:10:19+08:00 +2026/05/15 01:10:19.863, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.38, 66 +2026-05-15T01:10:24+08:00 +2026/05/15 01:10:24.904, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.51, 65 +2026-05-15T01:10:29+08:00 +2026/05/15 01:10:29.928, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.65, 65 +2026-05-15T01:10:34+08:00 +2026/05/15 01:10:34.949, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 270.11, 59 +2026-05-15T01:10:39+08:00 +2026/05/15 01:10:39.974, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 65 +2026-05-15T01:10:45+08:00 +2026/05/15 01:10:45.030, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.34, 66 +2026-05-15T01:10:50+08:00 +2026/05/15 01:10:50.055, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 65 +2026-05-15T01:10:55+08:00 +2026/05/15 01:10:55.103, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.45, 65 +2026-05-15T01:11:00+08:00 +2026/05/15 01:11:00.127, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.73, 66 +2026-05-15T01:11:05+08:00 +2026/05/15 01:11:05.176, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.45, 66 +2026-05-15T01:11:10+08:00 +2026/05/15 01:11:10.199, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 294.17, 60 +2026-05-15T01:11:15+08:00 +2026/05/15 01:11:15.222, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.26, 65 +2026-05-15T01:11:20+08:00 +2026/05/15 01:11:20.284, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.09, 66 +2026-05-15T01:11:25+08:00 +2026/05/15 01:11:25.307, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.35, 65 +2026-05-15T01:11:30+08:00 +2026/05/15 01:11:30.355, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.59, 66 +2026-05-15T01:11:35+08:00 +2026/05/15 01:11:35.380, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 66 +2026-05-15T01:11:40+08:00 +2026/05/15 01:11:40.419, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.31, 66 +2026-05-15T01:11:45+08:00 +2026/05/15 01:11:45.462, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.35, 65 +2026-05-15T01:11:50+08:00 +2026/05/15 01:11:50.503, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.49, 65 +2026-05-15T01:11:55+08:00 +2026/05/15 01:11:55.574, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.70, 65 +2026-05-15T01:12:00+08:00 +2026/05/15 01:12:00.598, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.33, 66 +2026-05-15T01:12:05+08:00 +2026/05/15 01:12:05.648, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.48, 66 +2026-05-15T01:12:10+08:00 +2026/05/15 01:12:10.673, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.60, 65 +2026-05-15T01:12:15+08:00 +2026/05/15 01:12:15.725, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 65 +2026-05-15T01:12:20+08:00 +2026/05/15 01:12:20.748, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.65, 65 +2026-05-15T01:12:25+08:00 +2026/05/15 01:12:25.773, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.20, 65 +2026-05-15T01:12:30+08:00 +2026/05/15 01:12:30.795, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.40, 66 +2026-05-15T01:12:35+08:00 +2026/05/15 01:12:35.819, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.87, 66 +2026-05-15T01:12:40+08:00 +2026/05/15 01:12:40.842, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 365.89, 66 +2026-05-15T01:12:45+08:00 +2026/05/15 01:12:45.865, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 66 +2026-05-15T01:12:50+08:00 +2026/05/15 01:12:50.888, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 365.36, 66 +2026-05-15T01:12:55+08:00 +2026/05/15 01:12:55.912, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.44, 64 +2026-05-15T01:13:00+08:00 +2026/05/15 01:13:00.936, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.86, 65 +2026-05-15T01:13:05+08:00 +2026/05/15 01:13:05.960, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.12, 65 +2026-05-15T01:13:10+08:00 +2026/05/15 01:13:10.986, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.28, 65 +2026-05-15T01:13:15+08:00 +2026/05/15 01:13:16.010, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.17, 65 +2026-05-15T01:13:21+08:00 +2026/05/15 01:13:21.034, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.66, 66 +2026-05-15T01:13:26+08:00 +2026/05/15 01:13:26.059, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.95, 66 +2026-05-15T01:13:31+08:00 +2026/05/15 01:13:31.083, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.43, 66 +2026-05-15T01:13:36+08:00 +2026/05/15 01:13:36.106, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 357.60, 65 +2026-05-15T01:13:41+08:00 +2026/05/15 01:13:41.133, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.74, 65 +2026-05-15T01:13:46+08:00 +2026/05/15 01:13:46.159, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 366.06, 65 +2026-05-15T01:13:51+08:00 +2026/05/15 01:13:51.183, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 365.82, 65 +2026-05-15T01:13:56+08:00 +2026/05/15 01:13:56.207, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 66 +2026-05-15T01:14:01+08:00 +2026/05/15 01:14:01.230, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.45, 65 +2026-05-15T01:14:06+08:00 +2026/05/15 01:14:06.255, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.11, 65 +2026-05-15T01:14:11+08:00 +2026/05/15 01:14:11.279, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.60, 66 +2026-05-15T01:14:16+08:00 +2026/05/15 01:14:16.304, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 366.39, 66 +2026-05-15T01:14:21+08:00 +2026/05/15 01:14:21.344, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 313.76, 65 +2026-05-15T01:14:26+08:00 +2026/05/15 01:14:26.399, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.24, 65 +2026-05-15T01:14:31+08:00 +2026/05/15 01:14:31.424, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.46, 66 +2026-05-15T01:14:36+08:00 +2026/05/15 01:14:36.464, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.49, 66 +2026-05-15T01:14:41+08:00 +2026/05/15 01:14:41.504, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 365.58, 65 +2026-05-15T01:14:46+08:00 +2026/05/15 01:14:46.551, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.34, 66 +2026-05-15T01:14:51+08:00 +2026/05/15 01:14:51.575, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.45, 66 +2026-05-15T01:14:56+08:00 +2026/05/15 01:14:56.627, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.17, 65 +2026-05-15T01:15:01+08:00 +2026/05/15 01:15:01.682, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.64, 65 +2026-05-15T01:15:06+08:00 +2026/05/15 01:15:06.707, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.17, 65 +2026-05-15T01:15:11+08:00 +2026/05/15 01:15:11.732, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.33, 67 +2026-05-15T01:15:16+08:00 +2026/05/15 01:15:16.780, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.04, 66 +2026-05-15T01:15:21+08:00 +2026/05/15 01:15:21.805, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.78, 66 +2026-05-15T01:15:26+08:00 +2026/05/15 01:15:26.856, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.99, 66 +2026-05-15T01:15:31+08:00 +2026/05/15 01:15:31.914, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.25, 66 +2026-05-15T01:15:36+08:00 +2026/05/15 01:15:36.937, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.96, 64 +2026-05-15T01:15:41+08:00 +2026/05/15 01:15:41.979, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 362.05, 65 +2026-05-15T01:15:47+08:00 +2026/05/15 01:15:47.019, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.64, 65 +2026-05-15T01:15:52+08:00 +2026/05/15 01:15:52.061, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.67, 65 +2026-05-15T01:15:57+08:00 +2026/05/15 01:15:57.112, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.53, 66 +2026-05-15T01:16:02+08:00 +2026/05/15 01:16:02.137, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.67, 65 +2026-05-15T01:16:07+08:00 +2026/05/15 01:16:07.161, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.36, 65 +2026-05-15T01:16:12+08:00 +2026/05/15 01:16:12.203, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 66 +2026-05-15T01:16:17+08:00 +2026/05/15 01:16:17.226, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.57, 66 +2026-05-15T01:16:22+08:00 +2026/05/15 01:16:22.249, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.06, 65 +2026-05-15T01:16:27+08:00 +2026/05/15 01:16:27.273, NVIDIA GeForce RTX 5090, 83, 37, 9607, 32607, 202.28, 62 +2026-05-15T01:16:32+08:00 +2026/05/15 01:16:32.297, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.88, 66 +2026-05-15T01:16:37+08:00 +2026/05/15 01:16:37.321, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.44, 66 +2026-05-15T01:16:42+08:00 +2026/05/15 01:16:42.345, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.42, 64 +2026-05-15T01:16:47+08:00 +2026/05/15 01:16:47.371, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.32, 66 +2026-05-15T01:16:52+08:00 +2026/05/15 01:16:52.396, NVIDIA GeForce RTX 5090, 10, 3, 9607, 32607, 344.44, 62 +2026-05-15T01:16:57+08:00 +2026/05/15 01:16:57.418, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.03, 66 +2026-05-15T01:17:02+08:00 +2026/05/15 01:17:02.443, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.99, 65 +2026-05-15T01:17:07+08:00 +2026/05/15 01:17:07.466, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 65 +2026-05-15T01:17:12+08:00 +2026/05/15 01:17:12.497, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.79, 65 +2026-05-15T01:17:17+08:00 +2026/05/15 01:17:17.520, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.72, 65 +2026-05-15T01:17:22+08:00 +2026/05/15 01:17:22.547, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.71, 66 +2026-05-15T01:17:27+08:00 +2026/05/15 01:17:27.571, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 366.13, 66 +2026-05-15T01:17:32+08:00 +2026/05/15 01:17:32.596, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.42, 65 +2026-05-15T01:17:37+08:00 +2026/05/15 01:17:37.619, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.96, 67 +2026-05-15T01:17:42+08:00 +2026/05/15 01:17:42.690, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.65, 66 +2026-05-15T01:17:47+08:00 +2026/05/15 01:17:47.713, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 363.20, 66 +2026-05-15T01:17:52+08:00 +2026/05/15 01:17:52.737, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.08, 65 +2026-05-15T01:17:57+08:00 +2026/05/15 01:17:57.780, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.47, 66 +2026-05-15T01:18:02+08:00 +2026/05/15 01:18:02.801, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 364.53, 66 +2026-05-15T01:18:07+08:00 +2026/05/15 01:18:07.826, NVIDIA GeForce RTX 5090, 5, 5, 9607, 32607, 268.17, 65 +2026-05-15T01:18:12+08:00 +2026/05/15 01:18:12.849, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.74, 66 +2026-05-15T01:18:17+08:00 +2026/05/15 01:18:17.873, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.08, 65 +2026-05-15T01:18:22+08:00 +2026/05/15 01:18:22.896, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.54, 66 +2026-05-15T01:18:27+08:00 +2026/05/15 01:18:27.920, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 66 +2026-05-15T01:18:32+08:00 +2026/05/15 01:18:32.959, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.55, 65 +2026-05-15T01:18:37+08:00 +2026/05/15 01:18:37.984, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.98, 66 +2026-05-15T01:18:42+08:00 +2026/05/15 01:18:43.007, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.68, 66 +2026-05-15T01:18:48+08:00 +2026/05/15 01:18:48.049, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.66, 64 +2026-05-15T01:18:53+08:00 +2026/05/15 01:18:53.104, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.47, 64 +2026-05-15T01:18:58+08:00 +2026/05/15 01:18:58.161, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.43, 65 +2026-05-15T01:19:03+08:00 +2026/05/15 01:19:03.185, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.68, 65 +2026-05-15T01:19:08+08:00 +2026/05/15 01:19:08.210, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.79, 65 +2026-05-15T01:19:13+08:00 +2026/05/15 01:19:13.232, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.49, 65 +2026-05-15T01:19:18+08:00 +2026/05/15 01:19:18.260, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.93, 66 +2026-05-15T01:19:23+08:00 +2026/05/15 01:19:23.285, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.50, 65 +2026-05-15T01:19:28+08:00 +2026/05/15 01:19:28.309, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.38, 66 +2026-05-15T01:19:33+08:00 +2026/05/15 01:19:33.336, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.25, 65 +2026-05-15T01:19:38+08:00 +2026/05/15 01:19:38.361, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 365.35, 66 +2026-05-15T01:19:43+08:00 +2026/05/15 01:19:43.383, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.49, 66 +2026-05-15T01:19:48+08:00 +2026/05/15 01:19:48.407, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 365.15, 66 +2026-05-15T01:19:53+08:00 +2026/05/15 01:19:53.432, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 366.11, 66 +2026-05-15T01:19:58+08:00 +2026/05/15 01:19:58.456, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.72, 65 +2026-05-15T01:20:03+08:00 +2026/05/15 01:20:03.480, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.81, 66 +2026-05-15T01:20:08+08:00 +2026/05/15 01:20:08.503, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 67 +2026-05-15T01:20:13+08:00 +2026/05/15 01:20:13.528, NVIDIA GeForce RTX 5090, 52, 26, 9607, 32607, 355.52, 62 +2026-05-15T01:20:18+08:00 +2026/05/15 01:20:18.552, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.36, 65 +2026-05-15T01:20:23+08:00 +2026/05/15 01:20:23.580, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.17, 65 +2026-05-15T01:20:28+08:00 +2026/05/15 01:20:28.602, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.81, 65 +2026-05-15T01:20:33+08:00 +2026/05/15 01:20:33.628, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.38, 65 +2026-05-15T01:20:38+08:00 +2026/05/15 01:20:38.653, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.71, 65 +2026-05-15T01:20:43+08:00 +2026/05/15 01:20:43.678, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.03, 66 +2026-05-15T01:20:48+08:00 +2026/05/15 01:20:48.702, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.17, 66 +2026-05-15T01:20:53+08:00 +2026/05/15 01:20:53.725, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.32, 66 +2026-05-15T01:20:58+08:00 +2026/05/15 01:20:58.748, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.79, 65 +2026-05-15T01:21:03+08:00 +2026/05/15 01:21:03.801, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.20, 65 +2026-05-15T01:21:08+08:00 +2026/05/15 01:21:08.824, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.81, 65 +2026-05-15T01:21:13+08:00 +2026/05/15 01:21:13.896, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.59, 65 +2026-05-15T01:21:18+08:00 +2026/05/15 01:21:18.918, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.07, 65 +2026-05-15T01:21:23+08:00 +2026/05/15 01:21:23.960, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.67, 65 +2026-05-15T01:21:28+08:00 +2026/05/15 01:21:29.003, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.51, 65 +2026-05-15T01:21:34+08:00 +2026/05/15 01:21:34.029, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.55, 65 +2026-05-15T01:21:39+08:00 +2026/05/15 01:21:39.068, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.20, 64 +2026-05-15T01:21:44+08:00 +2026/05/15 01:21:44.149, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.64, 66 +2026-05-15T01:21:49+08:00 +2026/05/15 01:21:49.172, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.44, 65 +2026-05-15T01:21:54+08:00 +2026/05/15 01:21:54.216, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.84, 66 +2026-05-15T01:21:59+08:00 +2026/05/15 01:21:59.241, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.13, 65 +2026-05-15T01:22:04+08:00 +2026/05/15 01:22:04.266, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.13, 66 +2026-05-15T01:22:09+08:00 +2026/05/15 01:22:09.288, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 66 +2026-05-15T01:22:14+08:00 +2026/05/15 01:22:14.312, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.14, 65 +2026-05-15T01:22:19+08:00 +2026/05/15 01:22:19.336, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 283.77, 65 +2026-05-15T01:22:24+08:00 +2026/05/15 01:22:24.360, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.01, 66 +2026-05-15T01:22:29+08:00 +2026/05/15 01:22:29.384, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.06, 66 +2026-05-15T01:22:34+08:00 +2026/05/15 01:22:34.409, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 255.87, 64 +2026-05-15T01:22:39+08:00 +2026/05/15 01:22:39.432, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.34, 66 +2026-05-15T01:22:44+08:00 +2026/05/15 01:22:44.457, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.73, 66 +2026-05-15T01:22:49+08:00 +2026/05/15 01:22:49.482, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.44, 65 +2026-05-15T01:22:54+08:00 +2026/05/15 01:22:54.508, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 366.66, 65 +2026-05-15T01:22:59+08:00 +2026/05/15 01:22:59.529, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.16, 65 +2026-05-15T01:23:04+08:00 +2026/05/15 01:23:04.555, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.85, 64 +2026-05-15T01:23:09+08:00 +2026/05/15 01:23:09.579, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.12, 65 +2026-05-15T01:23:14+08:00 +2026/05/15 01:23:14.601, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.76, 64 +2026-05-15T01:23:19+08:00 +2026/05/15 01:23:19.626, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.10, 66 +2026-05-15T01:23:24+08:00 +2026/05/15 01:23:24.647, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.75, 65 +2026-05-15T01:23:29+08:00 +2026/05/15 01:23:29.671, NVIDIA GeForce RTX 5090, 56, 20, 9607, 32607, 355.69, 66 +2026-05-15T01:23:34+08:00 +2026/05/15 01:23:34.695, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 277.53, 65 +2026-05-15T01:23:39+08:00 +2026/05/15 01:23:39.719, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.69, 65 +2026-05-15T01:23:44+08:00 +2026/05/15 01:23:44.743, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.38, 66 +2026-05-15T01:23:49+08:00 +2026/05/15 01:23:49.766, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 356.37, 65 +2026-05-15T01:23:54+08:00 +2026/05/15 01:23:54.788, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.99, 65 +2026-05-15T01:23:59+08:00 +2026/05/15 01:23:59.811, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.73, 66 +2026-05-15T01:24:04+08:00 +2026/05/15 01:24:04.852, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.28, 66 +2026-05-15T01:24:09+08:00 +2026/05/15 01:24:09.875, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.48, 66 +2026-05-15T01:24:14+08:00 +2026/05/15 01:24:14.916, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.78, 66 +2026-05-15T01:24:19+08:00 +2026/05/15 01:24:19.981, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.77, 66 +2026-05-15T01:24:24+08:00 +2026/05/15 01:24:25.005, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.81, 66 +2026-05-15T01:24:30+08:00 +2026/05/15 01:24:30.079, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.58, 66 +2026-05-15T01:24:35+08:00 +2026/05/15 01:24:35.101, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.82, 65 +2026-05-15T01:24:40+08:00 +2026/05/15 01:24:40.124, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.98, 65 +2026-05-15T01:24:45+08:00 +2026/05/15 01:24:45.197, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 65 +2026-05-15T01:24:50+08:00 +2026/05/15 01:24:50.220, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.63, 65 +2026-05-15T01:24:55+08:00 +2026/05/15 01:24:55.244, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.42, 66 +2026-05-15T01:25:00+08:00 +2026/05/15 01:25:00.268, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.15, 65 +2026-05-15T01:25:05+08:00 +2026/05/15 01:25:05.291, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.85, 66 +2026-05-15T01:25:10+08:00 +2026/05/15 01:25:10.317, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 255.82, 64 +2026-05-15T01:25:15+08:00 +2026/05/15 01:25:15.341, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.57, 65 +2026-05-15T01:25:20+08:00 +2026/05/15 01:25:20.368, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.56, 66 +2026-05-15T01:25:25+08:00 +2026/05/15 01:25:25.395, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 367.27, 66 +2026-05-15T01:25:30+08:00 +2026/05/15 01:25:30.423, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.74, 65 +2026-05-15T01:25:35+08:00 +2026/05/15 01:25:35.449, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.57, 65 +2026-05-15T01:25:40+08:00 +2026/05/15 01:25:40.496, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.27, 65 +2026-05-15T01:25:45+08:00 +2026/05/15 01:25:45.522, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.35, 66 +2026-05-15T01:25:50+08:00 +2026/05/15 01:25:50.562, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.22, 66 +2026-05-15T01:25:55+08:00 +2026/05/15 01:25:55.603, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.15, 66 +2026-05-15T01:26:00+08:00 +2026/05/15 01:26:00.675, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 66 +2026-05-15T01:26:05+08:00 +2026/05/15 01:26:05.699, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.36, 65 +2026-05-15T01:26:10+08:00 +2026/05/15 01:26:10.741, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.20, 64 +2026-05-15T01:26:15+08:00 +2026/05/15 01:26:15.815, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.74, 65 +2026-05-15T01:26:20+08:00 +2026/05/15 01:26:20.838, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.75, 65 +2026-05-15T01:26:25+08:00 +2026/05/15 01:26:25.910, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.94, 65 +2026-05-15T01:26:30+08:00 +2026/05/15 01:26:30.934, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.72, 66 +2026-05-15T01:26:35+08:00 +2026/05/15 01:26:35.973, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.07, 65 +2026-05-15T01:26:40+08:00 +2026/05/15 01:26:40.996, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.55, 65 +2026-05-15T01:26:46+08:00 +2026/05/15 01:26:46.063, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.19, 65 +2026-05-15T01:26:51+08:00 +2026/05/15 01:26:51.087, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.66, 66 +2026-05-15T01:26:56+08:00 +2026/05/15 01:26:56.110, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.03, 64 +2026-05-15T01:27:01+08:00 +2026/05/15 01:27:01.134, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.10, 66 +2026-05-15T01:27:06+08:00 +2026/05/15 01:27:06.157, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.73, 65 +2026-05-15T01:27:11+08:00 +2026/05/15 01:27:11.214, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.50, 65 +2026-05-15T01:27:16+08:00 +2026/05/15 01:27:16.238, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.70, 66 +2026-05-15T01:27:21+08:00 +2026/05/15 01:27:21.281, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.26, 66 +2026-05-15T01:27:26+08:00 +2026/05/15 01:27:26.309, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 64 +2026-05-15T01:27:31+08:00 +2026/05/15 01:27:31.334, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.33, 66 +2026-05-15T01:27:36+08:00 +2026/05/15 01:27:36.363, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.94, 65 +2026-05-15T01:27:41+08:00 +2026/05/15 01:27:41.406, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 290.75, 59 +2026-05-15T01:27:46+08:00 +2026/05/15 01:27:46.431, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.51, 66 +2026-05-15T01:27:51+08:00 +2026/05/15 01:27:51.455, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.34, 65 +2026-05-15T01:27:56+08:00 +2026/05/15 01:27:56.479, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.18, 65 +2026-05-15T01:28:01+08:00 +2026/05/15 01:28:01.503, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.39, 65 +2026-05-15T01:28:06+08:00 +2026/05/15 01:28:06.529, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.18, 66 +2026-05-15T01:28:11+08:00 +2026/05/15 01:28:11.551, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.51, 66 +2026-05-15T01:28:16+08:00 +2026/05/15 01:28:16.576, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.90, 65 +2026-05-15T01:28:21+08:00 +2026/05/15 01:28:21.600, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 366.39, 66 +2026-05-15T01:28:26+08:00 +2026/05/15 01:28:26.622, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.18, 65 +2026-05-15T01:28:31+08:00 +2026/05/15 01:28:31.645, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.30, 66 +2026-05-15T01:28:36+08:00 +2026/05/15 01:28:36.668, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.16, 66 +2026-05-15T01:28:41+08:00 +2026/05/15 01:28:41.692, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.78, 65 +2026-05-15T01:28:46+08:00 +2026/05/15 01:28:46.717, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.27, 66 +2026-05-15T01:28:51+08:00 +2026/05/15 01:28:51.741, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.05, 66 +2026-05-15T01:28:56+08:00 +2026/05/15 01:28:56.765, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.27, 66 +2026-05-15T01:29:01+08:00 +2026/05/15 01:29:01.790, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.07, 66 +2026-05-15T01:29:06+08:00 +2026/05/15 01:29:06.814, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.31, 64 +2026-05-15T01:29:11+08:00 +2026/05/15 01:29:11.838, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.79, 66 +2026-05-15T01:29:16+08:00 +2026/05/15 01:29:16.863, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.32, 66 +2026-05-15T01:29:21+08:00 +2026/05/15 01:29:21.886, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.19, 65 +2026-05-15T01:29:26+08:00 +2026/05/15 01:29:26.912, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 366.05, 65 +2026-05-15T01:29:31+08:00 +2026/05/15 01:29:31.935, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.67, 66 +2026-05-15T01:29:36+08:00 +2026/05/15 01:29:36.963, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.25, 66 +2026-05-15T01:29:41+08:00 +2026/05/15 01:29:41.988, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.46, 65 +2026-05-15T01:29:46+08:00 +2026/05/15 01:29:47.013, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 366.38, 66 +2026-05-15T01:29:52+08:00 +2026/05/15 01:29:52.036, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.14, 66 +2026-05-15T01:29:57+08:00 +2026/05/15 01:29:57.063, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.07, 65 +2026-05-15T01:30:02+08:00 +2026/05/15 01:30:02.087, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 222.31, 63 +2026-05-15T01:30:07+08:00 +2026/05/15 01:30:07.110, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.20, 66 +2026-05-15T01:30:12+08:00 +2026/05/15 01:30:12.134, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.76, 65 +2026-05-15T01:30:17+08:00 +2026/05/15 01:30:17.184, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 315.01, 60 +2026-05-15T01:30:22+08:00 +2026/05/15 01:30:22.207, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.82, 65 +2026-05-15T01:30:27+08:00 +2026/05/15 01:30:27.231, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.46, 66 +2026-05-15T01:30:32+08:00 +2026/05/15 01:30:32.306, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.21, 66 +2026-05-15T01:30:37+08:00 +2026/05/15 01:30:37.330, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.71, 65 +2026-05-15T01:30:42+08:00 +2026/05/15 01:30:42.353, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.61, 66 +2026-05-15T01:30:47+08:00 +2026/05/15 01:30:47.377, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.37, 66 +2026-05-15T01:30:52+08:00 +2026/05/15 01:30:52.401, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.63, 66 +2026-05-15T01:30:57+08:00 +2026/05/15 01:30:57.425, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.97, 66 +2026-05-15T01:31:02+08:00 +2026/05/15 01:31:02.451, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 66 +2026-05-15T01:31:07+08:00 +2026/05/15 01:31:07.474, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 65 +2026-05-15T01:31:12+08:00 +2026/05/15 01:31:12.499, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.16, 65 +2026-05-15T01:31:17+08:00 +2026/05/15 01:31:17.523, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.06, 65 +2026-05-15T01:31:22+08:00 +2026/05/15 01:31:22.547, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.13, 66 +2026-05-15T01:31:27+08:00 +2026/05/15 01:31:27.570, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.51, 66 +2026-05-15T01:31:32+08:00 +2026/05/15 01:31:32.593, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.95, 67 +2026-05-15T01:31:37+08:00 +2026/05/15 01:31:37.618, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.29, 64 +2026-05-15T01:31:42+08:00 +2026/05/15 01:31:42.641, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.18, 64 +2026-05-15T01:31:47+08:00 +2026/05/15 01:31:47.666, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.24, 64 +2026-05-15T01:31:52+08:00 +2026/05/15 01:31:52.690, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.13, 64 +2026-05-15T01:31:57+08:00 +2026/05/15 01:31:57.713, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.64, 65 +2026-05-15T01:32:02+08:00 +2026/05/15 01:32:02.736, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.01, 65 +2026-05-15T01:32:07+08:00 +2026/05/15 01:32:07.762, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.61, 65 +2026-05-15T01:32:12+08:00 +2026/05/15 01:32:12.788, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.65, 65 +2026-05-15T01:32:17+08:00 +2026/05/15 01:32:17.811, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.74, 66 +2026-05-15T01:32:22+08:00 +2026/05/15 01:32:22.838, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 66 +2026-05-15T01:32:27+08:00 +2026/05/15 01:32:27.863, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.77, 65 +2026-05-15T01:32:32+08:00 +2026/05/15 01:32:32.887, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.77, 65 +2026-05-15T01:32:37+08:00 +2026/05/15 01:32:37.908, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.08, 65 +2026-05-15T01:32:42+08:00 +2026/05/15 01:32:42.933, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.11, 65 +2026-05-15T01:32:47+08:00 +2026/05/15 01:32:47.960, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.77, 65 +2026-05-15T01:32:52+08:00 +2026/05/15 01:32:52.984, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 337.38, 60 +2026-05-15T01:32:57+08:00 +2026/05/15 01:32:58.009, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.14, 65 +2026-05-15T01:33:03+08:00 +2026/05/15 01:33:03.032, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.59, 65 +2026-05-15T01:33:08+08:00 +2026/05/15 01:33:08.055, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.99, 65 +2026-05-15T01:33:13+08:00 +2026/05/15 01:33:13.080, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 65 +2026-05-15T01:33:18+08:00 +2026/05/15 01:33:18.103, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 269.15, 65 +2026-05-15T01:33:23+08:00 +2026/05/15 01:33:23.126, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.83, 66 +2026-05-15T01:33:28+08:00 +2026/05/15 01:33:28.154, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.69, 66 +2026-05-15T01:33:33+08:00 +2026/05/15 01:33:33.177, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.09, 67 +2026-05-15T01:33:38+08:00 +2026/05/15 01:33:38.199, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 366.16, 64 +2026-05-15T01:33:43+08:00 +2026/05/15 01:33:43.222, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.95, 66 +2026-05-15T01:33:48+08:00 +2026/05/15 01:33:48.246, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.35, 65 +2026-05-15T01:33:53+08:00 +2026/05/15 01:33:53.269, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.17, 65 +2026-05-15T01:33:58+08:00 +2026/05/15 01:33:58.292, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.88, 65 +2026-05-15T01:34:03+08:00 +2026/05/15 01:34:03.316, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.92, 66 +2026-05-15T01:34:08+08:00 +2026/05/15 01:34:08.338, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.27, 66 +2026-05-15T01:34:13+08:00 +2026/05/15 01:34:13.362, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 367.12, 65 +2026-05-15T01:34:18+08:00 +2026/05/15 01:34:18.387, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.12, 65 +2026-05-15T01:34:23+08:00 +2026/05/15 01:34:23.411, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.17, 65 +2026-05-15T01:34:28+08:00 +2026/05/15 01:34:28.434, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.12, 66 +2026-05-15T01:34:33+08:00 +2026/05/15 01:34:33.461, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.99, 65 +2026-05-15T01:34:38+08:00 +2026/05/15 01:34:38.484, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.73, 65 +2026-05-15T01:34:43+08:00 +2026/05/15 01:34:43.511, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.31, 66 +2026-05-15T01:34:48+08:00 +2026/05/15 01:34:48.535, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.35, 66 +2026-05-15T01:34:53+08:00 +2026/05/15 01:34:53.558, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.24, 66 +2026-05-15T01:34:58+08:00 +2026/05/15 01:34:58.584, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.13, 65 +2026-05-15T01:35:03+08:00 +2026/05/15 01:35:03.608, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 65 +2026-05-15T01:35:08+08:00 +2026/05/15 01:35:08.631, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 65 +2026-05-15T01:35:13+08:00 +2026/05/15 01:35:13.656, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.53, 65 +2026-05-15T01:35:18+08:00 +2026/05/15 01:35:18.679, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.01, 65 +2026-05-15T01:35:23+08:00 +2026/05/15 01:35:23.702, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.23, 66 +2026-05-15T01:35:28+08:00 +2026/05/15 01:35:28.727, NVIDIA GeForce RTX 5090, 79, 35, 9607, 32607, 302.49, 65 +2026-05-15T01:35:33+08:00 +2026/05/15 01:35:33.751, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.02, 65 +2026-05-15T01:35:38+08:00 +2026/05/15 01:35:38.775, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.46, 65 +2026-05-15T01:35:43+08:00 +2026/05/15 01:35:43.800, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.10, 66 +2026-05-15T01:35:48+08:00 +2026/05/15 01:35:48.825, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.43, 65 +2026-05-15T01:35:53+08:00 +2026/05/15 01:35:53.849, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.35, 66 +2026-05-15T01:35:58+08:00 +2026/05/15 01:35:58.873, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.66, 65 +2026-05-15T01:36:03+08:00 +2026/05/15 01:36:03.911, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.91, 66 +2026-05-15T01:36:08+08:00 +2026/05/15 01:36:08.953, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 364.87, 64 +2026-05-15T01:36:13+08:00 +2026/05/15 01:36:13.976, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.55, 65 +2026-05-15T01:36:18+08:00 +2026/05/15 01:36:18.999, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.36, 66 +2026-05-15T01:36:24+08:00 +2026/05/15 01:36:24.023, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.73, 66 +2026-05-15T01:36:29+08:00 +2026/05/15 01:36:29.047, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.35, 66 +2026-05-15T01:36:34+08:00 +2026/05/15 01:36:34.070, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.36, 65 +2026-05-15T01:36:39+08:00 +2026/05/15 01:36:39.094, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.14, 66 +2026-05-15T01:36:44+08:00 +2026/05/15 01:36:44.118, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.95, 65 +2026-05-15T01:36:49+08:00 +2026/05/15 01:36:49.141, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.96, 66 +2026-05-15T01:36:54+08:00 +2026/05/15 01:36:54.166, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.87, 66 +2026-05-15T01:36:59+08:00 +2026/05/15 01:36:59.187, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.13, 66 +2026-05-15T01:37:04+08:00 +2026/05/15 01:37:04.212, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.14, 66 +2026-05-15T01:37:09+08:00 +2026/05/15 01:37:09.254, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.46, 66 +2026-05-15T01:37:14+08:00 +2026/05/15 01:37:14.278, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.36, 66 +2026-05-15T01:37:19+08:00 +2026/05/15 01:37:19.304, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.83, 65 +2026-05-15T01:37:24+08:00 +2026/05/15 01:37:24.327, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.71, 66 +2026-05-15T01:37:29+08:00 +2026/05/15 01:37:29.350, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.52, 66 +2026-05-15T01:37:34+08:00 +2026/05/15 01:37:34.373, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.11, 65 +2026-05-15T01:37:39+08:00 +2026/05/15 01:37:39.397, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.07, 65 +2026-05-15T01:37:44+08:00 +2026/05/15 01:37:44.420, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.77, 65 +2026-05-15T01:37:49+08:00 +2026/05/15 01:37:49.443, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.61, 65 +2026-05-15T01:37:54+08:00 +2026/05/15 01:37:54.468, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.32, 65 +2026-05-15T01:37:59+08:00 +2026/05/15 01:37:59.494, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.47, 66 +2026-05-15T01:38:04+08:00 +2026/05/15 01:38:04.517, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.99, 64 +2026-05-15T01:38:09+08:00 +2026/05/15 01:38:09.539, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.05, 65 +2026-05-15T01:38:14+08:00 +2026/05/15 01:38:14.562, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.33, 65 +2026-05-15T01:38:19+08:00 +2026/05/15 01:38:19.587, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.75, 65 +2026-05-15T01:38:24+08:00 +2026/05/15 01:38:24.611, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.76, 65 +2026-05-15T01:38:29+08:00 +2026/05/15 01:38:29.635, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.69, 65 +2026-05-15T01:38:34+08:00 +2026/05/15 01:38:34.657, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.98, 65 +2026-05-15T01:38:39+08:00 +2026/05/15 01:38:39.682, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 243.88, 64 +2026-05-15T01:38:44+08:00 +2026/05/15 01:38:44.708, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.83, 66 +2026-05-15T01:38:49+08:00 +2026/05/15 01:38:49.733, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.50, 66 +2026-05-15T01:38:54+08:00 +2026/05/15 01:38:54.759, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.54, 65 +2026-05-15T01:38:59+08:00 +2026/05/15 01:38:59.803, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.87, 66 +2026-05-15T01:39:04+08:00 +2026/05/15 01:39:04.849, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.64, 66 +2026-05-15T01:39:09+08:00 +2026/05/15 01:39:09.871, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 65 +2026-05-15T01:39:14+08:00 +2026/05/15 01:39:14.944, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 363.73, 65 +2026-05-15T01:39:19+08:00 +2026/05/15 01:39:19.967, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 246.89, 65 +2026-05-15T01:39:24+08:00 +2026/05/15 01:39:24.990, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.44, 65 +2026-05-15T01:39:30+08:00 +2026/05/15 01:39:30.013, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.56, 65 +2026-05-15T01:39:35+08:00 +2026/05/15 01:39:35.036, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.37, 65 +2026-05-15T01:39:40+08:00 +2026/05/15 01:39:40.061, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.46, 65 +2026-05-15T01:39:45+08:00 +2026/05/15 01:39:45.085, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.33, 64 +2026-05-15T01:39:50+08:00 +2026/05/15 01:39:50.108, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.37, 64 +2026-05-15T01:39:55+08:00 +2026/05/15 01:39:55.132, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.29, 65 +2026-05-15T01:40:00+08:00 +2026/05/15 01:40:00.155, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 363.73, 66 +2026-05-15T01:40:05+08:00 +2026/05/15 01:40:05.179, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.08, 65 +2026-05-15T01:40:10+08:00 +2026/05/15 01:40:10.206, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.30, 65 +2026-05-15T01:40:15+08:00 +2026/05/15 01:40:15.231, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.27, 65 +2026-05-15T01:40:20+08:00 +2026/05/15 01:40:20.255, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.76, 65 +2026-05-15T01:40:25+08:00 +2026/05/15 01:40:25.279, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.35, 66 +2026-05-15T01:40:30+08:00 +2026/05/15 01:40:30.303, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.52, 66 +2026-05-15T01:40:35+08:00 +2026/05/15 01:40:35.328, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.86, 65 +2026-05-15T01:40:40+08:00 +2026/05/15 01:40:40.351, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.21, 66 +2026-05-15T01:40:45+08:00 +2026/05/15 01:40:45.377, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.41, 65 +2026-05-15T01:40:50+08:00 +2026/05/15 01:40:50.406, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.08, 66 +2026-05-15T01:40:55+08:00 +2026/05/15 01:40:55.428, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.18, 66 +2026-05-15T01:41:00+08:00 +2026/05/15 01:41:00.451, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.10, 65 +2026-05-15T01:41:05+08:00 +2026/05/15 01:41:05.474, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.94, 65 +2026-05-15T01:41:10+08:00 +2026/05/15 01:41:10.501, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.96, 66 +2026-05-15T01:41:15+08:00 +2026/05/15 01:41:15.527, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.90, 65 +2026-05-15T01:41:20+08:00 +2026/05/15 01:41:20.553, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.42, 67 +2026-05-15T01:41:25+08:00 +2026/05/15 01:41:25.576, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.21, 66 +2026-05-15T01:41:30+08:00 +2026/05/15 01:41:30.600, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.99, 66 +2026-05-15T01:41:35+08:00 +2026/05/15 01:41:35.624, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.61, 66 +2026-05-15T01:41:40+08:00 +2026/05/15 01:41:40.647, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.03, 64 +2026-05-15T01:41:45+08:00 +2026/05/15 01:41:45.671, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.58, 65 +2026-05-15T01:41:50+08:00 +2026/05/15 01:41:50.693, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.96, 65 +2026-05-15T01:41:55+08:00 +2026/05/15 01:41:55.718, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.30, 65 +2026-05-15T01:42:00+08:00 +2026/05/15 01:42:00.741, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.72, 65 +2026-05-15T01:42:05+08:00 +2026/05/15 01:42:05.762, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.76, 65 +2026-05-15T01:42:10+08:00 +2026/05/15 01:42:10.786, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.59, 65 +2026-05-15T01:42:15+08:00 +2026/05/15 01:42:15.810, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 66 +2026-05-15T01:42:20+08:00 +2026/05/15 01:42:20.833, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.54, 65 +2026-05-15T01:42:25+08:00 +2026/05/15 01:42:25.860, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.37, 65 +2026-05-15T01:42:30+08:00 +2026/05/15 01:42:30.884, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.68, 65 +2026-05-15T01:42:35+08:00 +2026/05/15 01:42:35.909, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.44, 65 +2026-05-15T01:42:40+08:00 +2026/05/15 01:42:40.933, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 361.89, 66 +2026-05-15T01:42:45+08:00 +2026/05/15 01:42:45.961, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.83, 66 +2026-05-15T01:42:50+08:00 +2026/05/15 01:42:50.985, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.34, 65 +2026-05-15T01:42:55+08:00 +2026/05/15 01:42:56.008, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 313.55, 60 +2026-05-15T01:43:01+08:00 +2026/05/15 01:43:01.030, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.09, 64 +2026-05-15T01:43:06+08:00 +2026/05/15 01:43:06.053, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.33, 66 +2026-05-15T01:43:11+08:00 +2026/05/15 01:43:11.076, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.11, 64 +2026-05-15T01:43:16+08:00 +2026/05/15 01:43:16.099, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 247.30, 66 +2026-05-15T01:43:21+08:00 +2026/05/15 01:43:21.125, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.30, 65 +2026-05-15T01:43:26+08:00 +2026/05/15 01:43:26.152, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.12, 66 +2026-05-15T01:43:31+08:00 +2026/05/15 01:43:31.176, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.87, 65 +2026-05-15T01:43:36+08:00 +2026/05/15 01:43:36.199, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.59, 65 +2026-05-15T01:43:41+08:00 +2026/05/15 01:43:41.221, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.81, 66 +2026-05-15T01:43:46+08:00 +2026/05/15 01:43:46.244, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.98, 65 +2026-05-15T01:43:51+08:00 +2026/05/15 01:43:51.269, NVIDIA GeForce RTX 5090, 87, 36, 9607, 32607, 361.92, 64 +2026-05-15T01:43:56+08:00 +2026/05/15 01:43:56.297, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 206.38, 64 +2026-05-15T01:44:01+08:00 +2026/05/15 01:44:01.320, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.26, 66 +2026-05-15T01:44:06+08:00 +2026/05/15 01:44:06.344, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.83, 67 +2026-05-15T01:44:11+08:00 +2026/05/15 01:44:11.365, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.14, 65 +2026-05-15T01:44:16+08:00 +2026/05/15 01:44:16.389, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.67, 65 +2026-05-15T01:44:21+08:00 +2026/05/15 01:44:21.416, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.61, 66 +2026-05-15T01:44:26+08:00 +2026/05/15 01:44:26.441, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.34, 66 +2026-05-15T01:44:31+08:00 +2026/05/15 01:44:31.465, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.54, 66 +2026-05-15T01:44:36+08:00 +2026/05/15 01:44:36.487, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.76, 66 +2026-05-15T01:44:41+08:00 +2026/05/15 01:44:41.510, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 364.89, 66 +2026-05-15T01:44:46+08:00 +2026/05/15 01:44:46.536, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.93, 65 +2026-05-15T01:44:51+08:00 +2026/05/15 01:44:51.558, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.58, 65 +2026-05-15T01:44:56+08:00 +2026/05/15 01:44:56.585, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 65 +2026-05-15T01:45:01+08:00 +2026/05/15 01:45:01.615, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.41, 66 +2026-05-15T01:45:06+08:00 +2026/05/15 01:45:06.640, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.99, 65 +2026-05-15T01:45:11+08:00 +2026/05/15 01:45:11.664, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 65 +2026-05-15T01:45:16+08:00 +2026/05/15 01:45:16.686, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.07, 66 +2026-05-15T01:45:21+08:00 +2026/05/15 01:45:21.710, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.32, 65 +2026-05-15T01:45:26+08:00 +2026/05/15 01:45:26.736, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.14, 65 +2026-05-15T01:45:31+08:00 +2026/05/15 01:45:31.762, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.21, 66 +2026-05-15T01:45:36+08:00 +2026/05/15 01:45:36.787, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.88, 66 +2026-05-15T01:45:41+08:00 +2026/05/15 01:45:41.812, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 365.48, 65 +2026-05-15T01:45:46+08:00 +2026/05/15 01:45:46.836, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.49, 65 +2026-05-15T01:45:51+08:00 +2026/05/15 01:45:51.860, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.38, 65 +2026-05-15T01:45:56+08:00 +2026/05/15 01:45:56.883, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.59, 64 +2026-05-15T01:46:01+08:00 +2026/05/15 01:46:01.908, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.90, 66 +2026-05-15T01:46:06+08:00 +2026/05/15 01:46:06.932, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.58, 66 +2026-05-15T01:46:11+08:00 +2026/05/15 01:46:11.955, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.33, 66 +2026-05-15T01:46:16+08:00 +2026/05/15 01:46:16.979, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.67, 65 +2026-05-15T01:46:21+08:00 +2026/05/15 01:46:22.002, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.09, 67 +2026-05-15T01:46:27+08:00 +2026/05/15 01:46:27.025, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.07, 66 +2026-05-15T01:46:32+08:00 +2026/05/15 01:46:32.050, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.38, 66 +2026-05-15T01:46:37+08:00 +2026/05/15 01:46:37.072, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.49, 66 +2026-05-15T01:46:42+08:00 +2026/05/15 01:46:42.098, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.16, 65 +2026-05-15T01:46:47+08:00 +2026/05/15 01:46:47.121, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.51, 65 +2026-05-15T01:46:52+08:00 +2026/05/15 01:46:52.144, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.69, 65 +2026-05-15T01:46:57+08:00 +2026/05/15 01:46:57.172, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 331.55, 65 +2026-05-15T01:47:02+08:00 +2026/05/15 01:47:02.198, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.18, 65 +2026-05-15T01:47:07+08:00 +2026/05/15 01:47:07.222, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.19, 66 +2026-05-15T01:47:12+08:00 +2026/05/15 01:47:12.243, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.61, 64 +2026-05-15T01:47:17+08:00 +2026/05/15 01:47:17.270, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.72, 65 +2026-05-15T01:47:22+08:00 +2026/05/15 01:47:22.293, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.29, 65 +2026-05-15T01:47:27+08:00 +2026/05/15 01:47:27.317, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.55, 65 +2026-05-15T01:47:32+08:00 +2026/05/15 01:47:32.359, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.77, 65 +2026-05-15T01:47:37+08:00 +2026/05/15 01:47:37.410, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.84, 65 +2026-05-15T01:47:42+08:00 +2026/05/15 01:47:42.446, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.95, 66 +2026-05-15T01:47:47+08:00 +2026/05/15 01:47:47.504, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.48, 65 +2026-05-15T01:47:52+08:00 +2026/05/15 01:47:52.528, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 268.96, 65 +2026-05-15T01:47:57+08:00 +2026/05/15 01:47:57.552, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.54, 66 +2026-05-15T01:48:02+08:00 +2026/05/15 01:48:02.575, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.76, 66 +2026-05-15T01:48:07+08:00 +2026/05/15 01:48:07.650, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.39, 65 +2026-05-15T01:48:12+08:00 +2026/05/15 01:48:12.675, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.90, 66 +2026-05-15T01:48:17+08:00 +2026/05/15 01:48:17.749, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.42, 66 +2026-05-15T01:48:22+08:00 +2026/05/15 01:48:22.773, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.52, 65 +2026-05-15T01:48:27+08:00 +2026/05/15 01:48:27.815, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.11, 65 +2026-05-15T01:48:32+08:00 +2026/05/15 01:48:32.857, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.39, 65 +2026-05-15T01:48:37+08:00 +2026/05/15 01:48:37.936, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.55, 64 +2026-05-15T01:48:42+08:00 +2026/05/15 01:48:42.958, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.60, 64 +2026-05-15T01:48:47+08:00 +2026/05/15 01:48:48.031, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.43, 64 +2026-05-15T01:48:53+08:00 +2026/05/15 01:48:53.054, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.59, 65 +2026-05-15T01:48:58+08:00 +2026/05/15 01:48:58.131, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.89, 65 +2026-05-15T01:49:03+08:00 +2026/05/15 01:49:03.179, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.39, 65 +2026-05-15T01:49:08+08:00 +2026/05/15 01:49:08.202, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.50, 66 +2026-05-15T01:49:13+08:00 +2026/05/15 01:49:13.260, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.16, 66 +2026-05-15T01:49:18+08:00 +2026/05/15 01:49:18.283, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.32, 65 +2026-05-15T01:49:23+08:00 +2026/05/15 01:49:23.333, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.17, 64 +2026-05-15T01:49:28+08:00 +2026/05/15 01:49:28.357, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 354.59, 66 +2026-05-15T01:49:33+08:00 +2026/05/15 01:49:33.400, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.25, 65 +2026-05-15T01:49:38+08:00 +2026/05/15 01:49:38.424, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 259.92, 65 +2026-05-15T01:49:43+08:00 +2026/05/15 01:49:43.479, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.77, 65 +2026-05-15T01:49:48+08:00 +2026/05/15 01:49:48.503, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.49, 65 +2026-05-15T01:49:53+08:00 +2026/05/15 01:49:53.526, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.87, 64 +2026-05-15T01:49:58+08:00 +2026/05/15 01:49:58.596, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.69, 66 +2026-05-15T01:50:03+08:00 +2026/05/15 01:50:03.619, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.97, 66 +2026-05-15T01:50:08+08:00 +2026/05/15 01:50:08.643, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.74, 66 +2026-05-15T01:50:13+08:00 +2026/05/15 01:50:13.668, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.41, 65 +2026-05-15T01:50:18+08:00 +2026/05/15 01:50:18.713, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.49, 65 +2026-05-15T01:50:23+08:00 +2026/05/15 01:50:23.751, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 365.56, 65 +2026-05-15T01:50:28+08:00 +2026/05/15 01:50:28.775, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.61, 66 +2026-05-15T01:50:33+08:00 +2026/05/15 01:50:33.799, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.41, 65 +2026-05-15T01:50:38+08:00 +2026/05/15 01:50:38.825, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.06, 65 +2026-05-15T01:50:43+08:00 +2026/05/15 01:50:43.848, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.60, 65 +2026-05-15T01:50:48+08:00 +2026/05/15 01:50:48.872, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.74, 65 +2026-05-15T01:50:53+08:00 +2026/05/15 01:50:53.897, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.34, 66 +2026-05-15T01:50:58+08:00 +2026/05/15 01:50:58.921, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.85, 65 +2026-05-15T01:51:03+08:00 +2026/05/15 01:51:03.944, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.40, 66 +2026-05-15T01:51:08+08:00 +2026/05/15 01:51:08.967, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.73, 64 +2026-05-15T01:51:13+08:00 +2026/05/15 01:51:13.994, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.17, 65 +2026-05-15T01:51:19+08:00 +2026/05/15 01:51:19.017, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.16, 65 +2026-05-15T01:51:24+08:00 +2026/05/15 01:51:24.043, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.20, 66 +2026-05-15T01:51:29+08:00 +2026/05/15 01:51:29.067, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.91, 65 +2026-05-15T01:51:34+08:00 +2026/05/15 01:51:34.092, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.32, 66 +2026-05-15T01:51:39+08:00 +2026/05/15 01:51:39.118, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.69, 64 +2026-05-15T01:51:44+08:00 +2026/05/15 01:51:44.142, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.43, 66 +2026-05-15T01:51:49+08:00 +2026/05/15 01:51:49.167, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.19, 65 +2026-05-15T01:51:54+08:00 +2026/05/15 01:51:54.191, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.24, 66 +2026-05-15T01:51:59+08:00 +2026/05/15 01:51:59.217, NVIDIA GeForce RTX 5090, 54, 26, 9607, 32607, 356.59, 65 +2026-05-15T01:52:04+08:00 +2026/05/15 01:52:04.241, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.26, 65 +2026-05-15T01:52:09+08:00 +2026/05/15 01:52:09.264, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.76, 65 +2026-05-15T01:52:14+08:00 +2026/05/15 01:52:14.293, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.47, 66 +2026-05-15T01:52:19+08:00 +2026/05/15 01:52:19.318, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.99, 65 +2026-05-15T01:52:24+08:00 +2026/05/15 01:52:24.342, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 65 +2026-05-15T01:52:29+08:00 +2026/05/15 01:52:29.365, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.50, 66 +2026-05-15T01:52:34+08:00 +2026/05/15 01:52:34.389, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.95, 65 +2026-05-15T01:52:39+08:00 +2026/05/15 01:52:39.413, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.91, 65 +2026-05-15T01:52:44+08:00 +2026/05/15 01:52:44.436, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.07, 65 +2026-05-15T01:52:49+08:00 +2026/05/15 01:52:49.460, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 260.07, 64 +2026-05-15T01:52:54+08:00 +2026/05/15 01:52:54.483, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 65 +2026-05-15T01:52:59+08:00 +2026/05/15 01:52:59.511, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.06, 65 +2026-05-15T01:53:04+08:00 +2026/05/15 01:53:04.534, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.41, 66 +2026-05-15T01:53:09+08:00 +2026/05/15 01:53:09.563, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.24, 65 +2026-05-15T01:53:14+08:00 +2026/05/15 01:53:14.587, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.39, 67 +2026-05-15T01:53:19+08:00 +2026/05/15 01:53:19.609, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.47, 66 +2026-05-15T01:53:24+08:00 +2026/05/15 01:53:24.635, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.09, 65 +2026-05-15T01:53:29+08:00 +2026/05/15 01:53:29.659, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.40, 66 +2026-05-15T01:53:34+08:00 +2026/05/15 01:53:34.683, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.01, 66 +2026-05-15T01:53:39+08:00 +2026/05/15 01:53:39.710, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.98, 64 +2026-05-15T01:53:44+08:00 +2026/05/15 01:53:44.734, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.48, 66 +2026-05-15T01:53:49+08:00 +2026/05/15 01:53:49.765, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.30, 65 +2026-05-15T01:53:54+08:00 +2026/05/15 01:53:54.788, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.58, 66 +2026-05-15T01:53:59+08:00 +2026/05/15 01:53:59.814, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.59, 65 +2026-05-15T01:54:04+08:00 +2026/05/15 01:54:04.839, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.17, 65 +2026-05-15T01:54:09+08:00 +2026/05/15 01:54:09.865, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.59, 65 +2026-05-15T01:54:14+08:00 +2026/05/15 01:54:14.889, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.80, 66 +2026-05-15T01:54:19+08:00 +2026/05/15 01:54:19.912, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.10, 66 +2026-05-15T01:54:24+08:00 +2026/05/15 01:54:24.934, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.48, 65 +2026-05-15T01:54:29+08:00 +2026/05/15 01:54:29.961, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.40, 66 +2026-05-15T01:54:34+08:00 +2026/05/15 01:54:34.985, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.06, 66 +2026-05-15T01:54:39+08:00 +2026/05/15 01:54:40.007, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.46, 66 +2026-05-15T01:54:45+08:00 +2026/05/15 01:54:45.031, NVIDIA GeForce RTX 5090, 1, 1, 9607, 32607, 270.02, 65 +2026-05-15T01:54:50+08:00 +2026/05/15 01:54:50.056, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.32, 66 +2026-05-15T01:54:55+08:00 +2026/05/15 01:54:55.079, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.00, 66 +2026-05-15T01:55:00+08:00 +2026/05/15 01:55:00.103, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 66 +2026-05-15T01:55:05+08:00 +2026/05/15 01:55:05.125, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.63, 66 +2026-05-15T01:55:10+08:00 +2026/05/15 01:55:10.151, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.93, 65 +2026-05-15T01:55:15+08:00 +2026/05/15 01:55:15.173, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 361.73, 66 +2026-05-15T01:55:20+08:00 +2026/05/15 01:55:20.196, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.44, 66 +2026-05-15T01:55:25+08:00 +2026/05/15 01:55:25.267, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.52, 66 +2026-05-15T01:55:30+08:00 +2026/05/15 01:55:30.290, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.62, 65 +2026-05-15T01:55:35+08:00 +2026/05/15 01:55:35.314, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.48, 66 +2026-05-15T01:55:40+08:00 +2026/05/15 01:55:40.357, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.52, 66 +2026-05-15T01:55:45+08:00 +2026/05/15 01:55:45.381, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.04, 65 +2026-05-15T01:55:50+08:00 +2026/05/15 01:55:50.422, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.35, 65 +2026-05-15T01:55:55+08:00 +2026/05/15 01:55:55.446, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.91, 65 +2026-05-15T01:56:00+08:00 +2026/05/15 01:56:00.486, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.41, 66 +2026-05-15T01:56:05+08:00 +2026/05/15 01:56:05.528, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.89, 65 +2026-05-15T01:56:10+08:00 +2026/05/15 01:56:10.570, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.65, 66 +2026-05-15T01:56:15+08:00 +2026/05/15 01:56:15.593, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.57, 65 +2026-05-15T01:56:20+08:00 +2026/05/15 01:56:20.652, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.72, 65 +2026-05-15T01:56:25+08:00 +2026/05/15 01:56:25.675, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.89, 66 +2026-05-15T01:56:30+08:00 +2026/05/15 01:56:30.716, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.20, 64 +2026-05-15T01:56:35+08:00 +2026/05/15 01:56:35.740, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.79, 66 +2026-05-15T01:56:40+08:00 +2026/05/15 01:56:40.764, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 342.84, 64 +2026-05-15T01:56:45+08:00 +2026/05/15 01:56:45.792, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.50, 66 +2026-05-15T01:56:50+08:00 +2026/05/15 01:56:50.817, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 365.37, 66 +2026-05-15T01:56:55+08:00 +2026/05/15 01:56:55.842, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.77, 64 +2026-05-15T01:57:00+08:00 +2026/05/15 01:57:00.866, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.20, 66 +2026-05-15T01:57:05+08:00 +2026/05/15 01:57:05.893, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.65, 66 +2026-05-15T01:57:10+08:00 +2026/05/15 01:57:10.917, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.86, 66 +2026-05-15T01:57:15+08:00 +2026/05/15 01:57:15.944, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.60, 64 +2026-05-15T01:57:20+08:00 +2026/05/15 01:57:20.968, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 253.18, 59 +2026-05-15T01:57:25+08:00 +2026/05/15 01:57:25.994, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.96, 65 +2026-05-15T01:57:31+08:00 +2026/05/15 01:57:31.016, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.87, 66 +2026-05-15T01:57:36+08:00 +2026/05/15 01:57:36.044, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.33, 66 +2026-05-15T01:57:41+08:00 +2026/05/15 01:57:41.067, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.59, 66 +2026-05-15T01:57:46+08:00 +2026/05/15 01:57:46.090, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.53, 66 +2026-05-15T01:57:51+08:00 +2026/05/15 01:57:51.115, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.26, 66 +2026-05-15T01:57:56+08:00 +2026/05/15 01:57:56.140, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.84, 65 +2026-05-15T01:58:01+08:00 +2026/05/15 01:58:01.165, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.76, 66 +2026-05-15T01:58:06+08:00 +2026/05/15 01:58:06.188, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.10, 66 +2026-05-15T01:58:11+08:00 +2026/05/15 01:58:11.212, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 66 +2026-05-15T01:58:16+08:00 +2026/05/15 01:58:16.234, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.71, 65 +2026-05-15T01:58:21+08:00 +2026/05/15 01:58:21.257, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.09, 65 +2026-05-15T01:58:26+08:00 +2026/05/15 01:58:26.288, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.08, 65 +2026-05-15T01:58:31+08:00 +2026/05/15 01:58:31.312, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.40, 66 +2026-05-15T01:58:36+08:00 +2026/05/15 01:58:36.338, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.50, 66 +2026-05-15T01:58:41+08:00 +2026/05/15 01:58:41.365, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 366.09, 66 +2026-05-15T01:58:46+08:00 +2026/05/15 01:58:46.389, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.67, 65 +2026-05-15T01:58:51+08:00 +2026/05/15 01:58:51.412, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.83, 65 +2026-05-15T01:58:56+08:00 +2026/05/15 01:58:56.436, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 217.62, 65 +2026-05-15T01:59:01+08:00 +2026/05/15 01:59:01.459, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.28, 66 +2026-05-15T01:59:06+08:00 +2026/05/15 01:59:06.483, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.53, 66 +2026-05-15T01:59:11+08:00 +2026/05/15 01:59:11.506, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 258.73, 65 +2026-05-15T01:59:16+08:00 +2026/05/15 01:59:16.530, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.08, 65 +2026-05-15T01:59:21+08:00 +2026/05/15 01:59:21.557, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.59, 66 +2026-05-15T01:59:26+08:00 +2026/05/15 01:59:26.581, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.85, 65 +2026-05-15T01:59:31+08:00 +2026/05/15 01:59:31.607, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.03, 66 +2026-05-15T01:59:36+08:00 +2026/05/15 01:59:36.631, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.57, 65 +2026-05-15T01:59:41+08:00 +2026/05/15 01:59:41.655, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.58, 65 +2026-05-15T01:59:46+08:00 +2026/05/15 01:59:46.678, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.96, 64 +2026-05-15T01:59:51+08:00 +2026/05/15 01:59:51.708, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.24, 65 +2026-05-15T01:59:56+08:00 +2026/05/15 01:59:56.731, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.40, 66 +2026-05-15T02:00:01+08:00 +2026/05/15 02:00:01.770, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.36, 65 +2026-05-15T02:00:06+08:00 +2026/05/15 02:00:06.792, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.33, 65 +2026-05-15T02:00:11+08:00 +2026/05/15 02:00:11.817, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.47, 66 +2026-05-15T02:00:16+08:00 +2026/05/15 02:00:16.840, NVIDIA GeForce RTX 5090, 87, 36, 9607, 32607, 364.17, 66 +2026-05-15T02:00:21+08:00 +2026/05/15 02:00:21.863, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.59, 65 +2026-05-15T02:00:26+08:00 +2026/05/15 02:00:26.887, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.81, 66 +2026-05-15T02:00:31+08:00 +2026/05/15 02:00:31.910, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.46, 66 +2026-05-15T02:00:36+08:00 +2026/05/15 02:00:36.935, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.46, 65 +2026-05-15T02:00:41+08:00 +2026/05/15 02:00:41.959, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.23, 65 +2026-05-15T02:00:46+08:00 +2026/05/15 02:00:46.983, NVIDIA GeForce RTX 5090, 14, 12, 9607, 32607, 235.66, 64 +2026-05-15T02:00:51+08:00 +2026/05/15 02:00:52.006, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.84, 66 +2026-05-15T02:00:57+08:00 +2026/05/15 02:00:57.032, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 66 +2026-05-15T02:01:02+08:00 +2026/05/15 02:01:02.056, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.77, 66 +2026-05-15T02:01:07+08:00 +2026/05/15 02:01:07.079, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.97, 65 +2026-05-15T02:01:12+08:00 +2026/05/15 02:01:12.105, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.99, 66 +2026-05-15T02:01:17+08:00 +2026/05/15 02:01:17.133, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.13, 65 +2026-05-15T02:01:22+08:00 +2026/05/15 02:01:22.157, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.28, 65 +2026-05-15T02:01:27+08:00 +2026/05/15 02:01:27.179, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.53, 66 +2026-05-15T02:01:32+08:00 +2026/05/15 02:01:32.202, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.27, 66 +2026-05-15T02:01:37+08:00 +2026/05/15 02:01:37.227, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 363.95, 65 +2026-05-15T02:01:42+08:00 +2026/05/15 02:01:42.250, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.36, 65 +2026-05-15T02:01:47+08:00 +2026/05/15 02:01:47.273, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 364.16, 65 +2026-05-15T02:01:52+08:00 +2026/05/15 02:01:52.297, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.36, 66 +2026-05-15T02:01:57+08:00 +2026/05/15 02:01:57.320, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.37, 66 +2026-05-15T02:02:02+08:00 +2026/05/15 02:02:02.347, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.93, 65 +2026-05-15T02:02:07+08:00 +2026/05/15 02:02:07.372, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 321.59, 66 +2026-05-15T02:02:12+08:00 +2026/05/15 02:02:12.396, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.74, 66 +2026-05-15T02:02:17+08:00 +2026/05/15 02:02:17.422, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.61, 65 +2026-05-15T02:02:22+08:00 +2026/05/15 02:02:22.447, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.39, 65 +2026-05-15T02:02:27+08:00 +2026/05/15 02:02:27.471, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.95, 66 +2026-05-15T02:02:32+08:00 +2026/05/15 02:02:32.525, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.99, 66 +2026-05-15T02:02:37+08:00 +2026/05/15 02:02:37.550, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.07, 67 +2026-05-15T02:02:42+08:00 +2026/05/15 02:02:42.575, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.84, 66 +2026-05-15T02:02:47+08:00 +2026/05/15 02:02:47.644, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.08, 65 +2026-05-15T02:02:52+08:00 +2026/05/15 02:02:52.668, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.24, 66 +2026-05-15T02:02:57+08:00 +2026/05/15 02:02:57.708, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.97, 64 +2026-05-15T02:03:02+08:00 +2026/05/15 02:03:02.787, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.99, 66 +2026-05-15T02:03:07+08:00 +2026/05/15 02:03:07.812, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 132.12, 63 +2026-05-15T02:03:12+08:00 +2026/05/15 02:03:12.867, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.47, 64 +2026-05-15T02:03:17+08:00 +2026/05/15 02:03:17.890, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 363.89, 64 +2026-05-15T02:03:22+08:00 +2026/05/15 02:03:22.951, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 364.22, 65 +2026-05-15T02:03:27+08:00 +2026/05/15 02:03:27.991, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.54, 65 +2026-05-15T02:03:32+08:00 +2026/05/15 02:03:33.014, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.06, 65 +2026-05-15T02:03:38+08:00 +2026/05/15 02:03:38.057, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.17, 65 +2026-05-15T02:03:43+08:00 +2026/05/15 02:03:43.081, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 340.38, 61 +2026-05-15T02:03:48+08:00 +2026/05/15 02:03:48.101, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.58, 65 +2026-05-15T02:03:53+08:00 +2026/05/15 02:03:53.143, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.59, 66 +2026-05-15T02:03:58+08:00 +2026/05/15 02:03:58.166, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.38, 66 +2026-05-15T02:04:03+08:00 +2026/05/15 02:04:03.240, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.53, 65 +2026-05-15T02:04:08+08:00 +2026/05/15 02:04:08.265, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.08, 65 +2026-05-15T02:04:13+08:00 +2026/05/15 02:04:13.295, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 347.42, 66 +2026-05-15T02:04:18+08:00 +2026/05/15 02:04:18.375, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.28, 65 +2026-05-15T02:04:23+08:00 +2026/05/15 02:04:23.399, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.05, 65 +2026-05-15T02:04:28+08:00 +2026/05/15 02:04:28.421, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.98, 65 +2026-05-15T02:04:33+08:00 +2026/05/15 02:04:33.459, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.44, 64 +2026-05-15T02:04:38+08:00 +2026/05/15 02:04:38.482, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.48, 65 +2026-05-15T02:04:43+08:00 +2026/05/15 02:04:43.544, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.04, 65 +2026-05-15T02:04:48+08:00 +2026/05/15 02:04:48.568, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.16, 65 +2026-05-15T02:04:53+08:00 +2026/05/15 02:04:53.593, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.28, 65 +2026-05-15T02:04:58+08:00 +2026/05/15 02:04:58.642, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.44, 65 +2026-05-15T02:05:03+08:00 +2026/05/15 02:05:03.665, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.57, 66 +2026-05-15T02:05:08+08:00 +2026/05/15 02:05:08.689, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.43, 66 +2026-05-15T02:05:13+08:00 +2026/05/15 02:05:13.714, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.60, 66 +2026-05-15T02:05:18+08:00 +2026/05/15 02:05:18.738, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.31, 66 +2026-05-15T02:05:23+08:00 +2026/05/15 02:05:23.765, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 66 +2026-05-15T02:05:28+08:00 +2026/05/15 02:05:28.789, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.03, 66 +2026-05-15T02:05:33+08:00 +2026/05/15 02:05:33.814, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.46, 66 +2026-05-15T02:05:38+08:00 +2026/05/15 02:05:38.839, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.64, 65 +2026-05-15T02:05:43+08:00 +2026/05/15 02:05:43.864, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.63, 65 +2026-05-15T02:05:48+08:00 +2026/05/15 02:05:48.888, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.68, 65 +2026-05-15T02:05:53+08:00 +2026/05/15 02:05:53.912, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.67, 65 +2026-05-15T02:05:58+08:00 +2026/05/15 02:05:58.936, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.07, 65 +2026-05-15T02:06:03+08:00 +2026/05/15 02:06:03.959, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.38, 66 +2026-05-15T02:06:08+08:00 +2026/05/15 02:06:08.981, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.05, 66 +2026-05-15T02:06:13+08:00 +2026/05/15 02:06:14.007, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.86, 65 +2026-05-15T02:06:19+08:00 +2026/05/15 02:06:19.032, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.76, 66 +2026-05-15T02:06:24+08:00 +2026/05/15 02:06:24.055, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.39, 65 +2026-05-15T02:06:29+08:00 +2026/05/15 02:06:29.077, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.25, 65 +2026-05-15T02:06:34+08:00 +2026/05/15 02:06:34.101, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.94, 66 +2026-05-15T02:06:39+08:00 +2026/05/15 02:06:39.124, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.26, 66 +2026-05-15T02:06:44+08:00 +2026/05/15 02:06:44.147, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.19, 66 +2026-05-15T02:06:49+08:00 +2026/05/15 02:06:49.175, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.89, 66 +2026-05-15T02:06:54+08:00 +2026/05/15 02:06:54.197, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.36, 66 +2026-05-15T02:06:59+08:00 +2026/05/15 02:06:59.218, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.96, 66 +2026-05-15T02:07:04+08:00 +2026/05/15 02:07:04.244, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.37, 66 +2026-05-15T02:07:09+08:00 +2026/05/15 02:07:09.264, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.89, 65 +2026-05-15T02:07:14+08:00 +2026/05/15 02:07:14.289, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.79, 65 +2026-05-15T02:07:19+08:00 +2026/05/15 02:07:19.310, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.12, 66 +2026-05-15T02:07:24+08:00 +2026/05/15 02:07:24.335, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.73, 65 +2026-05-15T02:07:29+08:00 +2026/05/15 02:07:29.357, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 217.11, 65 +2026-05-15T02:07:34+08:00 +2026/05/15 02:07:34.383, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.70, 65 +2026-05-15T02:07:39+08:00 +2026/05/15 02:07:39.405, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.62, 65 +2026-05-15T02:07:44+08:00 +2026/05/15 02:07:44.428, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.25, 65 +2026-05-15T02:07:49+08:00 +2026/05/15 02:07:49.454, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.39, 65 +2026-05-15T02:07:54+08:00 +2026/05/15 02:07:54.477, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.04, 65 +2026-05-15T02:07:59+08:00 +2026/05/15 02:07:59.501, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.33, 65 +2026-05-15T02:08:04+08:00 +2026/05/15 02:08:04.525, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.38, 65 +2026-05-15T02:08:09+08:00 +2026/05/15 02:08:09.550, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.76, 65 +2026-05-15T02:08:14+08:00 +2026/05/15 02:08:14.573, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.01, 65 +2026-05-15T02:08:19+08:00 +2026/05/15 02:08:19.597, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.27, 65 +2026-05-15T02:08:24+08:00 +2026/05/15 02:08:24.621, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.30, 65 +2026-05-15T02:08:29+08:00 +2026/05/15 02:08:29.645, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.38, 65 +2026-05-15T02:08:34+08:00 +2026/05/15 02:08:34.668, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.45, 65 +2026-05-15T02:08:39+08:00 +2026/05/15 02:08:39.693, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.05, 65 +2026-05-15T02:08:44+08:00 +2026/05/15 02:08:44.716, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.12, 65 +2026-05-15T02:08:49+08:00 +2026/05/15 02:08:49.741, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.58, 66 +2026-05-15T02:08:54+08:00 +2026/05/15 02:08:54.766, NVIDIA GeForce RTX 5090, 76, 34, 9607, 32607, 203.45, 63 +2026-05-15T02:08:59+08:00 +2026/05/15 02:08:59.790, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.11, 65 +2026-05-15T02:09:04+08:00 +2026/05/15 02:09:04.814, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.76, 66 +2026-05-15T02:09:09+08:00 +2026/05/15 02:09:09.837, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.66, 66 +2026-05-15T02:09:14+08:00 +2026/05/15 02:09:14.864, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.48, 66 +2026-05-15T02:09:19+08:00 +2026/05/15 02:09:19.905, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.12, 66 +2026-05-15T02:09:24+08:00 +2026/05/15 02:09:24.928, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.41, 66 +2026-05-15T02:09:29+08:00 +2026/05/15 02:09:29.969, NVIDIA GeForce RTX 5090, 77, 34, 9607, 32607, 261.58, 65 +2026-05-15T02:09:34+08:00 +2026/05/15 02:09:34.994, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.07, 66 +2026-05-15T02:09:40+08:00 +2026/05/15 02:09:40.020, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.56, 66 +2026-05-15T02:09:45+08:00 +2026/05/15 02:09:45.045, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.66, 65 +2026-05-15T02:09:50+08:00 +2026/05/15 02:09:50.070, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.07, 66 +2026-05-15T02:09:55+08:00 +2026/05/15 02:09:55.092, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.14, 66 +2026-05-15T02:10:00+08:00 +2026/05/15 02:10:00.117, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.13, 66 +2026-05-15T02:10:05+08:00 +2026/05/15 02:10:05.139, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 259.42, 59 +2026-05-15T02:10:10+08:00 +2026/05/15 02:10:10.194, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.81, 65 +2026-05-15T02:10:15+08:00 +2026/05/15 02:10:15.219, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 364.21, 66 +2026-05-15T02:10:20+08:00 +2026/05/15 02:10:20.269, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.91, 65 +2026-05-15T02:10:25+08:00 +2026/05/15 02:10:25.292, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.34, 66 +2026-05-15T02:10:30+08:00 +2026/05/15 02:10:30.316, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.94, 67 +2026-05-15T02:10:35+08:00 +2026/05/15 02:10:35.373, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.86, 65 +2026-05-15T02:10:40+08:00 +2026/05/15 02:10:40.396, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.36, 65 +2026-05-15T02:10:45+08:00 +2026/05/15 02:10:45.438, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.07, 65 +2026-05-15T02:10:50+08:00 +2026/05/15 02:10:50.478, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.55, 65 +2026-05-15T02:10:55+08:00 +2026/05/15 02:10:55.519, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.33, 66 +2026-05-15T02:11:00+08:00 +2026/05/15 02:11:00.560, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 65 +2026-05-15T02:11:05+08:00 +2026/05/15 02:11:05.585, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.36, 65 +2026-05-15T02:11:10+08:00 +2026/05/15 02:11:10.614, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.88, 66 +2026-05-15T02:11:15+08:00 +2026/05/15 02:11:15.637, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.20, 66 +2026-05-15T02:11:20+08:00 +2026/05/15 02:11:20.664, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 210.15, 65 +2026-05-15T02:11:25+08:00 +2026/05/15 02:11:25.686, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.51, 65 +2026-05-15T02:11:30+08:00 +2026/05/15 02:11:30.712, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.72, 64 +2026-05-15T02:11:35+08:00 +2026/05/15 02:11:35.736, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.08, 64 +2026-05-15T02:11:40+08:00 +2026/05/15 02:11:40.760, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.35, 65 +2026-05-15T02:11:45+08:00 +2026/05/15 02:11:45.786, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.35, 64 +2026-05-15T02:11:50+08:00 +2026/05/15 02:11:50.808, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.93, 64 +2026-05-15T02:11:55+08:00 +2026/05/15 02:11:55.832, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.07, 64 +2026-05-15T02:12:00+08:00 +2026/05/15 02:12:00.857, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.84, 65 +2026-05-15T02:12:05+08:00 +2026/05/15 02:12:05.881, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.18, 65 +2026-05-15T02:12:10+08:00 +2026/05/15 02:12:10.905, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 307.97, 65 +2026-05-15T02:12:15+08:00 +2026/05/15 02:12:15.929, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.47, 65 +2026-05-15T02:12:20+08:00 +2026/05/15 02:12:20.953, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.63, 65 +2026-05-15T02:12:25+08:00 +2026/05/15 02:12:25.977, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.97, 66 +2026-05-15T02:12:30+08:00 +2026/05/15 02:12:31.002, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.83, 66 +2026-05-15T02:12:36+08:00 +2026/05/15 02:12:36.026, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 265.61, 65 +2026-05-15T02:12:41+08:00 +2026/05/15 02:12:41.055, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.50, 65 +2026-05-15T02:12:46+08:00 +2026/05/15 02:12:46.079, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.88, 64 +2026-05-15T02:12:51+08:00 +2026/05/15 02:12:51.105, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.31, 66 +2026-05-15T02:12:56+08:00 +2026/05/15 02:12:56.129, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.08, 66 +2026-05-15T02:13:01+08:00 +2026/05/15 02:13:01.158, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 365.68, 66 +2026-05-15T02:13:06+08:00 +2026/05/15 02:13:06.181, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.87, 65 +2026-05-15T02:13:11+08:00 +2026/05/15 02:13:11.207, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.46, 66 +2026-05-15T02:13:16+08:00 +2026/05/15 02:13:16.231, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.33, 65 +2026-05-15T02:13:21+08:00 +2026/05/15 02:13:21.254, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.25, 65 +2026-05-15T02:13:26+08:00 +2026/05/15 02:13:26.279, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.46, 65 +2026-05-15T02:13:31+08:00 +2026/05/15 02:13:31.305, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.78, 65 +2026-05-15T02:13:36+08:00 +2026/05/15 02:13:36.330, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.71, 65 +2026-05-15T02:13:41+08:00 +2026/05/15 02:13:41.354, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.78, 65 +2026-05-15T02:13:46+08:00 +2026/05/15 02:13:46.380, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.65, 65 +2026-05-15T02:13:51+08:00 +2026/05/15 02:13:51.403, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 238.64, 65 +2026-05-15T02:13:56+08:00 +2026/05/15 02:13:56.427, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.48, 65 +2026-05-15T02:14:01+08:00 +2026/05/15 02:14:01.451, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.93, 66 +2026-05-15T02:14:06+08:00 +2026/05/15 02:14:06.477, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.31, 65 +2026-05-15T02:14:11+08:00 +2026/05/15 02:14:11.504, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 66 +2026-05-15T02:14:16+08:00 +2026/05/15 02:14:16.528, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.04, 65 +2026-05-15T02:14:21+08:00 +2026/05/15 02:14:21.552, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.56, 65 +2026-05-15T02:14:26+08:00 +2026/05/15 02:14:26.577, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.87, 65 +2026-05-15T02:14:31+08:00 +2026/05/15 02:14:31.602, NVIDIA GeForce RTX 5090, 80, 36, 9607, 32607, 257.59, 64 +2026-05-15T02:14:36+08:00 +2026/05/15 02:14:36.625, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.71, 66 +2026-05-15T02:14:41+08:00 +2026/05/15 02:14:41.648, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.76, 66 +2026-05-15T02:14:46+08:00 +2026/05/15 02:14:46.670, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 66 +2026-05-15T02:14:51+08:00 +2026/05/15 02:14:51.694, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.55, 65 +2026-05-15T02:14:56+08:00 +2026/05/15 02:14:56.745, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 65 +2026-05-15T02:15:01+08:00 +2026/05/15 02:15:01.769, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.30, 66 +2026-05-15T02:15:06+08:00 +2026/05/15 02:15:06.816, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 367.21, 66 +2026-05-15T02:15:11+08:00 +2026/05/15 02:15:11.869, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.86, 65 +2026-05-15T02:15:16+08:00 +2026/05/15 02:15:16.893, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 366.06, 66 +2026-05-15T02:15:21+08:00 +2026/05/15 02:15:21.951, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.09, 65 +2026-05-15T02:15:26+08:00 +2026/05/15 02:15:26.976, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.37, 66 +2026-05-15T02:15:32+08:00 +2026/05/15 02:15:32.025, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.86, 66 +2026-05-15T02:15:37+08:00 +2026/05/15 02:15:37.049, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.91, 65 +2026-05-15T02:15:42+08:00 +2026/05/15 02:15:42.089, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.32, 66 +2026-05-15T02:15:47+08:00 +2026/05/15 02:15:47.111, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.50, 66 +2026-05-15T02:15:52+08:00 +2026/05/15 02:15:52.178, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.66, 66 +2026-05-15T02:15:57+08:00 +2026/05/15 02:15:57.201, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.91, 65 +2026-05-15T02:16:02+08:00 +2026/05/15 02:16:02.271, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 364.39, 66 +2026-05-15T02:16:07+08:00 +2026/05/15 02:16:07.295, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.10, 66 +2026-05-15T02:16:12+08:00 +2026/05/15 02:16:12.368, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.95, 65 +2026-05-15T02:16:17+08:00 +2026/05/15 02:16:17.391, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.04, 66 +2026-05-15T02:16:22+08:00 +2026/05/15 02:16:22.461, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.33, 65 +2026-05-15T02:16:27+08:00 +2026/05/15 02:16:27.484, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 65 +2026-05-15T02:16:32+08:00 +2026/05/15 02:16:32.552, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.96, 64 +2026-05-15T02:16:37+08:00 +2026/05/15 02:16:37.576, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.48, 65 +2026-05-15T02:16:42+08:00 +2026/05/15 02:16:42.645, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.59, 65 +2026-05-15T02:16:47+08:00 +2026/05/15 02:16:47.668, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.27, 66 +2026-05-15T02:16:52+08:00 +2026/05/15 02:16:52.692, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.66, 66 +2026-05-15T02:16:57+08:00 +2026/05/15 02:16:57.716, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.96, 65 +2026-05-15T02:17:02+08:00 +2026/05/15 02:17:02.741, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.41, 66 +2026-05-15T02:17:07+08:00 +2026/05/15 02:17:07.764, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.57, 66 +2026-05-15T02:17:12+08:00 +2026/05/15 02:17:12.787, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.52, 66 +2026-05-15T02:17:17+08:00 +2026/05/15 02:17:17.809, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.95, 65 +2026-05-15T02:17:22+08:00 +2026/05/15 02:17:22.832, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.83, 66 +2026-05-15T02:17:27+08:00 +2026/05/15 02:17:27.856, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.32, 66 +2026-05-15T02:17:32+08:00 +2026/05/15 02:17:32.879, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.97, 65 +2026-05-15T02:17:37+08:00 +2026/05/15 02:17:37.902, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 358.53, 65 +2026-05-15T02:17:42+08:00 +2026/05/15 02:17:42.925, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 65 +2026-05-15T02:17:47+08:00 +2026/05/15 02:17:47.951, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 65 +2026-05-15T02:17:52+08:00 +2026/05/15 02:17:52.999, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.66, 65 +2026-05-15T02:17:58+08:00 +2026/05/15 02:17:58.022, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.20, 65 +2026-05-15T02:18:03+08:00 +2026/05/15 02:18:03.081, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.14, 65 +2026-05-15T02:18:08+08:00 +2026/05/15 02:18:08.105, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.65, 65 +2026-05-15T02:18:13+08:00 +2026/05/15 02:18:13.133, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.62, 66 +2026-05-15T02:18:18+08:00 +2026/05/15 02:18:18.161, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.42, 65 +2026-05-15T02:18:23+08:00 +2026/05/15 02:18:23.183, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.36, 64 +2026-05-15T02:18:28+08:00 +2026/05/15 02:18:28.225, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.08, 65 +2026-05-15T02:18:33+08:00 +2026/05/15 02:18:33.264, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.36, 66 +2026-05-15T02:18:38+08:00 +2026/05/15 02:18:38.287, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.98, 66 +2026-05-15T02:18:43+08:00 +2026/05/15 02:18:43.331, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.03, 65 +2026-05-15T02:18:48+08:00 +2026/05/15 02:18:48.357, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.23, 66 +2026-05-15T02:18:53+08:00 +2026/05/15 02:18:53.380, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 341.10, 65 +2026-05-15T02:18:58+08:00 +2026/05/15 02:18:58.423, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.90, 64 +2026-05-15T02:19:03+08:00 +2026/05/15 02:19:03.470, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.53, 66 +2026-05-15T02:19:08+08:00 +2026/05/15 02:19:08.510, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.73, 65 +2026-05-15T02:19:13+08:00 +2026/05/15 02:19:13.534, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.93, 65 +2026-05-15T02:19:18+08:00 +2026/05/15 02:19:18.559, NVIDIA GeForce RTX 5090, 83, 37, 9607, 32607, 365.40, 66 +2026-05-15T02:19:23+08:00 +2026/05/15 02:19:23.583, NVIDIA GeForce RTX 5090, 77, 34, 9607, 32607, 363.72, 65 +2026-05-15T02:19:28+08:00 +2026/05/15 02:19:28.605, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.81, 64 +2026-05-15T02:19:33+08:00 +2026/05/15 02:19:33.628, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.99, 65 +2026-05-15T02:19:38+08:00 +2026/05/15 02:19:38.652, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 327.65, 66 +2026-05-15T02:19:43+08:00 +2026/05/15 02:19:43.677, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.20, 66 +2026-05-15T02:19:48+08:00 +2026/05/15 02:19:48.702, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 357.82, 66 +2026-05-15T02:19:53+08:00 +2026/05/15 02:19:53.731, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.13, 65 +2026-05-15T02:19:58+08:00 +2026/05/15 02:19:58.757, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.79, 66 +2026-05-15T02:20:03+08:00 +2026/05/15 02:20:03.780, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 366.74, 65 +2026-05-15T02:20:08+08:00 +2026/05/15 02:20:08.804, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.77, 65 +2026-05-15T02:20:13+08:00 +2026/05/15 02:20:13.827, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 272.33, 65 +2026-05-15T02:20:18+08:00 +2026/05/15 02:20:18.851, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.95, 66 +2026-05-15T02:20:23+08:00 +2026/05/15 02:20:23.874, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.53, 65 +2026-05-15T02:20:28+08:00 +2026/05/15 02:20:28.899, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.82, 65 +2026-05-15T02:20:33+08:00 +2026/05/15 02:20:33.923, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.09, 66 +2026-05-15T02:20:38+08:00 +2026/05/15 02:20:38.947, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.18, 66 +2026-05-15T02:20:43+08:00 +2026/05/15 02:20:43.970, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.46, 65 +2026-05-15T02:20:48+08:00 +2026/05/15 02:20:48.994, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.73, 67 +2026-05-15T02:20:54+08:00 +2026/05/15 02:20:54.039, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.30, 65 +2026-05-15T02:20:59+08:00 +2026/05/15 02:20:59.064, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.79, 65 +2026-05-15T02:21:04+08:00 +2026/05/15 02:21:04.124, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.40, 65 +2026-05-15T02:21:09+08:00 +2026/05/15 02:21:09.147, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.52, 65 +2026-05-15T02:21:14+08:00 +2026/05/15 02:21:14.171, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.28, 66 +2026-05-15T02:21:19+08:00 +2026/05/15 02:21:19.219, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.32, 66 +2026-05-15T02:21:24+08:00 +2026/05/15 02:21:24.242, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.79, 66 +2026-05-15T02:21:29+08:00 +2026/05/15 02:21:29.317, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.24, 66 +2026-05-15T02:21:34+08:00 +2026/05/15 02:21:34.344, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.86, 65 +2026-05-15T02:21:39+08:00 +2026/05/15 02:21:39.367, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.48, 65 +2026-05-15T02:21:44+08:00 +2026/05/15 02:21:44.441, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.80, 66 +2026-05-15T02:21:49+08:00 +2026/05/15 02:21:49.464, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.77, 65 +2026-05-15T02:21:54+08:00 +2026/05/15 02:21:54.489, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 367.05, 65 +2026-05-15T02:21:59+08:00 +2026/05/15 02:21:59.549, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.22, 65 +2026-05-15T02:22:04+08:00 +2026/05/15 02:22:04.576, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.64, 66 +2026-05-15T02:22:09+08:00 +2026/05/15 02:22:09.600, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.55, 64 +2026-05-15T02:22:14+08:00 +2026/05/15 02:22:14.624, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.56, 64 +2026-05-15T02:22:19+08:00 +2026/05/15 02:22:19.647, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.87, 64 +2026-05-15T02:22:24+08:00 +2026/05/15 02:22:24.671, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.49, 64 +2026-05-15T02:22:29+08:00 +2026/05/15 02:22:29.696, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.86, 64 +2026-05-15T02:22:34+08:00 +2026/05/15 02:22:34.719, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.75, 65 +2026-05-15T02:22:39+08:00 +2026/05/15 02:22:39.744, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.94, 65 +2026-05-15T02:22:44+08:00 +2026/05/15 02:22:44.768, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.81, 66 +2026-05-15T02:22:49+08:00 +2026/05/15 02:22:49.792, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.16, 65 +2026-05-15T02:22:54+08:00 +2026/05/15 02:22:54.818, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.17, 65 +2026-05-15T02:22:59+08:00 +2026/05/15 02:22:59.842, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.12, 65 +2026-05-15T02:23:04+08:00 +2026/05/15 02:23:04.865, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.21, 65 +2026-05-15T02:23:09+08:00 +2026/05/15 02:23:09.888, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.02, 65 +2026-05-15T02:23:14+08:00 +2026/05/15 02:23:14.914, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.86, 65 +2026-05-15T02:23:19+08:00 +2026/05/15 02:23:19.937, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.79, 65 +2026-05-15T02:23:24+08:00 +2026/05/15 02:23:24.962, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.81, 65 +2026-05-15T02:23:29+08:00 +2026/05/15 02:23:29.986, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.47, 66 +2026-05-15T02:23:34+08:00 +2026/05/15 02:23:35.012, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.42, 65 +2026-05-15T02:23:40+08:00 +2026/05/15 02:23:40.034, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.99, 65 +2026-05-15T02:23:45+08:00 +2026/05/15 02:23:45.059, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.89, 65 +2026-05-15T02:23:50+08:00 +2026/05/15 02:23:50.082, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.64, 66 +2026-05-15T02:23:55+08:00 +2026/05/15 02:23:55.131, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.29, 66 +2026-05-15T02:24:00+08:00 +2026/05/15 02:24:00.180, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 252.85, 64 +2026-05-15T02:24:05+08:00 +2026/05/15 02:24:05.228, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.19, 66 +2026-05-15T02:24:10+08:00 +2026/05/15 02:24:10.254, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.03, 66 +2026-05-15T02:24:15+08:00 +2026/05/15 02:24:15.294, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.92, 66 +2026-05-15T02:24:20+08:00 +2026/05/15 02:24:20.337, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.86, 65 +2026-05-15T02:24:25+08:00 +2026/05/15 02:24:25.379, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.62, 66 +2026-05-15T02:24:30+08:00 +2026/05/15 02:24:30.420, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.87, 66 +2026-05-15T02:24:35+08:00 +2026/05/15 02:24:35.475, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 65 +2026-05-15T02:24:40+08:00 +2026/05/15 02:24:40.512, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.96, 66 +2026-05-15T02:24:45+08:00 +2026/05/15 02:24:45.536, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.32, 66 +2026-05-15T02:24:50+08:00 +2026/05/15 02:24:50.587, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.82, 66 +2026-05-15T02:24:55+08:00 +2026/05/15 02:24:55.611, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.63, 65 +2026-05-15T02:25:00+08:00 +2026/05/15 02:25:00.664, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.05, 65 +2026-05-15T02:25:05+08:00 +2026/05/15 02:25:05.690, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.99, 66 +2026-05-15T02:25:10+08:00 +2026/05/15 02:25:10.732, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 364.07, 66 +2026-05-15T02:25:15+08:00 +2026/05/15 02:25:15.785, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.58, 66 +2026-05-15T02:25:20+08:00 +2026/05/15 02:25:20.816, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.12, 67 +2026-05-15T02:25:25+08:00 +2026/05/15 02:25:25.839, NVIDIA GeForce RTX 5090, 88, 42, 9607, 32607, 366.38, 66 +2026-05-15T02:25:30+08:00 +2026/05/15 02:25:30.863, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 65 +2026-05-15T02:25:35+08:00 +2026/05/15 02:25:35.886, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 65 +2026-05-15T02:25:40+08:00 +2026/05/15 02:25:40.911, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.50, 66 +2026-05-15T02:25:45+08:00 +2026/05/15 02:25:45.935, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 255.99, 59 +2026-05-15T02:25:50+08:00 +2026/05/15 02:25:50.957, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.37, 66 +2026-05-15T02:25:55+08:00 +2026/05/15 02:25:55.984, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.04, 66 +2026-05-15T02:26:00+08:00 +2026/05/15 02:26:01.008, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 344.06, 66 +2026-05-15T02:26:06+08:00 +2026/05/15 02:26:06.031, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.50, 66 +2026-05-15T02:26:11+08:00 +2026/05/15 02:26:11.055, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.05, 66 +2026-05-15T02:26:16+08:00 +2026/05/15 02:26:16.079, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.39, 65 +2026-05-15T02:26:21+08:00 +2026/05/15 02:26:21.101, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.35, 66 +2026-05-15T02:26:26+08:00 +2026/05/15 02:26:26.126, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 366.71, 66 +2026-05-15T02:26:31+08:00 +2026/05/15 02:26:31.149, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.86, 66 +2026-05-15T02:26:36+08:00 +2026/05/15 02:26:36.175, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.36, 65 +2026-05-15T02:26:41+08:00 +2026/05/15 02:26:41.198, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.28, 65 +2026-05-15T02:26:46+08:00 +2026/05/15 02:26:46.221, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.36, 66 +2026-05-15T02:26:51+08:00 +2026/05/15 02:26:51.245, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 66 +2026-05-15T02:26:56+08:00 +2026/05/15 02:26:56.268, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.65, 65 +2026-05-15T02:27:01+08:00 +2026/05/15 02:27:01.294, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.87, 66 +2026-05-15T02:27:06+08:00 +2026/05/15 02:27:06.317, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.47, 66 +2026-05-15T02:27:11+08:00 +2026/05/15 02:27:11.340, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 365.72, 66 +2026-05-15T02:27:16+08:00 +2026/05/15 02:27:16.365, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 264.05, 65 +2026-05-15T02:27:21+08:00 +2026/05/15 02:27:21.395, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.20, 65 +2026-05-15T02:27:26+08:00 +2026/05/15 02:27:26.422, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.47, 65 +2026-05-15T02:27:31+08:00 +2026/05/15 02:27:31.447, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.81, 66 +2026-05-15T02:27:36+08:00 +2026/05/15 02:27:36.472, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.26, 66 +2026-05-15T02:27:41+08:00 +2026/05/15 02:27:41.496, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.43, 65 +2026-05-15T02:27:46+08:00 +2026/05/15 02:27:46.519, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.33, 66 +2026-05-15T02:27:51+08:00 +2026/05/15 02:27:51.545, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.44, 66 +2026-05-15T02:27:56+08:00 +2026/05/15 02:27:56.568, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.22, 66 +2026-05-15T02:28:01+08:00 +2026/05/15 02:28:01.595, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 216.60, 64 +2026-05-15T02:28:06+08:00 +2026/05/15 02:28:06.624, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.10, 66 +2026-05-15T02:28:11+08:00 +2026/05/15 02:28:11.652, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.00, 66 +2026-05-15T02:28:16+08:00 +2026/05/15 02:28:16.675, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.66, 66 +2026-05-15T02:28:21+08:00 +2026/05/15 02:28:21.701, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.52, 65 +2026-05-15T02:28:26+08:00 +2026/05/15 02:28:26.723, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.05, 66 +2026-05-15T02:28:31+08:00 +2026/05/15 02:28:31.747, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 367.31, 66 +2026-05-15T02:28:36+08:00 +2026/05/15 02:28:36.772, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.15, 65 +2026-05-15T02:28:41+08:00 +2026/05/15 02:28:41.795, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.05, 66 +2026-05-15T02:28:46+08:00 +2026/05/15 02:28:46.819, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.82, 66 +2026-05-15T02:28:51+08:00 +2026/05/15 02:28:51.842, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.11, 66 +2026-05-15T02:28:56+08:00 +2026/05/15 02:28:56.867, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.21, 65 +2026-05-15T02:29:01+08:00 +2026/05/15 02:29:01.891, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 363.41, 66 +2026-05-15T02:29:06+08:00 +2026/05/15 02:29:06.915, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.37, 65 +2026-05-15T02:29:11+08:00 +2026/05/15 02:29:11.938, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 259.69, 63 +2026-05-15T02:29:16+08:00 +2026/05/15 02:29:16.962, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.47, 66 +2026-05-15T02:29:21+08:00 +2026/05/15 02:29:21.988, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.12, 66 +2026-05-15T02:29:26+08:00 +2026/05/15 02:29:27.011, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.31, 65 +2026-05-15T02:29:32+08:00 +2026/05/15 02:29:32.035, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.98, 65 +2026-05-15T02:29:37+08:00 +2026/05/15 02:29:37.059, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.28, 65 +2026-05-15T02:29:42+08:00 +2026/05/15 02:29:42.082, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.91, 66 +2026-05-15T02:29:47+08:00 +2026/05/15 02:29:47.105, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.53, 66 +2026-05-15T02:29:52+08:00 +2026/05/15 02:29:52.130, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.03, 64 +2026-05-15T02:29:57+08:00 +2026/05/15 02:29:57.155, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.07, 66 +2026-05-15T02:30:02+08:00 +2026/05/15 02:30:02.177, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.55, 66 +2026-05-15T02:30:07+08:00 +2026/05/15 02:30:07.202, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.98, 66 +2026-05-15T02:30:12+08:00 +2026/05/15 02:30:12.225, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 365.27, 65 +2026-05-15T02:30:17+08:00 +2026/05/15 02:30:17.251, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.94, 65 +2026-05-15T02:30:22+08:00 +2026/05/15 02:30:22.274, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.48, 67 +2026-05-15T02:30:27+08:00 +2026/05/15 02:30:27.297, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.51, 66 +2026-05-15T02:30:32+08:00 +2026/05/15 02:30:32.321, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 65 +2026-05-15T02:30:37+08:00 +2026/05/15 02:30:37.350, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.81, 66 +2026-05-15T02:30:42+08:00 +2026/05/15 02:30:42.377, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.27, 65 +2026-05-15T02:30:47+08:00 +2026/05/15 02:30:47.401, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.16, 66 +2026-05-15T02:30:52+08:00 +2026/05/15 02:30:52.422, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.03, 66 +2026-05-15T02:30:57+08:00 +2026/05/15 02:30:57.447, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.40, 65 +2026-05-15T02:31:02+08:00 +2026/05/15 02:31:02.471, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 364.48, 65 +2026-05-15T02:31:07+08:00 +2026/05/15 02:31:07.494, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 340.48, 65 +2026-05-15T02:31:12+08:00 +2026/05/15 02:31:12.518, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.27, 66 +2026-05-15T02:31:17+08:00 +2026/05/15 02:31:17.542, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.68, 66 +2026-05-15T02:31:22+08:00 +2026/05/15 02:31:22.564, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.81, 66 +2026-05-15T02:31:27+08:00 +2026/05/15 02:31:27.590, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.83, 65 +2026-05-15T02:31:32+08:00 +2026/05/15 02:31:32.613, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.67, 65 +2026-05-15T02:31:37+08:00 +2026/05/15 02:31:37.637, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.85, 66 +2026-05-15T02:31:42+08:00 +2026/05/15 02:31:42.661, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 365.61, 66 +2026-05-15T02:31:47+08:00 +2026/05/15 02:31:47.686, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.77, 65 +2026-05-15T02:31:52+08:00 +2026/05/15 02:31:52.711, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.42, 65 +2026-05-15T02:31:57+08:00 +2026/05/15 02:31:57.735, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.48, 66 +2026-05-15T02:32:02+08:00 +2026/05/15 02:32:02.759, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 365.54, 66 +2026-05-15T02:32:07+08:00 +2026/05/15 02:32:07.781, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.95, 65 +2026-05-15T02:32:12+08:00 +2026/05/15 02:32:12.804, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.74, 65 +2026-05-15T02:32:17+08:00 +2026/05/15 02:32:17.830, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 66 +2026-05-15T02:32:22+08:00 +2026/05/15 02:32:22.855, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.11, 66 +2026-05-15T02:32:27+08:00 +2026/05/15 02:32:27.881, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.97, 65 +2026-05-15T02:32:32+08:00 +2026/05/15 02:32:32.905, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.81, 65 +2026-05-15T02:32:37+08:00 +2026/05/15 02:32:37.928, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.98, 66 +2026-05-15T02:32:42+08:00 +2026/05/15 02:32:42.957, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.25, 64 +2026-05-15T02:32:47+08:00 +2026/05/15 02:32:47.979, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.30, 65 +2026-05-15T02:32:52+08:00 +2026/05/15 02:32:53.028, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.03, 65 +2026-05-15T02:32:58+08:00 +2026/05/15 02:32:58.053, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.43, 65 +2026-05-15T02:33:03+08:00 +2026/05/15 02:33:03.093, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 349.92, 66 +2026-05-15T02:33:08+08:00 +2026/05/15 02:33:08.116, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.49, 65 +2026-05-15T02:33:13+08:00 +2026/05/15 02:33:13.159, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 364.93, 65 +2026-05-15T02:33:18+08:00 +2026/05/15 02:33:18.199, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.07, 65 +2026-05-15T02:33:23+08:00 +2026/05/15 02:33:23.223, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.46, 65 +2026-05-15T02:33:28+08:00 +2026/05/15 02:33:28.247, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.57, 66 +2026-05-15T02:33:33+08:00 +2026/05/15 02:33:33.272, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.58, 66 +2026-05-15T02:33:38+08:00 +2026/05/15 02:33:38.294, NVIDIA GeForce RTX 5090, 62, 22, 9607, 32607, 240.10, 59 +2026-05-15T02:33:43+08:00 +2026/05/15 02:33:43.353, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.61, 66 +2026-05-15T02:33:48+08:00 +2026/05/15 02:33:48.380, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.70, 65 +2026-05-15T02:33:53+08:00 +2026/05/15 02:33:53.404, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.96, 64 +2026-05-15T02:33:58+08:00 +2026/05/15 02:33:58.454, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 366.03, 65 +2026-05-15T02:34:03+08:00 +2026/05/15 02:34:03.479, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.11, 66 +2026-05-15T02:34:08+08:00 +2026/05/15 02:34:08.502, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 366.01, 66 +2026-05-15T02:34:13+08:00 +2026/05/15 02:34:13.525, NVIDIA GeForce RTX 5090, 10, 4, 9607, 32607, 265.59, 59 +2026-05-15T02:34:18+08:00 +2026/05/15 02:34:18.548, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.96, 66 +2026-05-15T02:34:23+08:00 +2026/05/15 02:34:23.574, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.29, 65 +2026-05-15T02:34:28+08:00 +2026/05/15 02:34:28.597, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.85, 66 +2026-05-15T02:34:33+08:00 +2026/05/15 02:34:33.620, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.04, 65 +2026-05-15T02:34:38+08:00 +2026/05/15 02:34:38.644, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.52, 66 +2026-05-15T02:34:43+08:00 +2026/05/15 02:34:43.670, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 66 +2026-05-15T02:34:48+08:00 +2026/05/15 02:34:48.695, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.91, 65 +2026-05-15T02:34:53+08:00 +2026/05/15 02:34:53.718, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.98, 64 +2026-05-15T02:34:58+08:00 +2026/05/15 02:34:58.742, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.71, 65 +2026-05-15T02:35:03+08:00 +2026/05/15 02:35:03.765, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.08, 64 +2026-05-15T02:35:08+08:00 +2026/05/15 02:35:08.789, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.43, 66 +2026-05-15T02:35:13+08:00 +2026/05/15 02:35:13.815, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 304.44, 64 +2026-05-15T02:35:18+08:00 +2026/05/15 02:35:18.838, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.49, 65 +2026-05-15T02:35:23+08:00 +2026/05/15 02:35:23.862, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.29, 66 +2026-05-15T02:35:28+08:00 +2026/05/15 02:35:28.884, NVIDIA GeForce RTX 5090, 80, 36, 9607, 32607, 252.30, 63 +2026-05-15T02:35:33+08:00 +2026/05/15 02:35:33.911, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.53, 66 +2026-05-15T02:35:38+08:00 +2026/05/15 02:35:38.935, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.79, 66 +2026-05-15T02:35:43+08:00 +2026/05/15 02:35:43.962, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.61, 64 +2026-05-15T02:35:48+08:00 +2026/05/15 02:35:48.988, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.08, 65 +2026-05-15T02:35:53+08:00 +2026/05/15 02:35:54.011, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.78, 65 +2026-05-15T02:35:59+08:00 +2026/05/15 02:35:59.035, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.53, 66 +2026-05-15T02:36:04+08:00 +2026/05/15 02:36:04.058, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.44, 66 +2026-05-15T02:36:09+08:00 +2026/05/15 02:36:09.081, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.75, 65 +2026-05-15T02:36:14+08:00 +2026/05/15 02:36:14.106, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 64 +2026-05-15T02:36:19+08:00 +2026/05/15 02:36:19.131, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.22, 66 +2026-05-15T02:36:24+08:00 +2026/05/15 02:36:24.156, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.73, 66 +2026-05-15T02:36:29+08:00 +2026/05/15 02:36:29.179, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 293.30, 65 +2026-05-15T02:36:34+08:00 +2026/05/15 02:36:34.204, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.40, 66 +2026-05-15T02:36:39+08:00 +2026/05/15 02:36:39.228, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.32, 66 +2026-05-15T02:36:44+08:00 +2026/05/15 02:36:44.253, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.23, 65 +2026-05-15T02:36:49+08:00 +2026/05/15 02:36:49.276, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.40, 65 +2026-05-15T02:36:54+08:00 +2026/05/15 02:36:54.300, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.52, 66 +2026-05-15T02:36:59+08:00 +2026/05/15 02:36:59.323, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.52, 66 +2026-05-15T02:37:04+08:00 +2026/05/15 02:37:04.347, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.44, 65 +2026-05-15T02:37:09+08:00 +2026/05/15 02:37:09.370, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.23, 65 +2026-05-15T02:37:14+08:00 +2026/05/15 02:37:14.393, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.58, 66 +2026-05-15T02:37:19+08:00 +2026/05/15 02:37:19.417, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.10, 66 +2026-05-15T02:37:24+08:00 +2026/05/15 02:37:24.440, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.02, 66 +2026-05-15T02:37:29+08:00 +2026/05/15 02:37:29.463, NVIDIA GeForce RTX 5090, 55, 20, 9607, 32607, 248.73, 65 +2026-05-15T02:37:34+08:00 +2026/05/15 02:37:34.486, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.09, 65 +2026-05-15T02:37:39+08:00 +2026/05/15 02:37:39.511, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.37, 66 +2026-05-15T02:37:44+08:00 +2026/05/15 02:37:44.535, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.04, 66 +2026-05-15T02:37:49+08:00 +2026/05/15 02:37:49.557, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.81, 66 +2026-05-15T02:37:54+08:00 +2026/05/15 02:37:54.580, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.03, 66 +2026-05-15T02:37:59+08:00 +2026/05/15 02:37:59.604, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.32, 65 +2026-05-15T02:38:04+08:00 +2026/05/15 02:38:04.627, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.34, 67 +2026-05-15T02:38:09+08:00 +2026/05/15 02:38:09.652, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.13, 64 +2026-05-15T02:38:14+08:00 +2026/05/15 02:38:14.676, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.46, 65 +2026-05-15T02:38:19+08:00 +2026/05/15 02:38:19.704, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.03, 66 +2026-05-15T02:38:24+08:00 +2026/05/15 02:38:24.728, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 366.23, 66 +2026-05-15T02:38:29+08:00 +2026/05/15 02:38:29.758, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.38, 65 +2026-05-15T02:38:34+08:00 +2026/05/15 02:38:34.782, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.13, 65 +2026-05-15T02:38:39+08:00 +2026/05/15 02:38:39.806, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.42, 66 +2026-05-15T02:38:44+08:00 +2026/05/15 02:38:44.829, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.34, 66 +2026-05-15T02:38:49+08:00 +2026/05/15 02:38:49.853, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.43, 65 +2026-05-15T02:38:54+08:00 +2026/05/15 02:38:54.875, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.84, 65 +2026-05-15T02:38:59+08:00 +2026/05/15 02:38:59.899, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.24, 65 +2026-05-15T02:39:04+08:00 +2026/05/15 02:39:04.924, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.67, 65 +2026-05-15T02:39:09+08:00 +2026/05/15 02:39:09.948, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.94, 64 +2026-05-15T02:39:14+08:00 +2026/05/15 02:39:14.971, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.75, 65 +2026-05-15T02:39:19+08:00 +2026/05/15 02:39:19.995, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 279.61, 65 +2026-05-15T02:39:25+08:00 +2026/05/15 02:39:25.018, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.48, 65 +2026-05-15T02:39:30+08:00 +2026/05/15 02:39:30.043, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.87, 66 +2026-05-15T02:39:35+08:00 +2026/05/15 02:39:35.065, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.91, 66 +2026-05-15T02:39:40+08:00 +2026/05/15 02:39:40.087, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.91, 66 +2026-05-15T02:39:45+08:00 +2026/05/15 02:39:45.110, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.45, 65 +2026-05-15T02:39:50+08:00 +2026/05/15 02:39:50.134, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.18, 66 +2026-05-15T02:39:55+08:00 +2026/05/15 02:39:55.158, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.72, 65 +2026-05-15T02:40:00+08:00 +2026/05/15 02:40:00.180, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.04, 66 +2026-05-15T02:40:05+08:00 +2026/05/15 02:40:05.205, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.37, 66 +2026-05-15T02:40:10+08:00 +2026/05/15 02:40:10.232, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 367.08, 65 +2026-05-15T02:40:15+08:00 +2026/05/15 02:40:15.255, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.04, 66 +2026-05-15T02:40:20+08:00 +2026/05/15 02:40:20.277, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.97, 66 +2026-05-15T02:40:25+08:00 +2026/05/15 02:40:25.301, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.04, 66 +2026-05-15T02:40:30+08:00 +2026/05/15 02:40:30.323, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.05, 66 +2026-05-15T02:40:35+08:00 +2026/05/15 02:40:35.352, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 357.24, 65 +2026-05-15T02:40:40+08:00 +2026/05/15 02:40:40.375, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.93, 65 +2026-05-15T02:40:45+08:00 +2026/05/15 02:40:45.402, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.39, 66 +2026-05-15T02:40:50+08:00 +2026/05/15 02:40:50.424, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.88, 66 +2026-05-15T02:40:55+08:00 +2026/05/15 02:40:55.448, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.18, 65 +2026-05-15T02:41:00+08:00 +2026/05/15 02:41:00.472, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.92, 66 +2026-05-15T02:41:05+08:00 +2026/05/15 02:41:05.496, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.44, 66 +2026-05-15T02:41:10+08:00 +2026/05/15 02:41:10.520, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.43, 65 +2026-05-15T02:41:15+08:00 +2026/05/15 02:41:15.544, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 306.27, 65 +2026-05-15T02:41:20+08:00 +2026/05/15 02:41:20.567, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.28, 65 +2026-05-15T02:41:25+08:00 +2026/05/15 02:41:25.591, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.99, 66 +2026-05-15T02:41:30+08:00 +2026/05/15 02:41:30.617, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 243.31, 65 +2026-05-15T02:41:35+08:00 +2026/05/15 02:41:35.650, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.71, 65 +2026-05-15T02:41:40+08:00 +2026/05/15 02:41:40.673, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.64, 65 +2026-05-15T02:41:45+08:00 +2026/05/15 02:41:45.715, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.44, 65 +2026-05-15T02:41:50+08:00 +2026/05/15 02:41:50.762, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.20, 66 +2026-05-15T02:41:55+08:00 +2026/05/15 02:41:55.813, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.88, 65 +2026-05-15T02:42:00+08:00 +2026/05/15 02:42:00.871, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 366.02, 66 +2026-05-15T02:42:05+08:00 +2026/05/15 02:42:05.893, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 366.96, 66 +2026-05-15T02:42:10+08:00 +2026/05/15 02:42:10.917, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.17, 65 +2026-05-15T02:42:15+08:00 +2026/05/15 02:42:15.969, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.82, 65 +2026-05-15T02:42:20+08:00 +2026/05/15 02:42:20.994, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.55, 65 +2026-05-15T02:42:26+08:00 +2026/05/15 02:42:26.016, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.61, 66 +2026-05-15T02:42:31+08:00 +2026/05/15 02:42:31.040, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.12, 66 +2026-05-15T02:42:36+08:00 +2026/05/15 02:42:36.065, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.39, 65 +2026-05-15T02:42:41+08:00 +2026/05/15 02:42:41.089, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.80, 65 +2026-05-15T02:42:46+08:00 +2026/05/15 02:42:46.113, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.10, 66 +2026-05-15T02:42:51+08:00 +2026/05/15 02:42:51.135, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.70, 65 +2026-05-15T02:42:56+08:00 +2026/05/15 02:42:56.158, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.90, 66 +2026-05-15T02:43:01+08:00 +2026/05/15 02:43:01.186, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.55, 66 +2026-05-15T02:43:06+08:00 +2026/05/15 02:43:06.210, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.69, 65 +2026-05-15T02:43:11+08:00 +2026/05/15 02:43:11.234, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.44, 66 +2026-05-15T02:43:16+08:00 +2026/05/15 02:43:16.261, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.77, 65 +2026-05-15T02:43:21+08:00 +2026/05/15 02:43:21.287, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.15, 66 +2026-05-15T02:43:26+08:00 +2026/05/15 02:43:26.311, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.10, 65 +2026-05-15T02:43:31+08:00 +2026/05/15 02:43:31.337, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.34, 65 +2026-05-15T02:43:36+08:00 +2026/05/15 02:43:36.361, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.74, 64 +2026-05-15T02:43:41+08:00 +2026/05/15 02:43:41.385, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.95, 66 +2026-05-15T02:43:46+08:00 +2026/05/15 02:43:46.409, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.22, 66 +2026-05-15T02:43:51+08:00 +2026/05/15 02:43:51.434, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.74, 66 +2026-05-15T02:43:56+08:00 +2026/05/15 02:43:56.484, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.89, 66 +2026-05-15T02:44:01+08:00 +2026/05/15 02:44:01.508, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.60, 65 +2026-05-15T02:44:06+08:00 +2026/05/15 02:44:06.559, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.45, 65 +2026-05-15T02:44:11+08:00 +2026/05/15 02:44:11.617, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.49, 66 +2026-05-15T02:44:16+08:00 +2026/05/15 02:44:16.640, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.44, 66 +2026-05-15T02:44:21+08:00 +2026/05/15 02:44:21.663, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.84, 66 +2026-05-15T02:44:26+08:00 +2026/05/15 02:44:26.705, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.76, 65 +2026-05-15T02:44:31+08:00 +2026/05/15 02:44:31.781, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.55, 66 +2026-05-15T02:44:36+08:00 +2026/05/15 02:44:36.804, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.75, 65 +2026-05-15T02:44:41+08:00 +2026/05/15 02:44:41.880, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.85, 66 +2026-05-15T02:44:46+08:00 +2026/05/15 02:44:46.904, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.50, 66 +2026-05-15T02:44:51+08:00 +2026/05/15 02:44:51.928, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.29, 65 +2026-05-15T02:44:56+08:00 +2026/05/15 02:44:56.988, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.73, 66 +2026-05-15T02:45:01+08:00 +2026/05/15 02:45:02.012, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.34, 66 +2026-05-15T02:45:07+08:00 +2026/05/15 02:45:07.053, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.95, 65 +2026-05-15T02:45:12+08:00 +2026/05/15 02:45:12.096, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.76, 65 +2026-05-15T02:45:17+08:00 +2026/05/15 02:45:17.136, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.45, 65 +2026-05-15T02:45:22+08:00 +2026/05/15 02:45:22.160, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.13, 66 +2026-05-15T02:45:27+08:00 +2026/05/15 02:45:27.185, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.73, 66 +2026-05-15T02:45:32+08:00 +2026/05/15 02:45:32.225, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.90, 65 +2026-05-15T02:45:37+08:00 +2026/05/15 02:45:37.249, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.65, 66 +2026-05-15T02:45:42+08:00 +2026/05/15 02:45:42.276, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.82, 66 +2026-05-15T02:45:47+08:00 +2026/05/15 02:45:47.301, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.32, 65 +2026-05-15T02:45:52+08:00 +2026/05/15 02:45:52.327, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.85, 66 +2026-05-15T02:45:57+08:00 +2026/05/15 02:45:57.351, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.35, 66 +2026-05-15T02:46:02+08:00 +2026/05/15 02:46:02.375, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.58, 65 +2026-05-15T02:46:07+08:00 +2026/05/15 02:46:07.401, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 65 +2026-05-15T02:46:12+08:00 +2026/05/15 02:46:12.425, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.41, 65 +2026-05-15T02:46:17+08:00 +2026/05/15 02:46:17.448, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.31, 66 +2026-05-15T02:46:22+08:00 +2026/05/15 02:46:22.473, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.33, 65 +2026-05-15T02:46:27+08:00 +2026/05/15 02:46:27.497, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.95, 64 +2026-05-15T02:46:32+08:00 +2026/05/15 02:46:32.521, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.09, 66 +2026-05-15T02:46:37+08:00 +2026/05/15 02:46:37.544, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.15, 66 +2026-05-15T02:46:42+08:00 +2026/05/15 02:46:42.567, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 366.43, 66 +2026-05-15T02:46:47+08:00 +2026/05/15 02:46:47.591, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.42, 66 +2026-05-15T02:46:52+08:00 +2026/05/15 02:46:52.616, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.24, 66 +2026-05-15T02:46:57+08:00 +2026/05/15 02:46:57.643, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.79, 65 +2026-05-15T02:47:02+08:00 +2026/05/15 02:47:02.666, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.79, 65 +2026-05-15T02:47:07+08:00 +2026/05/15 02:47:07.690, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.73, 66 +2026-05-15T02:47:12+08:00 +2026/05/15 02:47:12.714, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.81, 66 +2026-05-15T02:47:17+08:00 +2026/05/15 02:47:17.743, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.82, 65 +2026-05-15T02:47:22+08:00 +2026/05/15 02:47:22.769, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.83, 65 +2026-05-15T02:47:27+08:00 +2026/05/15 02:47:27.798, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.82, 66 +2026-05-15T02:47:32+08:00 +2026/05/15 02:47:32.821, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 366.31, 66 +2026-05-15T02:47:37+08:00 +2026/05/15 02:47:37.848, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 230.89, 59 +2026-05-15T02:47:42+08:00 +2026/05/15 02:47:42.871, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 66 +2026-05-15T02:47:47+08:00 +2026/05/15 02:47:47.895, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.65, 65 +2026-05-15T02:47:52+08:00 +2026/05/15 02:47:52.919, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.03, 65 +2026-05-15T02:47:57+08:00 +2026/05/15 02:47:57.943, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.44, 66 +2026-05-15T02:48:02+08:00 +2026/05/15 02:48:02.970, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.55, 65 +2026-05-15T02:48:07+08:00 +2026/05/15 02:48:08.024, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.83, 66 +2026-05-15T02:48:13+08:00 +2026/05/15 02:48:13.048, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.92, 66 +2026-05-15T02:48:18+08:00 +2026/05/15 02:48:18.088, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.83, 66 +2026-05-15T02:48:23+08:00 +2026/05/15 02:48:23.112, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.45, 66 +2026-05-15T02:48:28+08:00 +2026/05/15 02:48:28.136, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.10, 65 +2026-05-15T02:48:33+08:00 +2026/05/15 02:48:33.161, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.95, 65 +2026-05-15T02:48:38+08:00 +2026/05/15 02:48:38.186, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.41, 66 +2026-05-15T02:48:43+08:00 +2026/05/15 02:48:43.210, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.78, 66 +2026-05-15T02:48:48+08:00 +2026/05/15 02:48:48.233, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.54, 65 +2026-05-15T02:48:53+08:00 +2026/05/15 02:48:53.257, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 365.36, 66 +2026-05-15T02:48:58+08:00 +2026/05/15 02:48:58.281, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.17, 65 +2026-05-15T02:49:03+08:00 +2026/05/15 02:49:03.307, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.83, 65 +2026-05-15T02:49:08+08:00 +2026/05/15 02:49:08.335, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.05, 64 +2026-05-15T02:49:13+08:00 +2026/05/15 02:49:13.358, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.47, 65 +2026-05-15T02:49:18+08:00 +2026/05/15 02:49:18.384, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.22, 66 +2026-05-15T02:49:23+08:00 +2026/05/15 02:49:23.408, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.56, 66 +2026-05-15T02:49:28+08:00 +2026/05/15 02:49:28.431, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.36, 66 +2026-05-15T02:49:33+08:00 +2026/05/15 02:49:33.454, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.64, 65 +2026-05-15T02:49:38+08:00 +2026/05/15 02:49:38.481, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 260.59, 65 +2026-05-15T02:49:43+08:00 +2026/05/15 02:49:43.505, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.57, 65 +2026-05-15T02:49:48+08:00 +2026/05/15 02:49:48.528, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 366.80, 66 +2026-05-15T02:49:53+08:00 +2026/05/15 02:49:53.587, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.16, 66 +2026-05-15T02:49:58+08:00 +2026/05/15 02:49:58.612, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.51, 65 +2026-05-15T02:50:03+08:00 +2026/05/15 02:50:03.635, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.22, 66 +2026-05-15T02:50:08+08:00 +2026/05/15 02:50:08.678, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.45, 66 +2026-05-15T02:50:13+08:00 +2026/05/15 02:50:13.702, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.66, 66 +2026-05-15T02:50:18+08:00 +2026/05/15 02:50:18.766, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.14, 65 +2026-05-15T02:50:23+08:00 +2026/05/15 02:50:23.824, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.67, 65 +2026-05-15T02:50:28+08:00 +2026/05/15 02:50:28.846, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.57, 65 +2026-05-15T02:50:33+08:00 +2026/05/15 02:50:33.868, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.53, 66 +2026-05-15T02:50:38+08:00 +2026/05/15 02:50:38.891, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.82, 66 +2026-05-15T02:50:43+08:00 +2026/05/15 02:50:43.917, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.50, 66 +2026-05-15T02:50:48+08:00 +2026/05/15 02:50:48.974, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.99, 66 +2026-05-15T02:50:53+08:00 +2026/05/15 02:50:53.998, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 265.13, 65 +2026-05-15T02:50:59+08:00 +2026/05/15 02:50:59.022, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.29, 65 +2026-05-15T02:51:04+08:00 +2026/05/15 02:51:04.047, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.94, 66 +2026-05-15T02:51:09+08:00 +2026/05/15 02:51:09.070, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.07, 66 +2026-05-15T02:51:14+08:00 +2026/05/15 02:51:14.111, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.85, 66 +2026-05-15T02:51:19+08:00 +2026/05/15 02:51:19.135, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.66, 66 +2026-05-15T02:51:24+08:00 +2026/05/15 02:51:24.157, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.30, 65 +2026-05-15T02:51:29+08:00 +2026/05/15 02:51:29.183, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.14, 66 +2026-05-15T02:51:34+08:00 +2026/05/15 02:51:34.206, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.87, 65 +2026-05-15T02:51:39+08:00 +2026/05/15 02:51:39.232, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.85, 65 +2026-05-15T02:51:44+08:00 +2026/05/15 02:51:44.258, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.11, 66 +2026-05-15T02:51:49+08:00 +2026/05/15 02:51:49.285, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.82, 65 +2026-05-15T02:51:54+08:00 +2026/05/15 02:51:54.309, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.81, 65 +2026-05-15T02:51:59+08:00 +2026/05/15 02:51:59.333, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.10, 67 +2026-05-15T02:52:04+08:00 +2026/05/15 02:52:04.356, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.57, 66 +2026-05-15T02:52:09+08:00 +2026/05/15 02:52:09.379, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 336.07, 60 +2026-05-15T02:52:14+08:00 +2026/05/15 02:52:14.403, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.69, 66 +2026-05-15T02:52:19+08:00 +2026/05/15 02:52:19.426, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.16, 65 +2026-05-15T02:52:24+08:00 +2026/05/15 02:52:24.448, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.84, 66 +2026-05-15T02:52:29+08:00 +2026/05/15 02:52:29.471, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.43, 66 +2026-05-15T02:52:34+08:00 +2026/05/15 02:52:34.494, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.72, 66 +2026-05-15T02:52:39+08:00 +2026/05/15 02:52:39.518, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.01, 66 +2026-05-15T02:52:44+08:00 +2026/05/15 02:52:44.544, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.73, 66 +2026-05-15T02:52:49+08:00 +2026/05/15 02:52:49.569, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.34, 67 +2026-05-15T02:52:54+08:00 +2026/05/15 02:52:54.594, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.36, 66 +2026-05-15T02:52:59+08:00 +2026/05/15 02:52:59.621, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 202.73, 65 +2026-05-15T02:53:04+08:00 +2026/05/15 02:53:04.648, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.01, 65 +2026-05-15T02:53:09+08:00 +2026/05/15 02:53:09.673, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.00, 66 +2026-05-15T02:53:14+08:00 +2026/05/15 02:53:14.697, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.53, 65 +2026-05-15T02:53:19+08:00 +2026/05/15 02:53:19.721, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.27, 65 +2026-05-15T02:53:24+08:00 +2026/05/15 02:53:24.746, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 301.06, 59 +2026-05-15T02:53:29+08:00 +2026/05/15 02:53:29.770, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.84, 65 +2026-05-15T02:53:34+08:00 +2026/05/15 02:53:34.794, NVIDIA GeForce RTX 5090, 53, 26, 9607, 32607, 356.85, 64 +2026-05-15T02:53:39+08:00 +2026/05/15 02:53:39.822, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.48, 65 +2026-05-15T02:53:44+08:00 +2026/05/15 02:53:44.847, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.66, 66 +2026-05-15T02:53:49+08:00 +2026/05/15 02:53:49.872, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 366.56, 66 +2026-05-15T02:53:54+08:00 +2026/05/15 02:53:54.895, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.71, 65 +2026-05-15T02:53:59+08:00 +2026/05/15 02:53:59.937, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.39, 65 +2026-05-15T02:54:04+08:00 +2026/05/15 02:54:04.961, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.89, 66 +2026-05-15T02:54:09+08:00 +2026/05/15 02:54:09.986, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 357.91, 66 +2026-05-15T02:54:14+08:00 +2026/05/15 02:54:15.010, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.43, 66 +2026-05-15T02:54:20+08:00 +2026/05/15 02:54:20.034, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.60, 65 +2026-05-15T02:54:25+08:00 +2026/05/15 02:54:25.059, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 355.65, 66 +2026-05-15T02:54:30+08:00 +2026/05/15 02:54:30.084, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.71, 66 +2026-05-15T02:54:35+08:00 +2026/05/15 02:54:35.109, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 215.23, 63 +2026-05-15T02:54:40+08:00 +2026/05/15 02:54:40.137, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.20, 65 +2026-05-15T02:54:45+08:00 +2026/05/15 02:54:45.160, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.73, 66 +2026-05-15T02:54:50+08:00 +2026/05/15 02:54:50.184, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.10, 66 +2026-05-15T02:54:55+08:00 +2026/05/15 02:54:55.208, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.07, 66 +2026-05-15T02:55:00+08:00 +2026/05/15 02:55:00.232, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.61, 66 +2026-05-15T02:55:05+08:00 +2026/05/15 02:55:05.256, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.62, 66 +2026-05-15T02:55:10+08:00 +2026/05/15 02:55:10.279, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.89, 65 +2026-05-15T02:55:15+08:00 +2026/05/15 02:55:15.301, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.84, 66 +2026-05-15T02:55:20+08:00 +2026/05/15 02:55:20.325, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.55, 65 +2026-05-15T02:55:25+08:00 +2026/05/15 02:55:25.350, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.70, 65 +2026-05-15T02:55:30+08:00 +2026/05/15 02:55:30.372, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.36, 65 +2026-05-15T02:55:35+08:00 +2026/05/15 02:55:35.395, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 200.62, 64 +2026-05-15T02:55:40+08:00 +2026/05/15 02:55:40.418, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.08, 65 +2026-05-15T02:55:45+08:00 +2026/05/15 02:55:45.444, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.57, 66 +2026-05-15T02:55:50+08:00 +2026/05/15 02:55:50.517, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.61, 66 +2026-05-15T02:55:55+08:00 +2026/05/15 02:55:55.541, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.93, 66 +2026-05-15T02:56:00+08:00 +2026/05/15 02:56:00.584, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.59, 66 +2026-05-15T02:56:05+08:00 +2026/05/15 02:56:05.646, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.01, 66 +2026-05-15T02:56:10+08:00 +2026/05/15 02:56:10.670, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.59, 67 +2026-05-15T02:56:15+08:00 +2026/05/15 02:56:15.744, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.20, 66 +2026-05-15T02:56:20+08:00 +2026/05/15 02:56:20.768, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.42, 67 +2026-05-15T02:56:25+08:00 +2026/05/15 02:56:25.839, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.57, 66 +2026-05-15T02:56:30+08:00 +2026/05/15 02:56:30.862, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.72, 66 +2026-05-15T02:56:35+08:00 +2026/05/15 02:56:35.903, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.55, 66 +2026-05-15T02:56:40+08:00 +2026/05/15 02:56:40.959, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.23, 65 +2026-05-15T02:56:45+08:00 +2026/05/15 02:56:45.982, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.37, 66 +2026-05-15T02:56:51+08:00 +2026/05/15 02:56:51.022, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 200.77, 64 +2026-05-15T02:56:56+08:00 +2026/05/15 02:56:56.085, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.46, 66 +2026-05-15T02:57:01+08:00 +2026/05/15 02:57:01.126, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 65 +2026-05-15T02:57:06+08:00 +2026/05/15 02:57:06.151, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.33, 66 +2026-05-15T02:57:11+08:00 +2026/05/15 02:57:11.174, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.97, 65 +2026-05-15T02:57:16+08:00 +2026/05/15 02:57:16.198, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.18, 65 +2026-05-15T02:57:21+08:00 +2026/05/15 02:57:21.221, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.12, 66 +2026-05-15T02:57:26+08:00 +2026/05/15 02:57:26.245, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.14, 66 +2026-05-15T02:57:31+08:00 +2026/05/15 02:57:31.268, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.60, 64 +2026-05-15T02:57:36+08:00 +2026/05/15 02:57:36.294, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.08, 66 +2026-05-15T02:57:41+08:00 +2026/05/15 02:57:41.318, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.18, 66 +2026-05-15T02:57:46+08:00 +2026/05/15 02:57:46.346, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.59, 66 +2026-05-15T02:57:51+08:00 +2026/05/15 02:57:51.374, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.51, 65 +2026-05-15T02:57:56+08:00 +2026/05/15 02:57:56.398, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.05, 65 +2026-05-15T02:58:01+08:00 +2026/05/15 02:58:01.424, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.21, 65 +2026-05-15T02:58:06+08:00 +2026/05/15 02:58:06.451, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.36, 65 +2026-05-15T02:58:11+08:00 +2026/05/15 02:58:11.476, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.06, 65 +2026-05-15T02:58:16+08:00 +2026/05/15 02:58:16.518, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.93, 65 +2026-05-15T02:58:21+08:00 +2026/05/15 02:58:21.595, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.13, 65 +2026-05-15T02:58:26+08:00 +2026/05/15 02:58:26.622, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.56, 65 +2026-05-15T02:58:31+08:00 +2026/05/15 02:58:31.645, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.80, 66 +2026-05-15T02:58:36+08:00 +2026/05/15 02:58:36.669, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.37, 66 +2026-05-15T02:58:41+08:00 +2026/05/15 02:58:41.719, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.44, 65 +2026-05-15T02:58:46+08:00 +2026/05/15 02:58:46.744, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.34, 65 +2026-05-15T02:58:51+08:00 +2026/05/15 02:58:51.797, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.87, 66 +2026-05-15T02:58:56+08:00 +2026/05/15 02:58:56.822, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.24, 65 +2026-05-15T02:59:01+08:00 +2026/05/15 02:59:01.845, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.55, 67 +2026-05-15T02:59:06+08:00 +2026/05/15 02:59:06.887, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.42, 66 +2026-05-15T02:59:11+08:00 +2026/05/15 02:59:11.911, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 261.86, 64 +2026-05-15T02:59:16+08:00 +2026/05/15 02:59:16.937, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.28, 66 +2026-05-15T02:59:21+08:00 +2026/05/15 02:59:21.977, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.06, 65 +2026-05-15T02:59:27+08:00 +2026/05/15 02:59:27.031, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.94, 66 +2026-05-15T02:59:32+08:00 +2026/05/15 02:59:32.055, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.23, 66 +2026-05-15T02:59:37+08:00 +2026/05/15 02:59:37.080, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.18, 66 +2026-05-15T02:59:42+08:00 +2026/05/15 02:59:42.103, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.15, 66 +2026-05-15T02:59:47+08:00 +2026/05/15 02:59:47.129, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.97, 65 +2026-05-15T02:59:52+08:00 +2026/05/15 02:59:52.151, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.20, 66 +2026-05-15T02:59:57+08:00 +2026/05/15 02:59:57.193, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.07, 65 +2026-05-15T03:00:02+08:00 +2026/05/15 03:00:02.217, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.34, 65 +2026-05-15T03:00:07+08:00 +2026/05/15 03:00:07.242, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.59, 66 +2026-05-15T03:00:12+08:00 +2026/05/15 03:00:12.266, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.03, 65 +2026-05-15T03:00:17+08:00 +2026/05/15 03:00:17.290, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.17, 66 +2026-05-15T03:00:22+08:00 +2026/05/15 03:00:22.315, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.83, 66 +2026-05-15T03:00:27+08:00 +2026/05/15 03:00:27.337, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 298.15, 66 +2026-05-15T03:00:32+08:00 +2026/05/15 03:00:32.361, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.98, 65 +2026-05-15T03:00:37+08:00 +2026/05/15 03:00:37.389, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.10, 65 +2026-05-15T03:00:42+08:00 +2026/05/15 03:00:42.412, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.08, 66 +2026-05-15T03:00:47+08:00 +2026/05/15 03:00:47.436, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.90, 66 +2026-05-15T03:00:52+08:00 +2026/05/15 03:00:52.459, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.99, 66 +2026-05-15T03:00:57+08:00 +2026/05/15 03:00:57.482, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 65 +2026-05-15T03:01:02+08:00 +2026/05/15 03:01:02.505, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.85, 66 +2026-05-15T03:01:07+08:00 +2026/05/15 03:01:07.548, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.10, 65 +2026-05-15T03:01:12+08:00 +2026/05/15 03:01:12.604, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.29, 66 +2026-05-15T03:01:17+08:00 +2026/05/15 03:01:17.626, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.43, 65 +2026-05-15T03:01:22+08:00 +2026/05/15 03:01:22.679, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.94, 65 +2026-05-15T03:01:27+08:00 +2026/05/15 03:01:27.703, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.89, 65 +2026-05-15T03:01:32+08:00 +2026/05/15 03:01:32.726, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.93, 66 +2026-05-15T03:01:37+08:00 +2026/05/15 03:01:37.776, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.14, 65 +2026-05-15T03:01:42+08:00 +2026/05/15 03:01:42.801, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 341.85, 64 +2026-05-15T03:01:47+08:00 +2026/05/15 03:01:47.853, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.44, 66 +2026-05-15T03:01:52+08:00 +2026/05/15 03:01:52.879, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.16, 66 +2026-05-15T03:01:57+08:00 +2026/05/15 03:01:57.918, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.38, 66 +2026-05-15T03:02:02+08:00 +2026/05/15 03:02:02.960, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.37, 66 +2026-05-15T03:02:07+08:00 +2026/05/15 03:02:08.033, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.93, 66 +2026-05-15T03:02:13+08:00 +2026/05/15 03:02:13.056, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.00, 65 +2026-05-15T03:02:18+08:00 +2026/05/15 03:02:18.098, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.66, 66 +2026-05-15T03:02:23+08:00 +2026/05/15 03:02:23.123, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.01, 65 +2026-05-15T03:02:28+08:00 +2026/05/15 03:02:28.147, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.40, 65 +2026-05-15T03:02:33+08:00 +2026/05/15 03:02:33.170, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.31, 65 +2026-05-15T03:02:38+08:00 +2026/05/15 03:02:38.194, NVIDIA GeForce RTX 5090, 66, 31, 9607, 32607, 356.36, 66 +2026-05-15T03:02:43+08:00 +2026/05/15 03:02:43.218, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.91, 66 +2026-05-15T03:02:48+08:00 +2026/05/15 03:02:48.244, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.64, 66 +2026-05-15T03:02:53+08:00 +2026/05/15 03:02:53.269, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.33, 66 +2026-05-15T03:02:58+08:00 +2026/05/15 03:02:58.292, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 293.41, 64 +2026-05-15T03:03:03+08:00 +2026/05/15 03:03:03.316, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 363.59, 65 +2026-05-15T03:03:08+08:00 +2026/05/15 03:03:08.338, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.13, 65 +2026-05-15T03:03:13+08:00 +2026/05/15 03:03:13.380, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.70, 65 +2026-05-15T03:03:18+08:00 +2026/05/15 03:03:18.421, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.59, 66 +2026-05-15T03:03:23+08:00 +2026/05/15 03:03:23.464, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.69, 66 +2026-05-15T03:03:28+08:00 +2026/05/15 03:03:28.506, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.21, 65 +2026-05-15T03:03:33+08:00 +2026/05/15 03:03:33.583, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.34, 65 +2026-05-15T03:03:38+08:00 +2026/05/15 03:03:38.630, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 366.08, 65 +2026-05-15T03:03:43+08:00 +2026/05/15 03:03:43.654, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.66, 64 +2026-05-15T03:03:48+08:00 +2026/05/15 03:03:48.699, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 65 +2026-05-15T03:03:53+08:00 +2026/05/15 03:03:53.723, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.17, 65 +2026-05-15T03:03:58+08:00 +2026/05/15 03:03:58.748, NVIDIA GeForce RTX 5090, 1, 0, 9607, 32607, 218.42, 59 +2026-05-15T03:04:03+08:00 +2026/05/15 03:04:03.807, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.92, 65 +2026-05-15T03:04:08+08:00 +2026/05/15 03:04:08.851, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.33, 66 +2026-05-15T03:04:13+08:00 +2026/05/15 03:04:13.909, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.89, 65 +2026-05-15T03:04:18+08:00 +2026/05/15 03:04:18.933, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.38, 65 +2026-05-15T03:04:23+08:00 +2026/05/15 03:04:23.976, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.64, 65 +2026-05-15T03:04:28+08:00 +2026/05/15 03:04:29.003, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.85, 65 +2026-05-15T03:04:34+08:00 +2026/05/15 03:04:34.027, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.61, 66 +2026-05-15T03:04:39+08:00 +2026/05/15 03:04:39.052, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.38, 65 +2026-05-15T03:04:44+08:00 +2026/05/15 03:04:44.101, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.91, 64 +2026-05-15T03:04:49+08:00 +2026/05/15 03:04:49.126, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.08, 66 +2026-05-15T03:04:54+08:00 +2026/05/15 03:04:54.150, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.26, 65 +2026-05-15T03:04:59+08:00 +2026/05/15 03:04:59.194, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.91, 65 +2026-05-15T03:05:04+08:00 +2026/05/15 03:05:04.216, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.31, 66 +2026-05-15T03:05:09+08:00 +2026/05/15 03:05:09.240, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.86, 65 +2026-05-15T03:05:14+08:00 +2026/05/15 03:05:14.284, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 366.59, 65 +2026-05-15T03:05:19+08:00 +2026/05/15 03:05:19.308, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.25, 65 +2026-05-15T03:05:24+08:00 +2026/05/15 03:05:24.337, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.88, 65 +2026-05-15T03:05:29+08:00 +2026/05/15 03:05:29.378, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.52, 65 +2026-05-15T03:05:34+08:00 +2026/05/15 03:05:34.426, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.41, 66 +2026-05-15T03:05:39+08:00 +2026/05/15 03:05:39.447, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.55, 65 +2026-05-15T03:05:44+08:00 +2026/05/15 03:05:44.472, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.70, 66 +2026-05-15T03:05:49+08:00 +2026/05/15 03:05:49.496, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.59, 66 +2026-05-15T03:05:54+08:00 +2026/05/15 03:05:54.521, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.14, 65 +2026-05-15T03:05:59+08:00 +2026/05/15 03:05:59.549, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.26, 66 +2026-05-15T03:06:04+08:00 +2026/05/15 03:06:04.573, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.51, 66 +2026-05-15T03:06:09+08:00 +2026/05/15 03:06:09.599, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.37, 66 +2026-05-15T03:06:14+08:00 +2026/05/15 03:06:14.623, NVIDIA GeForce RTX 5090, 35, 12, 9607, 32607, 350.60, 62 +2026-05-15T03:06:19+08:00 +2026/05/15 03:06:19.645, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 335.92, 61 +2026-05-15T03:06:24+08:00 +2026/05/15 03:06:24.712, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.38, 65 +2026-05-15T03:06:29+08:00 +2026/05/15 03:06:29.737, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.96, 65 +2026-05-15T03:06:34+08:00 +2026/05/15 03:06:34.791, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.48, 64 +2026-05-15T03:06:39+08:00 +2026/05/15 03:06:39.815, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.27, 66 +2026-05-15T03:06:44+08:00 +2026/05/15 03:06:44.860, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.93, 66 +2026-05-15T03:06:49+08:00 +2026/05/15 03:06:49.884, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.10, 66 +2026-05-15T03:06:54+08:00 +2026/05/15 03:06:54.914, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.46, 65 +2026-05-15T03:06:59+08:00 +2026/05/15 03:06:59.943, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.91, 67 +2026-05-15T03:07:04+08:00 +2026/05/15 03:07:04.967, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.32, 66 +2026-05-15T03:07:09+08:00 +2026/05/15 03:07:09.994, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.62, 65 +2026-05-15T03:07:15+08:00 +2026/05/15 03:07:15.020, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.92, 66 +2026-05-15T03:07:20+08:00 +2026/05/15 03:07:20.043, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 65 +2026-05-15T03:07:25+08:00 +2026/05/15 03:07:25.067, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.74, 66 +2026-05-15T03:07:30+08:00 +2026/05/15 03:07:30.090, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 350.48, 65 +2026-05-15T03:07:35+08:00 +2026/05/15 03:07:35.114, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.32, 65 +2026-05-15T03:07:40+08:00 +2026/05/15 03:07:40.137, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.13, 65 +2026-05-15T03:07:45+08:00 +2026/05/15 03:07:45.162, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.63, 65 +2026-05-15T03:07:50+08:00 +2026/05/15 03:07:50.186, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.02, 65 +2026-05-15T03:07:55+08:00 +2026/05/15 03:07:55.210, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.52, 65 +2026-05-15T03:08:00+08:00 +2026/05/15 03:08:00.233, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 65 +2026-05-15T03:08:05+08:00 +2026/05/15 03:08:05.259, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.97, 66 +2026-05-15T03:08:10+08:00 +2026/05/15 03:08:10.282, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.11, 65 +2026-05-15T03:08:15+08:00 +2026/05/15 03:08:15.306, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.41, 65 +2026-05-15T03:08:20+08:00 +2026/05/15 03:08:20.333, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.60, 65 +2026-05-15T03:08:25+08:00 +2026/05/15 03:08:25.359, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.24, 64 +2026-05-15T03:08:30+08:00 +2026/05/15 03:08:30.381, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.07, 65 +2026-05-15T03:08:35+08:00 +2026/05/15 03:08:35.404, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.66, 65 +2026-05-15T03:08:40+08:00 +2026/05/15 03:08:40.425, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.07, 65 +2026-05-15T03:08:45+08:00 +2026/05/15 03:08:45.450, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 289.46, 60 +2026-05-15T03:08:50+08:00 +2026/05/15 03:08:50.471, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.79, 65 +2026-05-15T03:08:55+08:00 +2026/05/15 03:08:55.496, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.30, 66 +2026-05-15T03:09:00+08:00 +2026/05/15 03:09:00.518, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 66 +2026-05-15T03:09:05+08:00 +2026/05/15 03:09:05.541, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.87, 65 +2026-05-15T03:09:10+08:00 +2026/05/15 03:09:10.565, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.74, 65 +2026-05-15T03:09:15+08:00 +2026/05/15 03:09:15.590, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.62, 65 +2026-05-15T03:09:20+08:00 +2026/05/15 03:09:20.614, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.72, 66 +2026-05-15T03:09:25+08:00 +2026/05/15 03:09:25.639, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.55, 66 +2026-05-15T03:09:30+08:00 +2026/05/15 03:09:30.663, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.88, 66 +2026-05-15T03:09:35+08:00 +2026/05/15 03:09:35.685, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.82, 66 +2026-05-15T03:09:40+08:00 +2026/05/15 03:09:40.709, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.50, 66 +2026-05-15T03:09:45+08:00 +2026/05/15 03:09:45.732, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.28, 65 +2026-05-15T03:09:50+08:00 +2026/05/15 03:09:50.756, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 360.51, 66 +2026-05-15T03:09:55+08:00 +2026/05/15 03:09:55.780, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.31, 66 +2026-05-15T03:10:00+08:00 +2026/05/15 03:10:00.802, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.53, 66 +2026-05-15T03:10:05+08:00 +2026/05/15 03:10:05.826, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.58, 66 +2026-05-15T03:10:10+08:00 +2026/05/15 03:10:10.851, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.50, 66 +2026-05-15T03:10:15+08:00 +2026/05/15 03:10:15.874, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.42, 66 +2026-05-15T03:10:20+08:00 +2026/05/15 03:10:20.897, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.92, 65 +2026-05-15T03:10:25+08:00 +2026/05/15 03:10:25.920, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.35, 65 +2026-05-15T03:10:30+08:00 +2026/05/15 03:10:30.945, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.70, 66 +2026-05-15T03:10:35+08:00 +2026/05/15 03:10:35.968, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.82, 65 +2026-05-15T03:10:40+08:00 +2026/05/15 03:10:40.995, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.02, 66 +2026-05-15T03:10:46+08:00 +2026/05/15 03:10:46.020, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.34, 64 +2026-05-15T03:10:51+08:00 +2026/05/15 03:10:51.045, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.56, 66 +2026-05-15T03:10:56+08:00 +2026/05/15 03:10:56.073, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.76, 66 +2026-05-15T03:11:01+08:00 +2026/05/15 03:11:01.096, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.31, 65 +2026-05-15T03:11:06+08:00 +2026/05/15 03:11:06.120, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.65, 65 +2026-05-15T03:11:11+08:00 +2026/05/15 03:11:11.143, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.92, 66 +2026-05-15T03:11:16+08:00 +2026/05/15 03:11:16.170, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.18, 66 +2026-05-15T03:11:21+08:00 +2026/05/15 03:11:21.193, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.64, 65 +2026-05-15T03:11:26+08:00 +2026/05/15 03:11:26.216, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.67, 66 +2026-05-15T03:11:31+08:00 +2026/05/15 03:11:31.240, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.84, 65 +2026-05-15T03:11:36+08:00 +2026/05/15 03:11:36.263, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.93, 65 +2026-05-15T03:11:41+08:00 +2026/05/15 03:11:41.290, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 65 +2026-05-15T03:11:46+08:00 +2026/05/15 03:11:46.314, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.33, 64 +2026-05-15T03:11:51+08:00 +2026/05/15 03:11:51.342, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.44, 64 +2026-05-15T03:11:56+08:00 +2026/05/15 03:11:56.368, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.15, 65 +2026-05-15T03:12:01+08:00 +2026/05/15 03:12:01.391, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.21, 66 +2026-05-15T03:12:06+08:00 +2026/05/15 03:12:06.414, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 363.61, 65 +2026-05-15T03:12:11+08:00 +2026/05/15 03:12:11.438, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 364.98, 66 +2026-05-15T03:12:16+08:00 +2026/05/15 03:12:16.464, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 364.35, 66 +2026-05-15T03:12:21+08:00 +2026/05/15 03:12:21.489, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 364.57, 66 +2026-05-15T03:12:26+08:00 +2026/05/15 03:12:26.515, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.96, 65 +2026-05-15T03:12:31+08:00 +2026/05/15 03:12:31.539, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 365.17, 66 +2026-05-15T03:12:36+08:00 +2026/05/15 03:12:36.565, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.24, 66 +2026-05-15T03:12:41+08:00 +2026/05/15 03:12:41.589, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.21, 65 +2026-05-15T03:12:46+08:00 +2026/05/15 03:12:46.615, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.66, 65 +2026-05-15T03:12:51+08:00 +2026/05/15 03:12:51.638, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.30, 66 +2026-05-15T03:12:56+08:00 +2026/05/15 03:12:56.662, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.87, 66 +2026-05-15T03:13:01+08:00 +2026/05/15 03:13:01.686, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.55, 66 +2026-05-15T03:13:06+08:00 +2026/05/15 03:13:06.711, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.50, 66 +2026-05-15T03:13:11+08:00 +2026/05/15 03:13:11.734, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.48, 66 +2026-05-15T03:13:16+08:00 +2026/05/15 03:13:16.763, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 247.07, 64 +2026-05-15T03:13:21+08:00 +2026/05/15 03:13:21.788, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.77, 65 +2026-05-15T03:13:26+08:00 +2026/05/15 03:13:26.812, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.94, 65 +2026-05-15T03:13:31+08:00 +2026/05/15 03:13:31.838, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 65 +2026-05-15T03:13:36+08:00 +2026/05/15 03:13:36.861, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.50, 65 +2026-05-15T03:13:41+08:00 +2026/05/15 03:13:41.885, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.36, 64 +2026-05-15T03:13:46+08:00 +2026/05/15 03:13:46.909, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 65 +2026-05-15T03:13:51+08:00 +2026/05/15 03:13:51.936, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.00, 65 +2026-05-15T03:13:56+08:00 +2026/05/15 03:13:56.959, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.74, 66 +2026-05-15T03:14:01+08:00 +2026/05/15 03:14:01.984, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.36, 66 +2026-05-15T03:14:06+08:00 +2026/05/15 03:14:07.008, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.81, 66 +2026-05-15T03:14:12+08:00 +2026/05/15 03:14:12.037, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.69, 66 +2026-05-15T03:14:17+08:00 +2026/05/15 03:14:17.060, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.06, 66 +2026-05-15T03:14:22+08:00 +2026/05/15 03:14:22.086, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.51, 66 +2026-05-15T03:14:27+08:00 +2026/05/15 03:14:27.109, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.82, 66 +2026-05-15T03:14:32+08:00 +2026/05/15 03:14:32.136, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.25, 65 +2026-05-15T03:14:37+08:00 +2026/05/15 03:14:37.160, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 65 +2026-05-15T03:14:42+08:00 +2026/05/15 03:14:42.186, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.27, 66 +2026-05-15T03:14:47+08:00 +2026/05/15 03:14:47.210, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.72, 66 +2026-05-15T03:14:52+08:00 +2026/05/15 03:14:52.234, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.41, 65 +2026-05-15T03:14:57+08:00 +2026/05/15 03:14:57.259, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.25, 65 +2026-05-15T03:15:02+08:00 +2026/05/15 03:15:02.282, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.27, 66 +2026-05-15T03:15:07+08:00 +2026/05/15 03:15:07.306, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 317.52, 61 +2026-05-15T03:15:12+08:00 +2026/05/15 03:15:12.328, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.49, 65 +2026-05-15T03:15:17+08:00 +2026/05/15 03:15:17.353, NVIDIA GeForce RTX 5090, 62, 22, 9607, 32607, 356.57, 66 +2026-05-15T03:15:22+08:00 +2026/05/15 03:15:22.377, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.13, 66 +2026-05-15T03:15:27+08:00 +2026/05/15 03:15:27.402, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.16, 65 +2026-05-15T03:15:32+08:00 +2026/05/15 03:15:32.426, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.89, 66 +2026-05-15T03:15:37+08:00 +2026/05/15 03:15:37.450, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.34, 66 +2026-05-15T03:15:42+08:00 +2026/05/15 03:15:42.474, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.49, 66 +2026-05-15T03:15:47+08:00 +2026/05/15 03:15:47.499, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.12, 65 +2026-05-15T03:15:52+08:00 +2026/05/15 03:15:52.523, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.57, 66 +2026-05-15T03:15:57+08:00 +2026/05/15 03:15:57.547, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.45, 65 +2026-05-15T03:16:02+08:00 +2026/05/15 03:16:02.598, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 365.32, 66 +2026-05-15T03:16:07+08:00 +2026/05/15 03:16:07.622, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.69, 65 +2026-05-15T03:16:12+08:00 +2026/05/15 03:16:12.678, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.98, 65 +2026-05-15T03:16:17+08:00 +2026/05/15 03:16:17.707, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 66 +2026-05-15T03:16:22+08:00 +2026/05/15 03:16:22.732, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.44, 65 +2026-05-15T03:16:27+08:00 +2026/05/15 03:16:27.776, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 366.79, 65 +2026-05-15T03:16:32+08:00 +2026/05/15 03:16:32.800, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.67, 65 +2026-05-15T03:16:37+08:00 +2026/05/15 03:16:37.822, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.07, 64 +2026-05-15T03:16:42+08:00 +2026/05/15 03:16:42.849, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.54, 66 +2026-05-15T03:16:47+08:00 +2026/05/15 03:16:47.876, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 367.29, 65 +2026-05-15T03:16:52+08:00 +2026/05/15 03:16:52.900, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.73, 65 +2026-05-15T03:16:57+08:00 +2026/05/15 03:16:57.923, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.97, 65 +2026-05-15T03:17:02+08:00 +2026/05/15 03:17:02.951, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 258.36, 65 +2026-05-15T03:17:07+08:00 +2026/05/15 03:17:07.972, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.16, 65 +2026-05-15T03:17:12+08:00 +2026/05/15 03:17:12.997, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.43, 65 +2026-05-15T03:17:18+08:00 +2026/05/15 03:17:18.025, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.92, 66 +2026-05-15T03:17:23+08:00 +2026/05/15 03:17:23.051, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.93, 65 +2026-05-15T03:17:28+08:00 +2026/05/15 03:17:28.074, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.90, 66 +2026-05-15T03:17:33+08:00 +2026/05/15 03:17:33.101, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 366.97, 66 +2026-05-15T03:17:38+08:00 +2026/05/15 03:17:38.124, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.60, 66 +2026-05-15T03:17:43+08:00 +2026/05/15 03:17:43.148, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.65, 65 +2026-05-15T03:17:48+08:00 +2026/05/15 03:17:48.171, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.03, 65 +2026-05-15T03:17:53+08:00 +2026/05/15 03:17:53.196, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.46, 66 +2026-05-15T03:17:58+08:00 +2026/05/15 03:17:58.249, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.97, 65 +2026-05-15T03:18:03+08:00 +2026/05/15 03:18:03.273, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.09, 65 +2026-05-15T03:18:08+08:00 +2026/05/15 03:18:08.316, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.94, 66 +2026-05-15T03:18:13+08:00 +2026/05/15 03:18:13.339, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.01, 64 +2026-05-15T03:18:18+08:00 +2026/05/15 03:18:18.364, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 154.80, 64 +2026-05-15T03:18:23+08:00 +2026/05/15 03:18:23.385, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.32, 66 +2026-05-15T03:18:28+08:00 +2026/05/15 03:18:28.408, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.78, 65 +2026-05-15T03:18:33+08:00 +2026/05/15 03:18:33.474, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.69, 65 +2026-05-15T03:18:38+08:00 +2026/05/15 03:18:38.497, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.78, 66 +2026-05-15T03:18:43+08:00 +2026/05/15 03:18:43.521, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 66 +2026-05-15T03:18:48+08:00 +2026/05/15 03:18:48.545, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.18, 65 +2026-05-15T03:18:53+08:00 +2026/05/15 03:18:53.625, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.98, 65 +2026-05-15T03:18:58+08:00 +2026/05/15 03:18:58.646, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.34, 64 +2026-05-15T03:19:03+08:00 +2026/05/15 03:19:03.669, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 65 +2026-05-15T03:19:08+08:00 +2026/05/15 03:19:08.712, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.28, 66 +2026-05-15T03:19:13+08:00 +2026/05/15 03:19:13.743, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.40, 65 +2026-05-15T03:19:18+08:00 +2026/05/15 03:19:18.765, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 262.81, 59 +2026-05-15T03:19:23+08:00 +2026/05/15 03:19:23.812, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.65, 65 +2026-05-15T03:19:28+08:00 +2026/05/15 03:19:28.873, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.98, 66 +2026-05-15T03:19:33+08:00 +2026/05/15 03:19:33.932, NVIDIA GeForce RTX 5090, 5, 2, 9607, 32607, 325.02, 60 +2026-05-15T03:19:38+08:00 +2026/05/15 03:19:38.977, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.54, 65 +2026-05-15T03:19:43+08:00 +2026/05/15 03:19:44.038, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.02, 65 +2026-05-15T03:19:49+08:00 +2026/05/15 03:19:49.076, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.05, 65 +2026-05-15T03:19:54+08:00 +2026/05/15 03:19:54.099, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.22, 65 +2026-05-15T03:19:59+08:00 +2026/05/15 03:19:59.170, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.59, 67 +2026-05-15T03:20:04+08:00 +2026/05/15 03:20:04.195, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.65, 66 +2026-05-15T03:20:09+08:00 +2026/05/15 03:20:09.219, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.31, 65 +2026-05-15T03:20:14+08:00 +2026/05/15 03:20:14.246, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.85, 66 +2026-05-15T03:20:19+08:00 +2026/05/15 03:20:19.270, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.98, 65 +2026-05-15T03:20:24+08:00 +2026/05/15 03:20:24.298, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.62, 65 +2026-05-15T03:20:29+08:00 +2026/05/15 03:20:29.321, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.36, 65 +2026-05-15T03:20:34+08:00 +2026/05/15 03:20:34.345, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.54, 64 +2026-05-15T03:20:39+08:00 +2026/05/15 03:20:39.368, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.68, 65 +2026-05-15T03:20:44+08:00 +2026/05/15 03:20:44.393, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 363.79, 65 +2026-05-15T03:20:49+08:00 +2026/05/15 03:20:49.417, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.71, 66 +2026-05-15T03:20:54+08:00 +2026/05/15 03:20:54.443, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.65, 65 +2026-05-15T03:20:59+08:00 +2026/05/15 03:20:59.467, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.97, 66 +2026-05-15T03:21:04+08:00 +2026/05/15 03:21:04.490, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.75, 65 +2026-05-15T03:21:09+08:00 +2026/05/15 03:21:09.512, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.27, 66 +2026-05-15T03:21:14+08:00 +2026/05/15 03:21:14.536, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.43, 66 +2026-05-15T03:21:19+08:00 +2026/05/15 03:21:19.559, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.27, 65 +2026-05-15T03:21:24+08:00 +2026/05/15 03:21:24.584, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.08, 65 +2026-05-15T03:21:29+08:00 +2026/05/15 03:21:29.607, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 350.42, 65 +2026-05-15T03:21:34+08:00 +2026/05/15 03:21:34.631, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.28, 66 +2026-05-15T03:21:39+08:00 +2026/05/15 03:21:39.656, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.29, 65 +2026-05-15T03:21:44+08:00 +2026/05/15 03:21:44.680, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.71, 66 +2026-05-15T03:21:49+08:00 +2026/05/15 03:21:49.704, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.67, 66 +2026-05-15T03:21:54+08:00 +2026/05/15 03:21:54.729, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.64, 66 +2026-05-15T03:21:59+08:00 +2026/05/15 03:21:59.750, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.60, 65 +2026-05-15T03:22:04+08:00 +2026/05/15 03:22:04.773, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.93, 66 +2026-05-15T03:22:09+08:00 +2026/05/15 03:22:09.797, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 366.42, 66 +2026-05-15T03:22:14+08:00 +2026/05/15 03:22:14.822, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.21, 65 +2026-05-15T03:22:19+08:00 +2026/05/15 03:22:19.846, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.61, 66 +2026-05-15T03:22:24+08:00 +2026/05/15 03:22:24.870, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.18, 66 +2026-05-15T03:22:29+08:00 +2026/05/15 03:22:29.897, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 66 +2026-05-15T03:22:34+08:00 +2026/05/15 03:22:34.922, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.75, 65 +2026-05-15T03:22:39+08:00 +2026/05/15 03:22:39.947, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.94, 66 +2026-05-15T03:22:44+08:00 +2026/05/15 03:22:44.970, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.34, 62 +2026-05-15T03:22:49+08:00 +2026/05/15 03:22:49.992, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.55, 66 +2026-05-15T03:22:55+08:00 +2026/05/15 03:22:55.018, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.50, 66 +2026-05-15T03:23:00+08:00 +2026/05/15 03:23:00.043, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 360.23, 66 +2026-05-15T03:23:05+08:00 +2026/05/15 03:23:05.067, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.81, 65 +2026-05-15T03:23:10+08:00 +2026/05/15 03:23:10.095, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.64, 66 +2026-05-15T03:23:15+08:00 +2026/05/15 03:23:15.119, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.14, 66 +2026-05-15T03:23:20+08:00 +2026/05/15 03:23:20.143, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.04, 66 +2026-05-15T03:23:25+08:00 +2026/05/15 03:23:25.167, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 248.49, 66 +2026-05-15T03:23:30+08:00 +2026/05/15 03:23:30.189, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.31, 66 +2026-05-15T03:23:35+08:00 +2026/05/15 03:23:35.213, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.11, 64 +2026-05-15T03:23:40+08:00 +2026/05/15 03:23:40.237, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.10, 65 +2026-05-15T03:23:45+08:00 +2026/05/15 03:23:45.263, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.26, 65 +2026-05-15T03:23:50+08:00 +2026/05/15 03:23:50.288, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.78, 65 +2026-05-15T03:23:55+08:00 +2026/05/15 03:23:55.316, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.86, 66 +2026-05-15T03:24:00+08:00 +2026/05/15 03:24:00.340, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.08, 65 +2026-05-15T03:24:05+08:00 +2026/05/15 03:24:05.367, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.33, 65 +2026-05-15T03:24:10+08:00 +2026/05/15 03:24:10.394, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.33, 65 +2026-05-15T03:24:15+08:00 +2026/05/15 03:24:15.420, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.65, 66 +2026-05-15T03:24:20+08:00 +2026/05/15 03:24:20.446, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.80, 65 +2026-05-15T03:24:25+08:00 +2026/05/15 03:24:25.470, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.25, 65 +2026-05-15T03:24:30+08:00 +2026/05/15 03:24:30.497, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.29, 65 +2026-05-15T03:24:35+08:00 +2026/05/15 03:24:35.523, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.58, 65 +2026-05-15T03:24:40+08:00 +2026/05/15 03:24:40.550, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 250.83, 63 +2026-05-15T03:24:45+08:00 +2026/05/15 03:24:45.575, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 66 +2026-05-15T03:24:50+08:00 +2026/05/15 03:24:50.601, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.03, 65 +2026-05-15T03:24:55+08:00 +2026/05/15 03:24:55.627, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 347.20, 65 +2026-05-15T03:25:00+08:00 +2026/05/15 03:25:00.651, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.21, 65 +2026-05-15T03:25:05+08:00 +2026/05/15 03:25:05.675, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.87, 65 +2026-05-15T03:25:10+08:00 +2026/05/15 03:25:10.700, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 366.25, 65 +2026-05-15T03:25:15+08:00 +2026/05/15 03:25:15.724, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.32, 65 +2026-05-15T03:25:20+08:00 +2026/05/15 03:25:20.747, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 341.26, 66 +2026-05-15T03:25:25+08:00 +2026/05/15 03:25:25.773, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.70, 66 +2026-05-15T03:25:30+08:00 +2026/05/15 03:25:30.799, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 66 +2026-05-15T03:25:35+08:00 +2026/05/15 03:25:35.827, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.56, 66 +2026-05-15T03:25:40+08:00 +2026/05/15 03:25:40.851, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.87, 66 +2026-05-15T03:25:45+08:00 +2026/05/15 03:25:45.875, NVIDIA GeForce RTX 5090, 25, 16, 9607, 32607, 202.94, 63 +2026-05-15T03:25:50+08:00 +2026/05/15 03:25:50.903, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.63, 66 +2026-05-15T03:25:55+08:00 +2026/05/15 03:25:55.929, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.13, 66 +2026-05-15T03:26:00+08:00 +2026/05/15 03:26:00.953, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 333.07, 65 +2026-05-15T03:26:05+08:00 +2026/05/15 03:26:05.979, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 65 +2026-05-15T03:26:10+08:00 +2026/05/15 03:26:11.003, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.02, 66 +2026-05-15T03:26:16+08:00 +2026/05/15 03:26:16.028, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 66 +2026-05-15T03:26:21+08:00 +2026/05/15 03:26:21.052, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.13, 65 +2026-05-15T03:26:26+08:00 +2026/05/15 03:26:26.076, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.85, 66 +2026-05-15T03:26:31+08:00 +2026/05/15 03:26:31.101, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.62, 66 +2026-05-15T03:26:36+08:00 +2026/05/15 03:26:36.125, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.13, 66 +2026-05-15T03:26:41+08:00 +2026/05/15 03:26:41.150, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.68, 66 +2026-05-15T03:26:46+08:00 +2026/05/15 03:26:46.176, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.79, 65 +2026-05-15T03:26:51+08:00 +2026/05/15 03:26:51.200, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.49, 65 +2026-05-15T03:26:56+08:00 +2026/05/15 03:26:56.225, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.82, 65 +2026-05-15T03:27:01+08:00 +2026/05/15 03:27:01.249, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.64, 65 +2026-05-15T03:27:06+08:00 +2026/05/15 03:27:06.278, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.67, 64 +2026-05-15T03:27:11+08:00 +2026/05/15 03:27:11.302, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.91, 65 +2026-05-15T03:27:16+08:00 +2026/05/15 03:27:16.327, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.27, 64 +2026-05-15T03:27:21+08:00 +2026/05/15 03:27:21.351, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.67, 66 +2026-05-15T03:27:26+08:00 +2026/05/15 03:27:26.376, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.63, 65 +2026-05-15T03:27:31+08:00 +2026/05/15 03:27:31.400, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.73, 66 +2026-05-15T03:27:36+08:00 +2026/05/15 03:27:36.424, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.26, 66 +2026-05-15T03:27:41+08:00 +2026/05/15 03:27:41.448, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 364.74, 65 +2026-05-15T03:27:46+08:00 +2026/05/15 03:27:46.474, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.42, 66 +2026-05-15T03:27:51+08:00 +2026/05/15 03:27:51.498, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.87, 66 +2026-05-15T03:27:56+08:00 +2026/05/15 03:27:56.524, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.51, 65 +2026-05-15T03:28:01+08:00 +2026/05/15 03:28:01.547, NVIDIA GeForce RTX 5090, 56, 27, 9607, 32607, 355.29, 65 +2026-05-15T03:28:06+08:00 +2026/05/15 03:28:06.576, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 364.58, 65 +2026-05-15T03:28:11+08:00 +2026/05/15 03:28:11.602, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.85, 66 +2026-05-15T03:28:16+08:00 +2026/05/15 03:28:16.625, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.68, 65 +2026-05-15T03:28:21+08:00 +2026/05/15 03:28:21.649, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.51, 65 +2026-05-15T03:28:26+08:00 +2026/05/15 03:28:26.671, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.84, 66 +2026-05-15T03:28:31+08:00 +2026/05/15 03:28:31.695, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.71, 65 +2026-05-15T03:28:36+08:00 +2026/05/15 03:28:36.718, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.01, 65 +2026-05-15T03:28:41+08:00 +2026/05/15 03:28:41.742, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.96, 65 +2026-05-15T03:28:46+08:00 +2026/05/15 03:28:46.767, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.43, 65 +2026-05-15T03:28:51+08:00 +2026/05/15 03:28:51.791, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.29, 64 +2026-05-15T03:28:56+08:00 +2026/05/15 03:28:56.815, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.35, 64 +2026-05-15T03:29:01+08:00 +2026/05/15 03:29:01.838, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.78, 64 +2026-05-15T03:29:06+08:00 +2026/05/15 03:29:06.866, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.31, 64 +2026-05-15T03:29:11+08:00 +2026/05/15 03:29:11.890, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 231.85, 59 +2026-05-15T03:29:16+08:00 +2026/05/15 03:29:16.915, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.07, 65 +2026-05-15T03:29:21+08:00 +2026/05/15 03:29:21.941, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.83, 65 +2026-05-15T03:29:26+08:00 +2026/05/15 03:29:26.966, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.71, 65 +2026-05-15T03:29:31+08:00 +2026/05/15 03:29:31.989, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.73, 65 +2026-05-15T03:29:36+08:00 +2026/05/15 03:29:37.013, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.17, 65 +2026-05-15T03:29:42+08:00 +2026/05/15 03:29:42.040, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.24, 65 +2026-05-15T03:29:47+08:00 +2026/05/15 03:29:47.063, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.34, 65 +2026-05-15T03:29:52+08:00 +2026/05/15 03:29:52.088, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.07, 66 +2026-05-15T03:29:57+08:00 +2026/05/15 03:29:57.112, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.77, 65 +2026-05-15T03:30:02+08:00 +2026/05/15 03:30:02.136, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.63, 65 +2026-05-15T03:30:07+08:00 +2026/05/15 03:30:07.162, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.01, 66 +2026-05-15T03:30:12+08:00 +2026/05/15 03:30:12.186, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.31, 65 +2026-05-15T03:30:17+08:00 +2026/05/15 03:30:17.211, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.70, 64 +2026-05-15T03:30:22+08:00 +2026/05/15 03:30:22.233, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.42, 65 +2026-05-15T03:30:27+08:00 +2026/05/15 03:30:27.256, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.30, 66 +2026-05-15T03:30:32+08:00 +2026/05/15 03:30:32.280, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.37, 65 +2026-05-15T03:30:37+08:00 +2026/05/15 03:30:37.305, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 366.39, 65 +2026-05-15T03:30:42+08:00 +2026/05/15 03:30:42.329, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.64, 65 +2026-05-15T03:30:47+08:00 +2026/05/15 03:30:47.353, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.45, 65 +2026-05-15T03:30:52+08:00 +2026/05/15 03:30:52.376, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.85, 65 +2026-05-15T03:30:57+08:00 +2026/05/15 03:30:57.400, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.80, 66 +2026-05-15T03:31:02+08:00 +2026/05/15 03:31:02.426, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.24, 67 +2026-05-15T03:31:07+08:00 +2026/05/15 03:31:07.450, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.89, 66 +2026-05-15T03:31:12+08:00 +2026/05/15 03:31:12.473, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.64, 65 +2026-05-15T03:31:17+08:00 +2026/05/15 03:31:17.498, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.25, 64 +2026-05-15T03:31:22+08:00 +2026/05/15 03:31:22.522, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.92, 65 +2026-05-15T03:31:27+08:00 +2026/05/15 03:31:27.547, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.88, 66 +2026-05-15T03:31:32+08:00 +2026/05/15 03:31:32.571, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.43, 66 +2026-05-15T03:31:37+08:00 +2026/05/15 03:31:37.596, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.08, 65 +2026-05-15T03:31:42+08:00 +2026/05/15 03:31:42.618, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.20, 66 +2026-05-15T03:31:47+08:00 +2026/05/15 03:31:47.644, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.20, 66 +2026-05-15T03:31:52+08:00 +2026/05/15 03:31:52.666, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.10, 65 +2026-05-15T03:31:57+08:00 +2026/05/15 03:31:57.689, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 356.01, 66 +2026-05-15T03:32:02+08:00 +2026/05/15 03:32:02.712, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.66, 65 +2026-05-15T03:32:07+08:00 +2026/05/15 03:32:07.737, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.89, 65 +2026-05-15T03:32:12+08:00 +2026/05/15 03:32:12.762, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.06, 64 +2026-05-15T03:32:17+08:00 +2026/05/15 03:32:17.784, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.28, 64 +2026-05-15T03:32:22+08:00 +2026/05/15 03:32:22.808, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.08, 64 +2026-05-15T03:32:27+08:00 +2026/05/15 03:32:27.832, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 366.00, 65 +2026-05-15T03:32:32+08:00 +2026/05/15 03:32:32.856, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.55, 66 +2026-05-15T03:32:37+08:00 +2026/05/15 03:32:37.879, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.17, 65 +2026-05-15T03:32:42+08:00 +2026/05/15 03:32:42.907, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.64, 66 +2026-05-15T03:32:47+08:00 +2026/05/15 03:32:47.930, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.23, 66 +2026-05-15T03:32:52+08:00 +2026/05/15 03:32:52.956, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.56, 65 +2026-05-15T03:32:57+08:00 +2026/05/15 03:32:57.998, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.01, 66 +2026-05-15T03:33:03+08:00 +2026/05/15 03:33:03.023, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 277.41, 59 +2026-05-15T03:33:08+08:00 +2026/05/15 03:33:08.065, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.54, 65 +2026-05-15T03:33:13+08:00 +2026/05/15 03:33:13.139, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.03, 65 +2026-05-15T03:33:18+08:00 +2026/05/15 03:33:18.164, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 366.40, 66 +2026-05-15T03:33:23+08:00 +2026/05/15 03:33:23.233, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 365.30, 66 +2026-05-15T03:33:28+08:00 +2026/05/15 03:33:28.257, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.06, 65 +2026-05-15T03:33:33+08:00 +2026/05/15 03:33:33.329, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 365.14, 66 +2026-05-15T03:33:38+08:00 +2026/05/15 03:33:38.352, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.21, 65 +2026-05-15T03:33:43+08:00 +2026/05/15 03:33:43.394, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 163.75, 59 +2026-05-15T03:33:48+08:00 +2026/05/15 03:33:48.416, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.49, 65 +2026-05-15T03:33:53+08:00 +2026/05/15 03:33:53.458, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.49, 65 +2026-05-15T03:33:58+08:00 +2026/05/15 03:33:58.532, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.99, 66 +2026-05-15T03:34:03+08:00 +2026/05/15 03:34:03.555, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.47, 66 +2026-05-15T03:34:08+08:00 +2026/05/15 03:34:08.627, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.60, 66 +2026-05-15T03:34:13+08:00 +2026/05/15 03:34:13.651, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.78, 66 +2026-05-15T03:34:18+08:00 +2026/05/15 03:34:18.692, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.18, 66 +2026-05-15T03:34:23+08:00 +2026/05/15 03:34:23.763, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.42, 65 +2026-05-15T03:34:28+08:00 +2026/05/15 03:34:28.797, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.56, 65 +2026-05-15T03:34:33+08:00 +2026/05/15 03:34:33.822, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.57, 66 +2026-05-15T03:34:38+08:00 +2026/05/15 03:34:38.849, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.83, 66 +2026-05-15T03:34:43+08:00 +2026/05/15 03:34:43.874, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.10, 66 +2026-05-15T03:34:48+08:00 +2026/05/15 03:34:48.902, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.04, 64 +2026-05-15T03:34:53+08:00 +2026/05/15 03:34:53.928, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.31, 65 +2026-05-15T03:34:58+08:00 +2026/05/15 03:34:58.951, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 263.61, 64 +2026-05-15T03:35:03+08:00 +2026/05/15 03:35:03.976, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.32, 65 +2026-05-15T03:35:08+08:00 +2026/05/15 03:35:09.001, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 263.71, 59 +2026-05-15T03:35:14+08:00 +2026/05/15 03:35:14.025, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.97, 65 +2026-05-15T03:35:19+08:00 +2026/05/15 03:35:19.050, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.30, 65 +2026-05-15T03:35:24+08:00 +2026/05/15 03:35:24.072, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 364.54, 66 +2026-05-15T03:35:29+08:00 +2026/05/15 03:35:29.098, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 364.52, 66 +2026-05-15T03:35:34+08:00 +2026/05/15 03:35:34.122, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.95, 66 +2026-05-15T03:35:39+08:00 +2026/05/15 03:35:39.146, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 66 +2026-05-15T03:35:44+08:00 +2026/05/15 03:35:44.171, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.28, 66 +2026-05-15T03:35:49+08:00 +2026/05/15 03:35:49.194, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.01, 66 +2026-05-15T03:35:54+08:00 +2026/05/15 03:35:54.219, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.87, 66 +2026-05-15T03:35:59+08:00 +2026/05/15 03:35:59.245, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 66 +2026-05-15T03:36:04+08:00 +2026/05/15 03:36:04.270, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.39, 66 +2026-05-15T03:36:09+08:00 +2026/05/15 03:36:09.293, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.45, 66 +2026-05-15T03:36:14+08:00 +2026/05/15 03:36:14.317, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.14, 65 +2026-05-15T03:36:19+08:00 +2026/05/15 03:36:19.341, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.11, 64 +2026-05-15T03:36:24+08:00 +2026/05/15 03:36:24.364, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.43, 65 +2026-05-15T03:36:29+08:00 +2026/05/15 03:36:29.388, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.40, 65 +2026-05-15T03:36:34+08:00 +2026/05/15 03:36:34.411, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.68, 65 +2026-05-15T03:36:39+08:00 +2026/05/15 03:36:39.434, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.11, 64 +2026-05-15T03:36:44+08:00 +2026/05/15 03:36:44.458, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.38, 65 +2026-05-15T03:36:49+08:00 +2026/05/15 03:36:49.483, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.26, 66 +2026-05-15T03:36:54+08:00 +2026/05/15 03:36:54.508, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 249.67, 59 +2026-05-15T03:36:59+08:00 +2026/05/15 03:36:59.531, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.57, 64 +2026-05-15T03:37:04+08:00 +2026/05/15 03:37:04.556, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.07, 64 +2026-05-15T03:37:09+08:00 +2026/05/15 03:37:09.578, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.96, 65 +2026-05-15T03:37:14+08:00 +2026/05/15 03:37:14.600, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.05, 66 +2026-05-15T03:37:19+08:00 +2026/05/15 03:37:19.625, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.53, 66 +2026-05-15T03:37:24+08:00 +2026/05/15 03:37:24.648, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.07, 66 +2026-05-15T03:37:29+08:00 +2026/05/15 03:37:29.671, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.53, 66 +2026-05-15T03:37:34+08:00 +2026/05/15 03:37:34.694, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.25, 66 +2026-05-15T03:37:39+08:00 +2026/05/15 03:37:39.721, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.61, 65 +2026-05-15T03:37:44+08:00 +2026/05/15 03:37:44.751, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.59, 65 +2026-05-15T03:37:49+08:00 +2026/05/15 03:37:49.774, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 366.74, 66 +2026-05-15T03:37:54+08:00 +2026/05/15 03:37:54.798, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.00, 65 +2026-05-15T03:37:59+08:00 +2026/05/15 03:37:59.823, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.46, 66 +2026-05-15T03:38:04+08:00 +2026/05/15 03:38:04.848, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.56, 66 +2026-05-15T03:38:09+08:00 +2026/05/15 03:38:09.874, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.80, 65 +2026-05-15T03:38:14+08:00 +2026/05/15 03:38:14.898, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.62, 65 +2026-05-15T03:38:19+08:00 +2026/05/15 03:38:19.921, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 65 +2026-05-15T03:38:24+08:00 +2026/05/15 03:38:24.947, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.80, 65 +2026-05-15T03:38:29+08:00 +2026/05/15 03:38:29.968, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.07, 65 +2026-05-15T03:38:34+08:00 +2026/05/15 03:38:34.994, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.31, 65 +2026-05-15T03:38:40+08:00 +2026/05/15 03:38:40.019, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.97, 65 +2026-05-15T03:38:45+08:00 +2026/05/15 03:38:45.044, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.44, 65 +2026-05-15T03:38:50+08:00 +2026/05/15 03:38:50.068, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.08, 66 +2026-05-15T03:38:55+08:00 +2026/05/15 03:38:55.093, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.04, 66 +2026-05-15T03:39:00+08:00 +2026/05/15 03:39:00.154, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.11, 66 +2026-05-15T03:39:05+08:00 +2026/05/15 03:39:05.178, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.60, 66 +2026-05-15T03:39:10+08:00 +2026/05/15 03:39:10.246, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.85, 66 +2026-05-15T03:39:15+08:00 +2026/05/15 03:39:15.293, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.22, 66 +2026-05-15T03:39:20+08:00 +2026/05/15 03:39:20.318, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.33, 65 +2026-05-15T03:39:25+08:00 +2026/05/15 03:39:25.392, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.85, 65 +2026-05-15T03:39:30+08:00 +2026/05/15 03:39:30.452, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.07, 66 +2026-05-15T03:39:35+08:00 +2026/05/15 03:39:35.475, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.57, 66 +2026-05-15T03:39:40+08:00 +2026/05/15 03:39:40.552, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.48, 66 +2026-05-15T03:39:45+08:00 +2026/05/15 03:39:45.578, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 66 +2026-05-15T03:39:50+08:00 +2026/05/15 03:39:50.649, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.61, 66 +2026-05-15T03:39:55+08:00 +2026/05/15 03:39:55.673, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.51, 66 +2026-05-15T03:40:00+08:00 +2026/05/15 03:40:00.716, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.61, 67 +2026-05-15T03:40:05+08:00 +2026/05/15 03:40:05.790, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.37, 65 +2026-05-15T03:40:10+08:00 +2026/05/15 03:40:10.815, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 348.02, 65 +2026-05-15T03:40:15+08:00 +2026/05/15 03:40:15.885, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.89, 65 +2026-05-15T03:40:20+08:00 +2026/05/15 03:40:20.908, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 65 +2026-05-15T03:40:25+08:00 +2026/05/15 03:40:25.932, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.83, 66 +2026-05-15T03:40:30+08:00 +2026/05/15 03:40:30.956, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.10, 66 +2026-05-15T03:40:35+08:00 +2026/05/15 03:40:35.980, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.53, 66 +2026-05-15T03:40:40+08:00 +2026/05/15 03:40:41.002, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.21, 66 +2026-05-15T03:40:46+08:00 +2026/05/15 03:40:46.026, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 308.52, 65 +2026-05-15T03:40:51+08:00 +2026/05/15 03:40:51.049, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.42, 66 +2026-05-15T03:40:56+08:00 +2026/05/15 03:40:56.072, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.81, 66 +2026-05-15T03:41:01+08:00 +2026/05/15 03:41:01.097, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.07, 65 +2026-05-15T03:41:06+08:00 +2026/05/15 03:41:06.121, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.81, 66 +2026-05-15T03:41:11+08:00 +2026/05/15 03:41:11.144, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.89, 67 +2026-05-15T03:41:16+08:00 +2026/05/15 03:41:16.167, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.26, 67 +2026-05-15T03:41:21+08:00 +2026/05/15 03:41:21.189, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.43, 66 +2026-05-15T03:41:26+08:00 +2026/05/15 03:41:26.219, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.87, 65 +2026-05-15T03:41:31+08:00 +2026/05/15 03:41:31.245, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.44, 66 +2026-05-15T03:41:36+08:00 +2026/05/15 03:41:36.272, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.60, 65 +2026-05-15T03:41:41+08:00 +2026/05/15 03:41:41.293, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.35, 65 +2026-05-15T03:41:46+08:00 +2026/05/15 03:41:46.318, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 326.51, 65 +2026-05-15T03:41:51+08:00 +2026/05/15 03:41:51.342, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.19, 65 +2026-05-15T03:41:56+08:00 +2026/05/15 03:41:56.370, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.80, 65 +2026-05-15T03:42:01+08:00 +2026/05/15 03:42:01.394, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.98, 66 +2026-05-15T03:42:06+08:00 +2026/05/15 03:42:06.418, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 365.35, 65 +2026-05-15T03:42:11+08:00 +2026/05/15 03:42:11.443, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.38, 64 +2026-05-15T03:42:16+08:00 +2026/05/15 03:42:16.468, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.27, 66 +2026-05-15T03:42:21+08:00 +2026/05/15 03:42:21.491, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.70, 65 +2026-05-15T03:42:26+08:00 +2026/05/15 03:42:26.515, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.03, 66 +2026-05-15T03:42:31+08:00 +2026/05/15 03:42:31.539, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.11, 65 +2026-05-15T03:42:36+08:00 +2026/05/15 03:42:36.563, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.79, 66 +2026-05-15T03:42:41+08:00 +2026/05/15 03:42:41.587, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.29, 66 +2026-05-15T03:42:46+08:00 +2026/05/15 03:42:46.611, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.70, 65 +2026-05-15T03:42:51+08:00 +2026/05/15 03:42:51.634, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.73, 65 +2026-05-15T03:42:56+08:00 +2026/05/15 03:42:56.659, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.29, 66 +2026-05-15T03:43:01+08:00 +2026/05/15 03:43:01.683, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.20, 65 +2026-05-15T03:43:06+08:00 +2026/05/15 03:43:06.707, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.18, 67 +2026-05-15T03:43:11+08:00 +2026/05/15 03:43:11.731, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.48, 65 +2026-05-15T03:43:16+08:00 +2026/05/15 03:43:16.757, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 336.34, 64 +2026-05-15T03:43:21+08:00 +2026/05/15 03:43:21.782, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.79, 66 +2026-05-15T03:43:26+08:00 +2026/05/15 03:43:26.806, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 366.86, 66 +2026-05-15T03:43:31+08:00 +2026/05/15 03:43:31.830, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.94, 66 +2026-05-15T03:43:36+08:00 +2026/05/15 03:43:36.854, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.36, 65 +2026-05-15T03:43:41+08:00 +2026/05/15 03:43:41.875, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.52, 66 +2026-05-15T03:43:46+08:00 +2026/05/15 03:43:46.900, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.14, 66 +2026-05-15T03:43:51+08:00 +2026/05/15 03:43:51.927, NVIDIA GeForce RTX 5090, 81, 36, 9607, 32607, 365.34, 66 +2026-05-15T03:43:56+08:00 +2026/05/15 03:43:56.948, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.46, 66 +2026-05-15T03:44:01+08:00 +2026/05/15 03:44:01.971, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 66 +2026-05-15T03:44:06+08:00 +2026/05/15 03:44:06.996, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 65 +2026-05-15T03:44:12+08:00 +2026/05/15 03:44:12.021, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.19, 65 +2026-05-15T03:44:17+08:00 +2026/05/15 03:44:17.060, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.27, 66 +2026-05-15T03:44:22+08:00 +2026/05/15 03:44:22.083, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.80, 65 +2026-05-15T03:44:27+08:00 +2026/05/15 03:44:27.125, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.90, 66 +2026-05-15T03:44:32+08:00 +2026/05/15 03:44:32.167, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.77, 66 +2026-05-15T03:44:37+08:00 +2026/05/15 03:44:37.209, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.56, 65 +2026-05-15T03:44:42+08:00 +2026/05/15 03:44:42.249, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.13, 65 +2026-05-15T03:44:47+08:00 +2026/05/15 03:44:47.271, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.72, 66 +2026-05-15T03:44:52+08:00 +2026/05/15 03:44:52.348, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.21, 65 +2026-05-15T03:44:57+08:00 +2026/05/15 03:44:57.371, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.60, 65 +2026-05-15T03:45:02+08:00 +2026/05/15 03:45:02.415, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.65, 66 +2026-05-15T03:45:07+08:00 +2026/05/15 03:45:07.437, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.04, 65 +2026-05-15T03:45:12+08:00 +2026/05/15 03:45:12.457, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 65 +2026-05-15T03:45:17+08:00 +2026/05/15 03:45:17.528, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.15, 65 +2026-05-15T03:45:22+08:00 +2026/05/15 03:45:22.558, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 363.32, 66 +2026-05-15T03:45:27+08:00 +2026/05/15 03:45:27.580, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 339.79, 65 +2026-05-15T03:45:32+08:00 +2026/05/15 03:45:32.617, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.26, 65 +2026-05-15T03:45:37+08:00 +2026/05/15 03:45:37.677, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.39, 65 +2026-05-15T03:45:42+08:00 +2026/05/15 03:45:42.698, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.38, 66 +2026-05-15T03:45:47+08:00 +2026/05/15 03:45:47.741, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 305.30, 60 +2026-05-15T03:45:52+08:00 +2026/05/15 03:45:52.765, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 363.34, 65 +2026-05-15T03:45:57+08:00 +2026/05/15 03:45:57.789, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.57, 64 +2026-05-15T03:46:02+08:00 +2026/05/15 03:46:02.831, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.77, 64 +2026-05-15T03:46:07+08:00 +2026/05/15 03:46:07.857, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.77, 65 +2026-05-15T03:46:12+08:00 +2026/05/15 03:46:12.881, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.76, 65 +2026-05-15T03:46:17+08:00 +2026/05/15 03:46:17.903, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.97, 65 +2026-05-15T03:46:22+08:00 +2026/05/15 03:46:22.926, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.33, 64 +2026-05-15T03:46:27+08:00 +2026/05/15 03:46:27.950, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 219.44, 64 +2026-05-15T03:46:32+08:00 +2026/05/15 03:46:32.974, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.30, 65 +2026-05-15T03:46:37+08:00 +2026/05/15 03:46:37.998, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.10, 66 +2026-05-15T03:46:43+08:00 +2026/05/15 03:46:43.021, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.96, 65 +2026-05-15T03:46:48+08:00 +2026/05/15 03:46:48.043, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.94, 65 +2026-05-15T03:46:53+08:00 +2026/05/15 03:46:53.066, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.02, 65 +2026-05-15T03:46:58+08:00 +2026/05/15 03:46:58.091, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.18, 66 +2026-05-15T03:47:03+08:00 +2026/05/15 03:47:03.114, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.35, 66 +2026-05-15T03:47:08+08:00 +2026/05/15 03:47:08.141, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.25, 65 +2026-05-15T03:47:13+08:00 +2026/05/15 03:47:13.165, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.87, 66 +2026-05-15T03:47:18+08:00 +2026/05/15 03:47:18.190, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.79, 65 +2026-05-15T03:47:23+08:00 +2026/05/15 03:47:23.215, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.60, 66 +2026-05-15T03:47:28+08:00 +2026/05/15 03:47:28.239, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.17, 65 +2026-05-15T03:47:33+08:00 +2026/05/15 03:47:33.263, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.39, 66 +2026-05-15T03:47:38+08:00 +2026/05/15 03:47:38.285, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.73, 66 +2026-05-15T03:47:43+08:00 +2026/05/15 03:47:43.316, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.11, 63 +2026-05-15T03:47:48+08:00 +2026/05/15 03:47:48.343, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.89, 65 +2026-05-15T03:47:53+08:00 +2026/05/15 03:47:53.366, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.37, 65 +2026-05-15T03:47:58+08:00 +2026/05/15 03:47:58.391, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.68, 65 +2026-05-15T03:48:03+08:00 +2026/05/15 03:48:03.416, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.61, 66 +2026-05-15T03:48:08+08:00 +2026/05/15 03:48:08.439, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.57, 65 +2026-05-15T03:48:13+08:00 +2026/05/15 03:48:13.461, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 66 +2026-05-15T03:48:18+08:00 +2026/05/15 03:48:18.485, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 65 +2026-05-15T03:48:23+08:00 +2026/05/15 03:48:23.510, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.17, 65 +2026-05-15T03:48:28+08:00 +2026/05/15 03:48:28.535, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.30, 64 +2026-05-15T03:48:33+08:00 +2026/05/15 03:48:33.562, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 363.28, 65 +2026-05-15T03:48:38+08:00 +2026/05/15 03:48:38.608, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.87, 66 +2026-05-15T03:48:43+08:00 +2026/05/15 03:48:43.656, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 363.57, 66 +2026-05-15T03:48:48+08:00 +2026/05/15 03:48:48.680, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.35, 66 +2026-05-15T03:48:53+08:00 +2026/05/15 03:48:53.723, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.08, 66 +2026-05-15T03:48:58+08:00 +2026/05/15 03:48:58.767, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.24, 66 +2026-05-15T03:49:03+08:00 +2026/05/15 03:49:03.790, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 65 +2026-05-15T03:49:08+08:00 +2026/05/15 03:49:08.814, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.29, 65 +2026-05-15T03:49:13+08:00 +2026/05/15 03:49:13.838, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.92, 65 +2026-05-15T03:49:18+08:00 +2026/05/15 03:49:18.862, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.06, 65 +2026-05-15T03:49:23+08:00 +2026/05/15 03:49:23.887, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.10, 65 +2026-05-15T03:49:28+08:00 +2026/05/15 03:49:28.912, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.43, 65 +2026-05-15T03:49:33+08:00 +2026/05/15 03:49:33.934, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.92, 65 +2026-05-15T03:49:38+08:00 +2026/05/15 03:49:38.960, NVIDIA GeForce RTX 5090, 75, 30, 9607, 32607, 260.57, 64 +2026-05-15T03:49:43+08:00 +2026/05/15 03:49:43.982, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.81, 66 +2026-05-15T03:49:48+08:00 +2026/05/15 03:49:49.006, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.99, 66 +2026-05-15T03:49:54+08:00 +2026/05/15 03:49:54.034, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.89, 66 +2026-05-15T03:49:59+08:00 +2026/05/15 03:49:59.055, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.05, 66 +2026-05-15T03:50:04+08:00 +2026/05/15 03:50:04.080, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 254.62, 59 +2026-05-15T03:50:09+08:00 +2026/05/15 03:50:09.107, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.53, 64 +2026-05-15T03:50:14+08:00 +2026/05/15 03:50:14.129, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.32, 65 +2026-05-15T03:50:19+08:00 +2026/05/15 03:50:19.153, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.91, 65 +2026-05-15T03:50:24+08:00 +2026/05/15 03:50:24.178, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.94, 66 +2026-05-15T03:50:29+08:00 +2026/05/15 03:50:29.203, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.67, 66 +2026-05-15T03:50:34+08:00 +2026/05/15 03:50:34.224, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.49, 66 +2026-05-15T03:50:39+08:00 +2026/05/15 03:50:39.246, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.11, 65 +2026-05-15T03:50:44+08:00 +2026/05/15 03:50:44.269, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.83, 65 +2026-05-15T03:50:49+08:00 +2026/05/15 03:50:49.294, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.18, 66 +2026-05-15T03:50:54+08:00 +2026/05/15 03:50:54.318, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.89, 66 +2026-05-15T03:50:59+08:00 +2026/05/15 03:50:59.342, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.51, 66 +2026-05-15T03:51:04+08:00 +2026/05/15 03:51:04.363, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.11, 65 +2026-05-15T03:51:09+08:00 +2026/05/15 03:51:09.388, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.33, 65 +2026-05-15T03:51:14+08:00 +2026/05/15 03:51:14.413, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.79, 65 +2026-05-15T03:51:19+08:00 +2026/05/15 03:51:19.439, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.70, 65 +2026-05-15T03:51:24+08:00 +2026/05/15 03:51:24.464, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.38, 65 +2026-05-15T03:51:29+08:00 +2026/05/15 03:51:29.487, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.88, 65 +2026-05-15T03:51:34+08:00 +2026/05/15 03:51:34.511, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.72, 64 +2026-05-15T03:51:39+08:00 +2026/05/15 03:51:39.535, NVIDIA GeForce RTX 5090, 7, 2, 9607, 32607, 209.29, 59 +2026-05-15T03:51:44+08:00 +2026/05/15 03:51:44.557, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.93, 65 +2026-05-15T03:51:49+08:00 +2026/05/15 03:51:49.580, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.90, 65 +2026-05-15T03:51:54+08:00 +2026/05/15 03:51:54.603, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 66 +2026-05-15T03:51:59+08:00 +2026/05/15 03:51:59.626, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 364.58, 66 +2026-05-15T03:52:04+08:00 +2026/05/15 03:52:04.650, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.14, 65 +2026-05-15T03:52:09+08:00 +2026/05/15 03:52:09.673, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.46, 66 +2026-05-15T03:52:14+08:00 +2026/05/15 03:52:14.698, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.04, 65 +2026-05-15T03:52:19+08:00 +2026/05/15 03:52:19.722, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 66 +2026-05-15T03:52:24+08:00 +2026/05/15 03:52:24.744, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.35, 66 +2026-05-15T03:52:29+08:00 +2026/05/15 03:52:29.768, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.46, 65 +2026-05-15T03:52:34+08:00 +2026/05/15 03:52:34.793, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.17, 65 +2026-05-15T03:52:39+08:00 +2026/05/15 03:52:39.816, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.81, 64 +2026-05-15T03:52:44+08:00 +2026/05/15 03:52:44.843, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.18, 66 +2026-05-15T03:52:49+08:00 +2026/05/15 03:52:49.865, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.19, 65 +2026-05-15T03:52:54+08:00 +2026/05/15 03:52:54.891, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.30, 65 +2026-05-15T03:52:59+08:00 +2026/05/15 03:52:59.914, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 66 +2026-05-15T03:53:04+08:00 +2026/05/15 03:53:04.940, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.77, 65 +2026-05-15T03:53:09+08:00 +2026/05/15 03:53:09.964, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.28, 66 +2026-05-15T03:53:14+08:00 +2026/05/15 03:53:14.988, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.92, 66 +2026-05-15T03:53:19+08:00 +2026/05/15 03:53:20.014, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.70, 65 +2026-05-15T03:53:25+08:00 +2026/05/15 03:53:25.042, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.64, 66 +2026-05-15T03:53:30+08:00 +2026/05/15 03:53:30.066, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.98, 65 +2026-05-15T03:53:35+08:00 +2026/05/15 03:53:35.090, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.59, 66 +2026-05-15T03:53:40+08:00 +2026/05/15 03:53:40.113, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.16, 65 +2026-05-15T03:53:45+08:00 +2026/05/15 03:53:45.140, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.60, 64 +2026-05-15T03:53:50+08:00 +2026/05/15 03:53:50.165, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.15, 65 +2026-05-15T03:53:55+08:00 +2026/05/15 03:53:55.189, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.99, 64 +2026-05-15T03:54:00+08:00 +2026/05/15 03:54:00.214, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.27, 65 +2026-05-15T03:54:05+08:00 +2026/05/15 03:54:05.238, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.83, 65 +2026-05-15T03:54:10+08:00 +2026/05/15 03:54:10.265, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.99, 65 +2026-05-15T03:54:15+08:00 +2026/05/15 03:54:15.290, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.21, 66 +2026-05-15T03:54:20+08:00 +2026/05/15 03:54:20.313, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.34, 65 +2026-05-15T03:54:25+08:00 +2026/05/15 03:54:25.338, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.35, 65 +2026-05-15T03:54:30+08:00 +2026/05/15 03:54:30.379, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.17, 65 +2026-05-15T03:54:35+08:00 +2026/05/15 03:54:35.423, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.73, 65 +2026-05-15T03:54:40+08:00 +2026/05/15 03:54:40.444, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.38, 65 +2026-05-15T03:54:45+08:00 +2026/05/15 03:54:45.470, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.98, 65 +2026-05-15T03:54:50+08:00 +2026/05/15 03:54:50.494, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.75, 65 +2026-05-15T03:54:55+08:00 +2026/05/15 03:54:55.521, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.80, 65 +2026-05-15T03:55:00+08:00 +2026/05/15 03:55:00.543, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.63, 66 +2026-05-15T03:55:05+08:00 +2026/05/15 03:55:05.568, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.38, 67 +2026-05-15T03:55:10+08:00 +2026/05/15 03:55:10.594, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.47, 66 +2026-05-15T03:55:15+08:00 +2026/05/15 03:55:15.619, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.64, 65 +2026-05-15T03:55:20+08:00 +2026/05/15 03:55:20.643, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.31, 65 +2026-05-15T03:55:25+08:00 +2026/05/15 03:55:25.668, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.25, 66 +2026-05-15T03:55:30+08:00 +2026/05/15 03:55:30.691, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.43, 66 +2026-05-15T03:55:35+08:00 +2026/05/15 03:55:35.715, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 202.95, 63 +2026-05-15T03:55:40+08:00 +2026/05/15 03:55:40.744, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.59, 66 +2026-05-15T03:55:45+08:00 +2026/05/15 03:55:45.768, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 66 +2026-05-15T03:55:50+08:00 +2026/05/15 03:55:50.791, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.25, 66 +2026-05-15T03:55:55+08:00 +2026/05/15 03:55:55.816, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.38, 65 +2026-05-15T03:56:00+08:00 +2026/05/15 03:56:00.842, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.87, 66 +2026-05-15T03:56:05+08:00 +2026/05/15 03:56:05.866, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.64, 65 +2026-05-15T03:56:10+08:00 +2026/05/15 03:56:10.943, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.94, 66 +2026-05-15T03:56:15+08:00 +2026/05/15 03:56:15.965, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.16, 66 +2026-05-15T03:56:20+08:00 +2026/05/15 03:56:20.988, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.26, 66 +2026-05-15T03:56:25+08:00 +2026/05/15 03:56:26.013, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.82, 65 +2026-05-15T03:56:31+08:00 +2026/05/15 03:56:31.037, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.42, 65 +2026-05-15T03:56:36+08:00 +2026/05/15 03:56:36.062, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.94, 65 +2026-05-15T03:56:41+08:00 +2026/05/15 03:56:41.085, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.83, 66 +2026-05-15T03:56:46+08:00 +2026/05/15 03:56:46.112, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.32, 66 +2026-05-15T03:56:51+08:00 +2026/05/15 03:56:51.137, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.99, 66 +2026-05-15T03:56:56+08:00 +2026/05/15 03:56:56.161, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.63, 66 +2026-05-15T03:57:01+08:00 +2026/05/15 03:57:01.185, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.30, 66 +2026-05-15T03:57:06+08:00 +2026/05/15 03:57:06.210, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.87, 66 +2026-05-15T03:57:11+08:00 +2026/05/15 03:57:11.234, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 232.96, 59 +2026-05-15T03:57:16+08:00 +2026/05/15 03:57:16.263, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.51, 65 +2026-05-15T03:57:21+08:00 +2026/05/15 03:57:21.287, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.57, 65 +2026-05-15T03:57:26+08:00 +2026/05/15 03:57:26.309, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.95, 65 +2026-05-15T03:57:31+08:00 +2026/05/15 03:57:31.331, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.57, 64 +2026-05-15T03:57:36+08:00 +2026/05/15 03:57:36.358, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 64 +2026-05-15T03:57:41+08:00 +2026/05/15 03:57:41.386, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.91, 65 +2026-05-15T03:57:46+08:00 +2026/05/15 03:57:46.410, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.27, 65 +2026-05-15T03:57:51+08:00 +2026/05/15 03:57:51.433, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.22, 65 +2026-05-15T03:57:56+08:00 +2026/05/15 03:57:56.458, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.89, 65 +2026-05-15T03:58:01+08:00 +2026/05/15 03:58:01.481, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.43, 65 +2026-05-15T03:58:06+08:00 +2026/05/15 03:58:06.506, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.14, 66 +2026-05-15T03:58:11+08:00 +2026/05/15 03:58:11.530, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.28, 66 +2026-05-15T03:58:16+08:00 +2026/05/15 03:58:16.553, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.89, 66 +2026-05-15T03:58:21+08:00 +2026/05/15 03:58:21.578, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.95, 64 +2026-05-15T03:58:26+08:00 +2026/05/15 03:58:26.601, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.34, 64 +2026-05-15T03:58:31+08:00 +2026/05/15 03:58:31.628, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.90, 64 +2026-05-15T03:58:36+08:00 +2026/05/15 03:58:36.650, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.60, 64 +2026-05-15T03:58:41+08:00 +2026/05/15 03:58:41.681, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.23, 64 +2026-05-15T03:58:46+08:00 +2026/05/15 03:58:46.706, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.02, 66 +2026-05-15T03:58:51+08:00 +2026/05/15 03:58:51.731, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.90, 66 +2026-05-15T03:58:56+08:00 +2026/05/15 03:58:56.754, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.73, 65 +2026-05-15T03:59:01+08:00 +2026/05/15 03:59:01.779, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.00, 66 +2026-05-15T03:59:06+08:00 +2026/05/15 03:59:06.802, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.65, 66 +2026-05-15T03:59:11+08:00 +2026/05/15 03:59:11.827, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.20, 66 +2026-05-15T03:59:16+08:00 +2026/05/15 03:59:16.852, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.08, 65 +2026-05-15T03:59:21+08:00 +2026/05/15 03:59:21.878, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 203.36, 63 +2026-05-15T03:59:26+08:00 +2026/05/15 03:59:26.903, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.37, 65 +2026-05-15T03:59:31+08:00 +2026/05/15 03:59:31.925, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.47, 66 +2026-05-15T03:59:36+08:00 +2026/05/15 03:59:36.948, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.08, 66 +2026-05-15T03:59:41+08:00 +2026/05/15 03:59:41.973, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.16, 65 +2026-05-15T03:59:46+08:00 +2026/05/15 03:59:47.000, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.97, 65 +2026-05-15T03:59:52+08:00 +2026/05/15 03:59:52.023, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.79, 65 +2026-05-15T03:59:57+08:00 +2026/05/15 03:59:57.049, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.23, 66 +2026-05-15T04:00:02+08:00 +2026/05/15 04:00:02.074, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 254.98, 65 +2026-05-15T04:00:07+08:00 +2026/05/15 04:00:07.098, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.62, 66 +2026-05-15T04:00:12+08:00 +2026/05/15 04:00:12.123, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.55, 65 +2026-05-15T04:00:17+08:00 +2026/05/15 04:00:17.148, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.61, 65 +2026-05-15T04:00:22+08:00 +2026/05/15 04:00:22.172, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.05, 67 +2026-05-15T04:00:27+08:00 +2026/05/15 04:00:27.195, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 367.21, 66 +2026-05-15T04:00:32+08:00 +2026/05/15 04:00:32.226, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.89, 66 +2026-05-15T04:00:37+08:00 +2026/05/15 04:00:37.251, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.75, 65 +2026-05-15T04:00:42+08:00 +2026/05/15 04:00:42.276, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.14, 65 +2026-05-15T04:00:47+08:00 +2026/05/15 04:00:47.305, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.21, 65 +2026-05-15T04:00:52+08:00 +2026/05/15 04:00:52.327, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 366.18, 65 +2026-05-15T04:00:57+08:00 +2026/05/15 04:00:57.352, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.22, 64 +2026-05-15T04:01:02+08:00 +2026/05/15 04:01:02.377, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.60, 66 +2026-05-15T04:01:07+08:00 +2026/05/15 04:01:07.401, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.97, 65 +2026-05-15T04:01:12+08:00 +2026/05/15 04:01:12.427, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.96, 66 +2026-05-15T04:01:17+08:00 +2026/05/15 04:01:17.450, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 238.93, 64 +2026-05-15T04:01:22+08:00 +2026/05/15 04:01:22.474, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.36, 65 +2026-05-15T04:01:27+08:00 +2026/05/15 04:01:27.499, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.29, 65 +2026-05-15T04:01:32+08:00 +2026/05/15 04:01:32.523, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.22, 66 +2026-05-15T04:01:37+08:00 +2026/05/15 04:01:37.547, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.75, 66 +2026-05-15T04:01:42+08:00 +2026/05/15 04:01:42.571, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.05, 65 +2026-05-15T04:01:47+08:00 +2026/05/15 04:01:47.595, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.50, 65 +2026-05-15T04:01:52+08:00 +2026/05/15 04:01:52.619, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 64 +2026-05-15T04:01:57+08:00 +2026/05/15 04:01:57.643, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.66, 66 +2026-05-15T04:02:02+08:00 +2026/05/15 04:02:02.668, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.60, 65 +2026-05-15T04:02:07+08:00 +2026/05/15 04:02:07.691, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.01, 66 +2026-05-15T04:02:12+08:00 +2026/05/15 04:02:12.716, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.36, 65 +2026-05-15T04:02:17+08:00 +2026/05/15 04:02:17.740, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.24, 66 +2026-05-15T04:02:22+08:00 +2026/05/15 04:02:22.764, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.88, 65 +2026-05-15T04:02:27+08:00 +2026/05/15 04:02:27.787, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.19, 66 +2026-05-15T04:02:32+08:00 +2026/05/15 04:02:32.812, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 308.20, 64 +2026-05-15T04:02:37+08:00 +2026/05/15 04:02:37.846, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.81, 66 +2026-05-15T04:02:42+08:00 +2026/05/15 04:02:42.869, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 365.91, 65 +2026-05-15T04:02:47+08:00 +2026/05/15 04:02:47.893, NVIDIA GeForce RTX 5090, 68, 31, 9607, 32607, 361.85, 65 +2026-05-15T04:02:52+08:00 +2026/05/15 04:02:52.916, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.68, 66 +2026-05-15T04:02:57+08:00 +2026/05/15 04:02:57.941, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.22, 64 +2026-05-15T04:03:02+08:00 +2026/05/15 04:03:03.002, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.72, 66 +2026-05-15T04:03:08+08:00 +2026/05/15 04:03:08.026, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 66 +2026-05-15T04:03:13+08:00 +2026/05/15 04:03:13.050, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 329.80, 61 +2026-05-15T04:03:18+08:00 +2026/05/15 04:03:18.091, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 363.90, 66 +2026-05-15T04:03:23+08:00 +2026/05/15 04:03:23.115, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 362.88, 65 +2026-05-15T04:03:28+08:00 +2026/05/15 04:03:28.138, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.81, 66 +2026-05-15T04:03:33+08:00 +2026/05/15 04:03:33.163, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.18, 66 +2026-05-15T04:03:38+08:00 +2026/05/15 04:03:38.188, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.51, 65 +2026-05-15T04:03:43+08:00 +2026/05/15 04:03:43.211, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.67, 65 +2026-05-15T04:03:48+08:00 +2026/05/15 04:03:48.235, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.54, 65 +2026-05-15T04:03:53+08:00 +2026/05/15 04:03:53.259, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.46, 66 +2026-05-15T04:03:58+08:00 +2026/05/15 04:03:58.284, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.95, 66 +2026-05-15T04:04:03+08:00 +2026/05/15 04:04:03.309, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.59, 64 +2026-05-15T04:04:08+08:00 +2026/05/15 04:04:08.332, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.70, 66 +2026-05-15T04:04:13+08:00 +2026/05/15 04:04:13.359, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.34, 65 +2026-05-15T04:04:18+08:00 +2026/05/15 04:04:18.384, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.45, 66 +2026-05-15T04:04:23+08:00 +2026/05/15 04:04:23.409, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.74, 65 +2026-05-15T04:04:28+08:00 +2026/05/15 04:04:28.431, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.73, 66 +2026-05-15T04:04:33+08:00 +2026/05/15 04:04:33.456, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.82, 65 +2026-05-15T04:04:38+08:00 +2026/05/15 04:04:38.478, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 66 +2026-05-15T04:04:43+08:00 +2026/05/15 04:04:43.503, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 363.57, 65 +2026-05-15T04:04:48+08:00 +2026/05/15 04:04:48.525, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 363.42, 66 +2026-05-15T04:04:53+08:00 +2026/05/15 04:04:53.549, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.50, 65 +2026-05-15T04:04:58+08:00 +2026/05/15 04:04:58.572, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.16, 65 +2026-05-15T04:05:03+08:00 +2026/05/15 04:05:03.594, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.16, 66 +2026-05-15T04:05:08+08:00 +2026/05/15 04:05:08.617, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 249.28, 65 +2026-05-15T04:05:13+08:00 +2026/05/15 04:05:13.640, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.12, 66 +2026-05-15T04:05:18+08:00 +2026/05/15 04:05:18.666, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.80, 65 +2026-05-15T04:05:23+08:00 +2026/05/15 04:05:23.691, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.00, 65 +2026-05-15T04:05:28+08:00 +2026/05/15 04:05:28.714, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.33, 66 +2026-05-15T04:05:33+08:00 +2026/05/15 04:05:33.755, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 66 +2026-05-15T04:05:38+08:00 +2026/05/15 04:05:38.828, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.52, 65 +2026-05-15T04:05:43+08:00 +2026/05/15 04:05:43.869, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.50, 66 +2026-05-15T04:05:48+08:00 +2026/05/15 04:05:48.894, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.09, 65 +2026-05-15T04:05:53+08:00 +2026/05/15 04:05:53.934, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.01, 65 +2026-05-15T04:05:58+08:00 +2026/05/15 04:05:59.011, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.13, 66 +2026-05-15T04:06:04+08:00 +2026/05/15 04:06:04.035, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.91, 66 +2026-05-15T04:06:09+08:00 +2026/05/15 04:06:09.076, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.50, 65 +2026-05-15T04:06:14+08:00 +2026/05/15 04:06:14.098, NVIDIA GeForce RTX 5090, 14, 5, 9607, 32607, 346.16, 62 +2026-05-15T04:06:19+08:00 +2026/05/15 04:06:19.119, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.27, 65 +2026-05-15T04:06:24+08:00 +2026/05/15 04:06:24.145, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 322.42, 60 +2026-05-15T04:06:29+08:00 +2026/05/15 04:06:29.173, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.98, 65 +2026-05-15T04:06:34+08:00 +2026/05/15 04:06:34.195, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.05, 65 +2026-05-15T04:06:39+08:00 +2026/05/15 04:06:39.218, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.02, 66 +2026-05-15T04:06:44+08:00 +2026/05/15 04:06:44.241, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.63, 65 +2026-05-15T04:06:49+08:00 +2026/05/15 04:06:49.265, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.75, 65 +2026-05-15T04:06:54+08:00 +2026/05/15 04:06:54.289, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.61, 66 +2026-05-15T04:06:59+08:00 +2026/05/15 04:06:59.311, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.75, 66 +2026-05-15T04:07:04+08:00 +2026/05/15 04:07:04.355, NVIDIA GeForce RTX 5090, 87, 36, 9607, 32607, 333.30, 64 +2026-05-15T04:07:09+08:00 +2026/05/15 04:07:09.431, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.43, 65 +2026-05-15T04:07:14+08:00 +2026/05/15 04:07:14.476, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.95, 66 +2026-05-15T04:07:19+08:00 +2026/05/15 04:07:19.498, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.73, 66 +2026-05-15T04:07:24+08:00 +2026/05/15 04:07:24.521, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 362.17, 65 +2026-05-15T04:07:29+08:00 +2026/05/15 04:07:29.547, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.23, 66 +2026-05-15T04:07:34+08:00 +2026/05/15 04:07:34.570, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.18, 64 +2026-05-15T04:07:39+08:00 +2026/05/15 04:07:39.598, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.39, 66 +2026-05-15T04:07:44+08:00 +2026/05/15 04:07:44.621, NVIDIA GeForce RTX 5090, 88, 35, 9607, 32607, 363.55, 66 +2026-05-15T04:07:49+08:00 +2026/05/15 04:07:49.644, NVIDIA GeForce RTX 5090, 88, 33, 9607, 32607, 361.66, 66 +2026-05-15T04:07:54+08:00 +2026/05/15 04:07:54.670, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.71, 66 +2026-05-15T04:07:59+08:00 +2026/05/15 04:07:59.696, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.82, 66 +2026-05-15T04:08:04+08:00 +2026/05/15 04:08:04.727, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.07, 66 +2026-05-15T04:08:09+08:00 +2026/05/15 04:08:09.750, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.29, 66 +2026-05-15T04:08:14+08:00 +2026/05/15 04:08:14.775, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.20, 66 +2026-05-15T04:08:19+08:00 +2026/05/15 04:08:19.799, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.14, 66 +2026-05-15T04:08:24+08:00 +2026/05/15 04:08:24.823, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.48, 66 +2026-05-15T04:08:29+08:00 +2026/05/15 04:08:29.850, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.19, 66 +2026-05-15T04:08:34+08:00 +2026/05/15 04:08:34.875, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.54, 65 +2026-05-15T04:08:39+08:00 +2026/05/15 04:08:39.898, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.66, 65 +2026-05-15T04:08:44+08:00 +2026/05/15 04:08:44.924, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.53, 65 +2026-05-15T04:08:49+08:00 +2026/05/15 04:08:49.947, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.96, 66 +2026-05-15T04:08:54+08:00 +2026/05/15 04:08:54.973, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.37, 65 +2026-05-15T04:08:59+08:00 +2026/05/15 04:08:59.996, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.20, 65 +2026-05-15T04:09:05+08:00 +2026/05/15 04:09:05.019, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.38, 65 +2026-05-15T04:09:10+08:00 +2026/05/15 04:09:10.044, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.39, 66 +2026-05-15T04:09:15+08:00 +2026/05/15 04:09:15.069, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.08, 66 +2026-05-15T04:09:20+08:00 +2026/05/15 04:09:20.092, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.95, 66 +2026-05-15T04:09:25+08:00 +2026/05/15 04:09:25.116, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.00, 66 +2026-05-15T04:09:30+08:00 +2026/05/15 04:09:30.137, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.54, 66 +2026-05-15T04:09:35+08:00 +2026/05/15 04:09:35.161, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.41, 66 +2026-05-15T04:09:40+08:00 +2026/05/15 04:09:40.185, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.96, 64 +2026-05-15T04:09:45+08:00 +2026/05/15 04:09:45.211, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.08, 66 +2026-05-15T04:09:50+08:00 +2026/05/15 04:09:50.236, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.26, 66 +2026-05-15T04:09:55+08:00 +2026/05/15 04:09:55.260, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.03, 64 +2026-05-15T04:10:00+08:00 +2026/05/15 04:10:00.284, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.53, 65 +2026-05-15T04:10:05+08:00 +2026/05/15 04:10:05.311, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.44, 65 +2026-05-15T04:10:10+08:00 +2026/05/15 04:10:10.335, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.31, 65 +2026-05-15T04:10:15+08:00 +2026/05/15 04:10:15.364, NVIDIA GeForce RTX 5090, 82, 36, 9607, 32607, 250.90, 63 +2026-05-15T04:10:20+08:00 +2026/05/15 04:10:20.390, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.66, 66 +2026-05-15T04:10:25+08:00 +2026/05/15 04:10:25.413, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.93, 66 +2026-05-15T04:10:30+08:00 +2026/05/15 04:10:30.437, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.24, 65 +2026-05-15T04:10:35+08:00 +2026/05/15 04:10:35.461, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.69, 66 +2026-05-15T04:10:40+08:00 +2026/05/15 04:10:40.486, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.26, 65 +2026-05-15T04:10:45+08:00 +2026/05/15 04:10:45.508, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.96, 66 +2026-05-15T04:10:50+08:00 +2026/05/15 04:10:50.532, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.70, 65 +2026-05-15T04:10:55+08:00 +2026/05/15 04:10:55.555, NVIDIA GeForce RTX 5090, 1, 0, 9607, 32607, 253.09, 64 +2026-05-15T04:11:00+08:00 +2026/05/15 04:11:00.579, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.48, 66 +2026-05-15T04:11:05+08:00 +2026/05/15 04:11:05.601, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.04, 65 +2026-05-15T04:11:10+08:00 +2026/05/15 04:11:10.629, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.10, 66 +2026-05-15T04:11:15+08:00 +2026/05/15 04:11:15.666, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.80, 66 +2026-05-15T04:11:20+08:00 +2026/05/15 04:11:20.690, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.45, 65 +2026-05-15T04:11:25+08:00 +2026/05/15 04:11:25.761, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.85, 65 +2026-05-15T04:11:30+08:00 +2026/05/15 04:11:30.807, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.69, 64 +2026-05-15T04:11:35+08:00 +2026/05/15 04:11:35.830, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 273.86, 65 +2026-05-15T04:11:40+08:00 +2026/05/15 04:11:40.852, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.98, 66 +2026-05-15T04:11:45+08:00 +2026/05/15 04:11:45.919, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.24, 65 +2026-05-15T04:11:50+08:00 +2026/05/15 04:11:50.983, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.63, 65 +2026-05-15T04:11:55+08:00 +2026/05/15 04:11:56.007, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.62, 64 +2026-05-15T04:12:01+08:00 +2026/05/15 04:12:01.030, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.82, 65 +2026-05-15T04:12:06+08:00 +2026/05/15 04:12:06.053, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 65 +2026-05-15T04:12:11+08:00 +2026/05/15 04:12:11.121, NVIDIA GeForce RTX 5090, 44, 16, 9607, 32607, 255.71, 60 +2026-05-15T04:12:16+08:00 +2026/05/15 04:12:16.159, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.49, 65 +2026-05-15T04:12:21+08:00 +2026/05/15 04:12:21.184, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.19, 64 +2026-05-15T04:12:26+08:00 +2026/05/15 04:12:26.209, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.28, 65 +2026-05-15T04:12:31+08:00 +2026/05/15 04:12:31.234, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.01, 65 +2026-05-15T04:12:36+08:00 +2026/05/15 04:12:36.259, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.79, 65 +2026-05-15T04:12:41+08:00 +2026/05/15 04:12:41.282, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.02, 65 +2026-05-15T04:12:46+08:00 +2026/05/15 04:12:46.307, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.40, 65 +2026-05-15T04:12:51+08:00 +2026/05/15 04:12:51.329, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.00, 65 +2026-05-15T04:12:56+08:00 +2026/05/15 04:12:56.353, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.21, 65 +2026-05-15T04:13:01+08:00 +2026/05/15 04:13:01.376, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.42, 65 +2026-05-15T04:13:06+08:00 +2026/05/15 04:13:06.406, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.08, 65 +2026-05-15T04:13:11+08:00 +2026/05/15 04:13:11.429, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.78, 65 +2026-05-15T04:13:16+08:00 +2026/05/15 04:13:16.452, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.32, 65 +2026-05-15T04:13:21+08:00 +2026/05/15 04:13:21.475, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.29, 66 +2026-05-15T04:13:26+08:00 +2026/05/15 04:13:26.498, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.54, 66 +2026-05-15T04:13:31+08:00 +2026/05/15 04:13:31.522, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.24, 64 +2026-05-15T04:13:36+08:00 +2026/05/15 04:13:36.543, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.39, 65 +2026-05-15T04:13:41+08:00 +2026/05/15 04:13:41.567, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.76, 65 +2026-05-15T04:13:46+08:00 +2026/05/15 04:13:46.591, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 201.56, 62 +2026-05-15T04:13:51+08:00 +2026/05/15 04:13:51.616, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.42, 65 +2026-05-15T04:13:56+08:00 +2026/05/15 04:13:56.639, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 364.02, 64 +2026-05-15T04:14:01+08:00 +2026/05/15 04:14:01.663, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.01, 65 +2026-05-15T04:14:06+08:00 +2026/05/15 04:14:06.689, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 362.97, 64 +2026-05-15T04:14:11+08:00 +2026/05/15 04:14:11.723, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.10, 65 +2026-05-15T04:14:16+08:00 +2026/05/15 04:14:16.747, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.06, 66 +2026-05-15T04:14:21+08:00 +2026/05/15 04:14:21.791, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.54, 65 +2026-05-15T04:14:26+08:00 +2026/05/15 04:14:26.816, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.15, 65 +2026-05-15T04:14:31+08:00 +2026/05/15 04:14:31.870, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.15, 66 +2026-05-15T04:14:36+08:00 +2026/05/15 04:14:36.894, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.99, 66 +2026-05-15T04:14:41+08:00 +2026/05/15 04:14:41.918, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.73, 66 +2026-05-15T04:14:46+08:00 +2026/05/15 04:14:46.942, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.63, 66 +2026-05-15T04:14:51+08:00 +2026/05/15 04:14:51.982, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.04, 65 +2026-05-15T04:14:56+08:00 +2026/05/15 04:14:57.009, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.55, 66 +2026-05-15T04:15:02+08:00 +2026/05/15 04:15:02.032, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 366.93, 66 +2026-05-15T04:15:07+08:00 +2026/05/15 04:15:07.054, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 65 +2026-05-15T04:15:12+08:00 +2026/05/15 04:15:12.077, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.91, 66 +2026-05-15T04:15:17+08:00 +2026/05/15 04:15:17.103, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.31, 66 +2026-05-15T04:15:22+08:00 +2026/05/15 04:15:22.127, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 366.38, 66 +2026-05-15T04:15:27+08:00 +2026/05/15 04:15:27.151, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 263.73, 64 +2026-05-15T04:15:32+08:00 +2026/05/15 04:15:32.178, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.84, 66 +2026-05-15T04:15:37+08:00 +2026/05/15 04:15:37.202, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 366.56, 66 +2026-05-15T04:15:42+08:00 +2026/05/15 04:15:42.226, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.69, 66 +2026-05-15T04:15:47+08:00 +2026/05/15 04:15:47.251, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.85, 65 +2026-05-15T04:15:52+08:00 +2026/05/15 04:15:52.277, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.72, 66 +2026-05-15T04:15:57+08:00 +2026/05/15 04:15:57.301, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.93, 66 +2026-05-15T04:16:02+08:00 +2026/05/15 04:16:02.325, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.26, 66 +2026-05-15T04:16:07+08:00 +2026/05/15 04:16:07.349, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.68, 65 +2026-05-15T04:16:12+08:00 +2026/05/15 04:16:12.374, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.63, 66 +2026-05-15T04:16:17+08:00 +2026/05/15 04:16:17.398, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.56, 66 +2026-05-15T04:16:22+08:00 +2026/05/15 04:16:22.421, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.11, 67 +2026-05-15T04:16:27+08:00 +2026/05/15 04:16:27.445, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.45, 66 +2026-05-15T04:16:32+08:00 +2026/05/15 04:16:32.470, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.33, 65 +2026-05-15T04:16:37+08:00 +2026/05/15 04:16:37.494, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.27, 66 +2026-05-15T04:16:42+08:00 +2026/05/15 04:16:42.517, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 298.11, 60 +2026-05-15T04:16:47+08:00 +2026/05/15 04:16:47.562, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.94, 66 +2026-05-15T04:16:52+08:00 +2026/05/15 04:16:52.585, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.51, 65 +2026-05-15T04:16:57+08:00 +2026/05/15 04:16:57.662, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.75, 66 +2026-05-15T04:17:02+08:00 +2026/05/15 04:17:02.686, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.92, 66 +2026-05-15T04:17:07+08:00 +2026/05/15 04:17:07.713, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.10, 66 +2026-05-15T04:17:12+08:00 +2026/05/15 04:17:12.736, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.36, 66 +2026-05-15T04:17:17+08:00 +2026/05/15 04:17:17.760, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.56, 66 +2026-05-15T04:17:22+08:00 +2026/05/15 04:17:22.785, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.18, 65 +2026-05-15T04:17:27+08:00 +2026/05/15 04:17:27.809, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.87, 65 +2026-05-15T04:17:32+08:00 +2026/05/15 04:17:32.833, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.07, 65 +2026-05-15T04:17:37+08:00 +2026/05/15 04:17:37.858, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.61, 65 +2026-05-15T04:17:42+08:00 +2026/05/15 04:17:42.882, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.50, 65 +2026-05-15T04:17:47+08:00 +2026/05/15 04:17:47.906, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.63, 66 +2026-05-15T04:17:52+08:00 +2026/05/15 04:17:52.929, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.14, 65 +2026-05-15T04:17:57+08:00 +2026/05/15 04:17:57.954, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.65, 66 +2026-05-15T04:18:02+08:00 +2026/05/15 04:18:02.977, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.07, 66 +2026-05-15T04:18:07+08:00 +2026/05/15 04:18:08.001, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.06, 66 +2026-05-15T04:18:13+08:00 +2026/05/15 04:18:13.045, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.74, 66 +2026-05-15T04:18:18+08:00 +2026/05/15 04:18:18.085, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.74, 65 +2026-05-15T04:18:23+08:00 +2026/05/15 04:18:23.111, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.45, 65 +2026-05-15T04:18:28+08:00 +2026/05/15 04:18:28.153, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.33, 65 +2026-05-15T04:18:33+08:00 +2026/05/15 04:18:33.180, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.45, 65 +2026-05-15T04:18:38+08:00 +2026/05/15 04:18:38.203, NVIDIA GeForce RTX 5090, 1, 0, 9607, 32607, 297.57, 60 +2026-05-15T04:18:43+08:00 +2026/05/15 04:18:43.242, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.98, 66 +2026-05-15T04:18:48+08:00 +2026/05/15 04:18:48.266, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.42, 65 +2026-05-15T04:18:53+08:00 +2026/05/15 04:18:53.291, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.96, 65 +2026-05-15T04:18:58+08:00 +2026/05/15 04:18:58.361, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 365.68, 65 +2026-05-15T04:19:03+08:00 +2026/05/15 04:19:03.385, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 248.36, 59 +2026-05-15T04:19:08+08:00 +2026/05/15 04:19:08.438, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.70, 65 +2026-05-15T04:19:13+08:00 +2026/05/15 04:19:13.474, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.84, 65 +2026-05-15T04:19:18+08:00 +2026/05/15 04:19:18.501, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 367.11, 66 +2026-05-15T04:19:23+08:00 +2026/05/15 04:19:23.559, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.02, 66 +2026-05-15T04:19:28+08:00 +2026/05/15 04:19:28.584, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.67, 65 +2026-05-15T04:19:33+08:00 +2026/05/15 04:19:33.624, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.26, 66 +2026-05-15T04:19:38+08:00 +2026/05/15 04:19:38.647, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.00, 66 +2026-05-15T04:19:43+08:00 +2026/05/15 04:19:43.671, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.84, 66 +2026-05-15T04:19:48+08:00 +2026/05/15 04:19:48.715, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.97, 66 +2026-05-15T04:19:53+08:00 +2026/05/15 04:19:53.759, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.35, 61 +2026-05-15T04:19:58+08:00 +2026/05/15 04:19:58.812, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.77, 65 +2026-05-15T04:20:03+08:00 +2026/05/15 04:20:03.836, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.51, 65 +2026-05-15T04:20:08+08:00 +2026/05/15 04:20:08.910, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.26, 67 +2026-05-15T04:20:13+08:00 +2026/05/15 04:20:13.934, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.76, 67 +2026-05-15T04:20:18+08:00 +2026/05/15 04:20:18.977, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.01, 66 +2026-05-15T04:20:24+08:00 +2026/05/15 04:20:24.054, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.66, 65 +2026-05-15T04:20:29+08:00 +2026/05/15 04:20:29.077, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.00, 65 +2026-05-15T04:20:34+08:00 +2026/05/15 04:20:34.106, NVIDIA GeForce RTX 5090, 1, 1, 9607, 32607, 321.24, 60 +2026-05-15T04:20:39+08:00 +2026/05/15 04:20:39.144, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.92, 66 +2026-05-15T04:20:44+08:00 +2026/05/15 04:20:44.168, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.90, 65 +2026-05-15T04:20:49+08:00 +2026/05/15 04:20:49.192, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.95, 65 +2026-05-15T04:20:54+08:00 +2026/05/15 04:20:54.215, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.19, 64 +2026-05-15T04:20:59+08:00 +2026/05/15 04:20:59.240, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.14, 65 +2026-05-15T04:21:04+08:00 +2026/05/15 04:21:04.264, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.60, 65 +2026-05-15T04:21:09+08:00 +2026/05/15 04:21:09.290, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.76, 66 +2026-05-15T04:21:14+08:00 +2026/05/15 04:21:14.315, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 325.70, 60 +2026-05-15T04:21:19+08:00 +2026/05/15 04:21:19.344, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.65, 64 +2026-05-15T04:21:24+08:00 +2026/05/15 04:21:24.366, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 363.58, 66 +2026-05-15T04:21:29+08:00 +2026/05/15 04:21:29.388, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.24, 66 +2026-05-15T04:21:34+08:00 +2026/05/15 04:21:34.411, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.29, 65 +2026-05-15T04:21:39+08:00 +2026/05/15 04:21:39.434, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.66, 66 +2026-05-15T04:21:44+08:00 +2026/05/15 04:21:44.458, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.82, 66 +2026-05-15T04:21:49+08:00 +2026/05/15 04:21:49.483, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.05, 64 +2026-05-15T04:21:54+08:00 +2026/05/15 04:21:54.506, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 307.22, 59 +2026-05-15T04:21:59+08:00 +2026/05/15 04:21:59.527, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.28, 65 +2026-05-15T04:22:04+08:00 +2026/05/15 04:22:04.551, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.43, 66 +2026-05-15T04:22:09+08:00 +2026/05/15 04:22:09.575, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.45, 66 +2026-05-15T04:22:14+08:00 +2026/05/15 04:22:14.599, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.12, 64 +2026-05-15T04:22:19+08:00 +2026/05/15 04:22:19.622, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.35, 66 +2026-05-15T04:22:24+08:00 +2026/05/15 04:22:24.647, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.75, 66 +2026-05-15T04:22:29+08:00 +2026/05/15 04:22:29.672, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.03, 64 +2026-05-15T04:22:34+08:00 +2026/05/15 04:22:34.699, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.45, 64 +2026-05-15T04:22:39+08:00 +2026/05/15 04:22:39.722, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 363.39, 66 +2026-05-15T04:22:44+08:00 +2026/05/15 04:22:44.747, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.67, 67 +2026-05-15T04:22:49+08:00 +2026/05/15 04:22:49.771, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.08, 64 +2026-05-15T04:22:54+08:00 +2026/05/15 04:22:54.796, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.99, 65 +2026-05-15T04:22:59+08:00 +2026/05/15 04:22:59.820, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.44, 65 +2026-05-15T04:23:04+08:00 +2026/05/15 04:23:04.843, NVIDIA GeForce RTX 5090, 88, 39, 9607, 32607, 365.24, 66 +2026-05-15T04:23:09+08:00 +2026/05/15 04:23:09.866, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.37, 66 +2026-05-15T04:23:14+08:00 +2026/05/15 04:23:14.889, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.11, 64 +2026-05-15T04:23:19+08:00 +2026/05/15 04:23:19.913, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.16, 65 +2026-05-15T04:23:24+08:00 +2026/05/15 04:23:24.938, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.79, 63 +2026-05-15T04:23:29+08:00 +2026/05/15 04:23:29.963, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.26, 65 +2026-05-15T04:23:34+08:00 +2026/05/15 04:23:34.986, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.97, 66 +2026-05-15T04:23:39+08:00 +2026/05/15 04:23:40.011, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.39, 65 +2026-05-15T04:23:45+08:00 +2026/05/15 04:23:45.035, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.35, 65 +2026-05-15T04:23:50+08:00 +2026/05/15 04:23:50.059, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.02, 65 +2026-05-15T04:23:55+08:00 +2026/05/15 04:23:55.086, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.84, 65 +2026-05-15T04:24:00+08:00 +2026/05/15 04:24:00.109, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 65 +2026-05-15T04:24:05+08:00 +2026/05/15 04:24:05.132, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.89, 65 +2026-05-15T04:24:10+08:00 +2026/05/15 04:24:10.157, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.86, 65 +2026-05-15T04:24:15+08:00 +2026/05/15 04:24:15.184, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.38, 65 +2026-05-15T04:24:20+08:00 +2026/05/15 04:24:20.207, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.63, 66 +2026-05-15T04:24:25+08:00 +2026/05/15 04:24:25.230, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 274.43, 59 +2026-05-15T04:24:30+08:00 +2026/05/15 04:24:30.258, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.04, 65 +2026-05-15T04:24:35+08:00 +2026/05/15 04:24:35.281, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.06, 66 +2026-05-15T04:24:40+08:00 +2026/05/15 04:24:40.305, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.13, 66 +2026-05-15T04:24:45+08:00 +2026/05/15 04:24:45.329, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.36, 64 +2026-05-15T04:24:50+08:00 +2026/05/15 04:24:50.350, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.55, 66 +2026-05-15T04:24:55+08:00 +2026/05/15 04:24:55.374, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.90, 66 +2026-05-15T04:25:00+08:00 +2026/05/15 04:25:00.397, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.18, 66 +2026-05-15T04:25:05+08:00 +2026/05/15 04:25:05.419, NVIDIA GeForce RTX 5090, 68, 24, 9607, 32607, 268.07, 64 +2026-05-15T04:25:10+08:00 +2026/05/15 04:25:10.446, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.95, 66 +2026-05-15T04:25:15+08:00 +2026/05/15 04:25:15.469, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.25, 65 +2026-05-15T04:25:20+08:00 +2026/05/15 04:25:20.496, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.50, 66 +2026-05-15T04:25:25+08:00 +2026/05/15 04:25:25.519, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.81, 66 +2026-05-15T04:25:30+08:00 +2026/05/15 04:25:30.544, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 366.27, 65 +2026-05-15T04:25:35+08:00 +2026/05/15 04:25:35.569, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.55, 64 +2026-05-15T04:25:40+08:00 +2026/05/15 04:25:40.594, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.12, 66 +2026-05-15T04:25:45+08:00 +2026/05/15 04:25:45.619, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 257.76, 65 +2026-05-15T04:25:50+08:00 +2026/05/15 04:25:50.644, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.23, 66 +2026-05-15T04:25:55+08:00 +2026/05/15 04:25:55.667, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.59, 66 +2026-05-15T04:26:00+08:00 +2026/05/15 04:26:00.690, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.96, 66 +2026-05-15T04:26:05+08:00 +2026/05/15 04:26:05.715, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.17, 66 +2026-05-15T04:26:10+08:00 +2026/05/15 04:26:10.743, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.08, 66 +2026-05-15T04:26:15+08:00 +2026/05/15 04:26:15.769, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.11, 64 +2026-05-15T04:26:20+08:00 +2026/05/15 04:26:20.797, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.77, 66 +2026-05-15T04:26:25+08:00 +2026/05/15 04:26:25.820, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.93, 66 +2026-05-15T04:26:30+08:00 +2026/05/15 04:26:30.844, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.95, 66 +2026-05-15T04:26:35+08:00 +2026/05/15 04:26:35.868, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.65, 65 +2026-05-15T04:26:40+08:00 +2026/05/15 04:26:40.892, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.42, 65 +2026-05-15T04:26:45+08:00 +2026/05/15 04:26:45.919, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.26, 66 +2026-05-15T04:26:50+08:00 +2026/05/15 04:26:50.943, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.32, 66 +2026-05-15T04:26:55+08:00 +2026/05/15 04:26:55.966, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.02, 66 +2026-05-15T04:27:00+08:00 +2026/05/15 04:27:00.990, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.19, 66 +2026-05-15T04:27:06+08:00 +2026/05/15 04:27:06.016, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 257.19, 64 +2026-05-15T04:27:11+08:00 +2026/05/15 04:27:11.040, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.75, 65 +2026-05-15T04:27:16+08:00 +2026/05/15 04:27:16.063, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.35, 64 +2026-05-15T04:27:21+08:00 +2026/05/15 04:27:21.088, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.83, 64 +2026-05-15T04:27:26+08:00 +2026/05/15 04:27:26.112, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.23, 64 +2026-05-15T04:27:31+08:00 +2026/05/15 04:27:31.136, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.31, 64 +2026-05-15T04:27:36+08:00 +2026/05/15 04:27:36.162, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.92, 66 +2026-05-15T04:27:41+08:00 +2026/05/15 04:27:41.184, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.46, 66 +2026-05-15T04:27:46+08:00 +2026/05/15 04:27:46.207, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.02, 65 +2026-05-15T04:27:51+08:00 +2026/05/15 04:27:51.232, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.73, 66 +2026-05-15T04:27:56+08:00 +2026/05/15 04:27:56.255, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.40, 66 +2026-05-15T04:28:01+08:00 +2026/05/15 04:28:01.283, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.01, 65 +2026-05-15T04:28:06+08:00 +2026/05/15 04:28:06.308, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 250.32, 59 +2026-05-15T04:28:11+08:00 +2026/05/15 04:28:11.331, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.49, 66 +2026-05-15T04:28:16+08:00 +2026/05/15 04:28:16.355, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.74, 65 +2026-05-15T04:28:21+08:00 +2026/05/15 04:28:21.380, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.14, 65 +2026-05-15T04:28:26+08:00 +2026/05/15 04:28:26.403, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 356.11, 63 +2026-05-15T04:28:31+08:00 +2026/05/15 04:28:31.431, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.32, 65 +2026-05-15T04:28:36+08:00 +2026/05/15 04:28:36.456, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.73, 65 +2026-05-15T04:28:41+08:00 +2026/05/15 04:28:41.486, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.80, 65 +2026-05-15T04:28:46+08:00 +2026/05/15 04:28:46.511, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.21, 66 +2026-05-15T04:28:51+08:00 +2026/05/15 04:28:51.536, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.93, 64 +2026-05-15T04:28:56+08:00 +2026/05/15 04:28:56.561, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.71, 66 +2026-05-15T04:29:01+08:00 +2026/05/15 04:29:01.585, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 66 +2026-05-15T04:29:06+08:00 +2026/05/15 04:29:06.607, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.80, 65 +2026-05-15T04:29:11+08:00 +2026/05/15 04:29:11.631, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.21, 65 +2026-05-15T04:29:16+08:00 +2026/05/15 04:29:16.654, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.39, 66 +2026-05-15T04:29:21+08:00 +2026/05/15 04:29:21.676, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.47, 66 +2026-05-15T04:29:26+08:00 +2026/05/15 04:29:26.702, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.09, 65 +2026-05-15T04:29:31+08:00 +2026/05/15 04:29:31.725, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 363.10, 66 +2026-05-15T04:29:36+08:00 +2026/05/15 04:29:36.748, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.62, 65 +2026-05-15T04:29:41+08:00 +2026/05/15 04:29:41.794, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.49, 65 +2026-05-15T04:29:46+08:00 +2026/05/15 04:29:46.833, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.49, 65 +2026-05-15T04:29:51+08:00 +2026/05/15 04:29:51.858, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.20, 65 +2026-05-15T04:29:56+08:00 +2026/05/15 04:29:56.903, NVIDIA GeForce RTX 5090, 88, 39, 9607, 32607, 363.03, 66 +2026-05-15T04:30:01+08:00 +2026/05/15 04:30:01.945, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.22, 64 +2026-05-15T04:30:06+08:00 +2026/05/15 04:30:06.985, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.98, 66 +2026-05-15T04:30:12+08:00 +2026/05/15 04:30:12.040, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.90, 65 +2026-05-15T04:30:17+08:00 +2026/05/15 04:30:17.065, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.29, 66 +2026-05-15T04:30:22+08:00 +2026/05/15 04:30:22.108, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 257.25, 64 +2026-05-15T04:30:27+08:00 +2026/05/15 04:30:27.171, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.96, 66 +2026-05-15T04:30:32+08:00 +2026/05/15 04:30:32.196, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.93, 65 +2026-05-15T04:30:37+08:00 +2026/05/15 04:30:37.243, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.20, 65 +2026-05-15T04:30:42+08:00 +2026/05/15 04:30:42.267, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.98, 66 +2026-05-15T04:30:47+08:00 +2026/05/15 04:30:47.291, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.42, 66 +2026-05-15T04:30:52+08:00 +2026/05/15 04:30:52.361, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.90, 66 +2026-05-15T04:30:57+08:00 +2026/05/15 04:30:57.384, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 330.90, 61 +2026-05-15T04:31:02+08:00 +2026/05/15 04:31:02.407, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.47, 66 +2026-05-15T04:31:07+08:00 +2026/05/15 04:31:07.464, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.12, 65 +2026-05-15T04:31:12+08:00 +2026/05/15 04:31:12.487, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.91, 65 +2026-05-15T04:31:17+08:00 +2026/05/15 04:31:17.527, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.45, 65 +2026-05-15T04:31:22+08:00 +2026/05/15 04:31:22.568, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.55, 67 +2026-05-15T04:31:27+08:00 +2026/05/15 04:31:27.609, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.78, 66 +2026-05-15T04:31:32+08:00 +2026/05/15 04:31:32.650, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.82, 66 +2026-05-15T04:31:37+08:00 +2026/05/15 04:31:37.704, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.86, 66 +2026-05-15T04:31:42+08:00 +2026/05/15 04:31:42.730, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.33, 66 +2026-05-15T04:31:47+08:00 +2026/05/15 04:31:47.780, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.18, 65 +2026-05-15T04:31:52+08:00 +2026/05/15 04:31:52.804, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.77, 66 +2026-05-15T04:31:57+08:00 +2026/05/15 04:31:57.853, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.83, 66 +2026-05-15T04:32:02+08:00 +2026/05/15 04:32:02.877, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.47, 65 +2026-05-15T04:32:07+08:00 +2026/05/15 04:32:07.917, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.20, 65 +2026-05-15T04:32:12+08:00 +2026/05/15 04:32:12.940, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.00, 66 +2026-05-15T04:32:17+08:00 +2026/05/15 04:32:17.971, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.66, 66 +2026-05-15T04:32:22+08:00 +2026/05/15 04:32:22.994, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 287.06, 60 +2026-05-15T04:32:28+08:00 +2026/05/15 04:32:28.017, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.11, 66 +2026-05-15T04:32:33+08:00 +2026/05/15 04:32:33.042, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.88, 66 +2026-05-15T04:32:38+08:00 +2026/05/15 04:32:38.066, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.90, 65 +2026-05-15T04:32:43+08:00 +2026/05/15 04:32:43.090, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.73, 66 +2026-05-15T04:32:48+08:00 +2026/05/15 04:32:48.114, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.37, 66 +2026-05-15T04:32:53+08:00 +2026/05/15 04:32:53.137, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 301.52, 60 +2026-05-15T04:32:58+08:00 +2026/05/15 04:32:58.161, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.39, 65 +2026-05-15T04:33:03+08:00 +2026/05/15 04:33:03.185, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.92, 66 +2026-05-15T04:33:08+08:00 +2026/05/15 04:33:08.209, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.15, 64 +2026-05-15T04:33:13+08:00 +2026/05/15 04:33:13.232, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.06, 66 +2026-05-15T04:33:18+08:00 +2026/05/15 04:33:18.257, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.55, 66 +2026-05-15T04:33:23+08:00 +2026/05/15 04:33:23.280, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.62, 66 +2026-05-15T04:33:28+08:00 +2026/05/15 04:33:28.304, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.15, 64 +2026-05-15T04:33:33+08:00 +2026/05/15 04:33:33.327, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.84, 66 +2026-05-15T04:33:38+08:00 +2026/05/15 04:33:38.354, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.20, 66 +2026-05-15T04:33:43+08:00 +2026/05/15 04:33:43.378, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.53, 65 +2026-05-15T04:33:48+08:00 +2026/05/15 04:33:48.403, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.48, 65 +2026-05-15T04:33:53+08:00 +2026/05/15 04:33:53.427, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 65 +2026-05-15T04:33:58+08:00 +2026/05/15 04:33:58.469, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 356.33, 64 +2026-05-15T04:34:03+08:00 +2026/05/15 04:34:03.527, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.11, 66 +2026-05-15T04:34:08+08:00 +2026/05/15 04:34:08.551, NVIDIA GeForce RTX 5090, 18, 6, 9607, 32607, 258.16, 64 +2026-05-15T04:34:13+08:00 +2026/05/15 04:34:13.603, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 66 +2026-05-15T04:34:18+08:00 +2026/05/15 04:34:18.627, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 66 +2026-05-15T04:34:23+08:00 +2026/05/15 04:34:23.699, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.19, 66 +2026-05-15T04:34:28+08:00 +2026/05/15 04:34:28.724, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 66 +2026-05-15T04:34:33+08:00 +2026/05/15 04:34:33.798, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.00, 66 +2026-05-15T04:34:38+08:00 +2026/05/15 04:34:38.822, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.48, 66 +2026-05-15T04:34:43+08:00 +2026/05/15 04:34:43.865, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 66 +2026-05-15T04:34:48+08:00 +2026/05/15 04:34:48.906, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.62, 65 +2026-05-15T04:34:53+08:00 +2026/05/15 04:34:53.979, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.34, 65 +2026-05-15T04:34:58+08:00 +2026/05/15 04:34:59.004, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.45, 66 +2026-05-15T04:35:04+08:00 +2026/05/15 04:35:04.046, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.83, 66 +2026-05-15T04:35:09+08:00 +2026/05/15 04:35:09.069, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.95, 66 +2026-05-15T04:35:14+08:00 +2026/05/15 04:35:14.092, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.18, 65 +2026-05-15T04:35:19+08:00 +2026/05/15 04:35:19.116, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.89, 65 +2026-05-15T04:35:24+08:00 +2026/05/15 04:35:24.141, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.75, 64 +2026-05-15T04:35:29+08:00 +2026/05/15 04:35:29.164, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.26, 64 +2026-05-15T04:35:34+08:00 +2026/05/15 04:35:34.189, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.66, 64 +2026-05-15T04:35:39+08:00 +2026/05/15 04:35:39.213, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.69, 64 +2026-05-15T04:35:44+08:00 +2026/05/15 04:35:44.237, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.31, 65 +2026-05-15T04:35:49+08:00 +2026/05/15 04:35:49.260, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.42, 65 +2026-05-15T04:35:54+08:00 +2026/05/15 04:35:54.285, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.75, 65 +2026-05-15T04:35:59+08:00 +2026/05/15 04:35:59.309, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 303.31, 66 +2026-05-15T04:36:04+08:00 +2026/05/15 04:36:04.335, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.80, 66 +2026-05-15T04:36:09+08:00 +2026/05/15 04:36:09.357, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.49, 66 +2026-05-15T04:36:14+08:00 +2026/05/15 04:36:14.382, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.95, 66 +2026-05-15T04:36:19+08:00 +2026/05/15 04:36:19.405, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.25, 65 +2026-05-15T04:36:24+08:00 +2026/05/15 04:36:24.430, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.39, 66 +2026-05-15T04:36:29+08:00 +2026/05/15 04:36:29.452, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.64, 66 +2026-05-15T04:36:34+08:00 +2026/05/15 04:36:34.475, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.79, 66 +2026-05-15T04:36:39+08:00 +2026/05/15 04:36:39.499, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.98, 65 +2026-05-15T04:36:44+08:00 +2026/05/15 04:36:44.523, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.43, 65 +2026-05-15T04:36:49+08:00 +2026/05/15 04:36:49.549, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 363.86, 65 +2026-05-15T04:36:54+08:00 +2026/05/15 04:36:54.572, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.51, 65 +2026-05-15T04:36:59+08:00 +2026/05/15 04:36:59.597, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.12, 65 +2026-05-15T04:37:04+08:00 +2026/05/15 04:37:04.621, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.31, 65 +2026-05-15T04:37:09+08:00 +2026/05/15 04:37:09.645, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.48, 66 +2026-05-15T04:37:14+08:00 +2026/05/15 04:37:14.672, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.55, 64 +2026-05-15T04:37:19+08:00 +2026/05/15 04:37:19.698, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.08, 65 +2026-05-15T04:37:24+08:00 +2026/05/15 04:37:24.721, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.12, 65 +2026-05-15T04:37:29+08:00 +2026/05/15 04:37:29.750, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.60, 64 +2026-05-15T04:37:34+08:00 +2026/05/15 04:37:34.772, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.90, 64 +2026-05-15T04:37:39+08:00 +2026/05/15 04:37:39.796, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.70, 64 +2026-05-15T04:37:44+08:00 +2026/05/15 04:37:44.820, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.14, 64 +2026-05-15T04:37:49+08:00 +2026/05/15 04:37:49.845, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 357.29, 64 +2026-05-15T04:37:54+08:00 +2026/05/15 04:37:54.868, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.72, 65 +2026-05-15T04:37:59+08:00 +2026/05/15 04:37:59.892, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.23, 65 +2026-05-15T04:38:04+08:00 +2026/05/15 04:38:04.920, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.58, 65 +2026-05-15T04:38:09+08:00 +2026/05/15 04:38:09.944, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.43, 65 +2026-05-15T04:38:14+08:00 +2026/05/15 04:38:14.969, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.53, 66 +2026-05-15T04:38:19+08:00 +2026/05/15 04:38:19.991, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.70, 66 +2026-05-15T04:38:25+08:00 +2026/05/15 04:38:25.016, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.25, 65 +2026-05-15T04:38:30+08:00 +2026/05/15 04:38:30.041, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.12, 65 +2026-05-15T04:38:35+08:00 +2026/05/15 04:38:35.065, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.24, 66 +2026-05-15T04:38:40+08:00 +2026/05/15 04:38:40.089, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.68, 66 +2026-05-15T04:38:45+08:00 +2026/05/15 04:38:45.113, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.78, 65 +2026-05-15T04:38:50+08:00 +2026/05/15 04:38:50.140, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.43, 66 +2026-05-15T04:38:55+08:00 +2026/05/15 04:38:55.164, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.02, 66 +2026-05-15T04:39:00+08:00 +2026/05/15 04:39:00.187, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 294.49, 60 +2026-05-15T04:39:05+08:00 +2026/05/15 04:39:05.209, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 66 +2026-05-15T04:39:10+08:00 +2026/05/15 04:39:10.233, NVIDIA GeForce RTX 5090, 82, 36, 9607, 32607, 258.95, 64 +2026-05-15T04:39:15+08:00 +2026/05/15 04:39:15.257, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.56, 66 +2026-05-15T04:39:20+08:00 +2026/05/15 04:39:20.281, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.00, 66 +2026-05-15T04:39:25+08:00 +2026/05/15 04:39:25.305, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.18, 66 +2026-05-15T04:39:30+08:00 +2026/05/15 04:39:30.332, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.67, 66 +2026-05-15T04:39:35+08:00 +2026/05/15 04:39:35.356, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.02, 66 +2026-05-15T04:39:40+08:00 +2026/05/15 04:39:40.380, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.71, 66 +2026-05-15T04:39:45+08:00 +2026/05/15 04:39:45.402, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 354.56, 65 +2026-05-15T04:39:50+08:00 +2026/05/15 04:39:50.425, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.66, 65 +2026-05-15T04:39:55+08:00 +2026/05/15 04:39:55.451, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 65 +2026-05-15T04:40:00+08:00 +2026/05/15 04:40:00.480, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.84, 66 +2026-05-15T04:40:05+08:00 +2026/05/15 04:40:05.503, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.68, 67 +2026-05-15T04:40:10+08:00 +2026/05/15 04:40:10.526, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.87, 66 +2026-05-15T04:40:15+08:00 +2026/05/15 04:40:15.551, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.85, 66 +2026-05-15T04:40:20+08:00 +2026/05/15 04:40:20.596, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.23, 66 +2026-05-15T04:40:25+08:00 +2026/05/15 04:40:25.619, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 276.05, 59 +2026-05-15T04:40:30+08:00 +2026/05/15 04:40:30.665, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 362.99, 66 +2026-05-15T04:40:35+08:00 +2026/05/15 04:40:35.689, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.83, 66 +2026-05-15T04:40:40+08:00 +2026/05/15 04:40:40.762, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 363.88, 66 +2026-05-15T04:40:45+08:00 +2026/05/15 04:40:45.786, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 364.72, 66 +2026-05-15T04:40:50+08:00 +2026/05/15 04:40:50.812, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.05, 66 +2026-05-15T04:40:55+08:00 +2026/05/15 04:40:55.836, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 364.20, 66 +2026-05-15T04:41:00+08:00 +2026/05/15 04:41:00.861, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.59, 66 +2026-05-15T04:41:05+08:00 +2026/05/15 04:41:05.884, NVIDIA GeForce RTX 5090, 83, 37, 9607, 32607, 251.39, 61 +2026-05-15T04:41:10+08:00 +2026/05/15 04:41:10.907, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.45, 65 +2026-05-15T04:41:15+08:00 +2026/05/15 04:41:15.930, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.55, 65 +2026-05-15T04:41:20+08:00 +2026/05/15 04:41:20.955, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 65 +2026-05-15T04:41:25+08:00 +2026/05/15 04:41:25.978, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.45, 66 +2026-05-15T04:41:30+08:00 +2026/05/15 04:41:31.003, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.07, 66 +2026-05-15T04:41:36+08:00 +2026/05/15 04:41:36.026, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.11, 66 +2026-05-15T04:41:41+08:00 +2026/05/15 04:41:41.051, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.32, 66 +2026-05-15T04:41:46+08:00 +2026/05/15 04:41:46.074, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.69, 66 +2026-05-15T04:41:51+08:00 +2026/05/15 04:41:51.099, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 364.95, 66 +2026-05-15T04:41:56+08:00 +2026/05/15 04:41:56.122, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.49, 66 +2026-05-15T04:42:01+08:00 +2026/05/15 04:42:01.149, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.96, 66 +2026-05-15T04:42:06+08:00 +2026/05/15 04:42:06.172, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.19, 64 +2026-05-15T04:42:11+08:00 +2026/05/15 04:42:11.198, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.65, 65 +2026-05-15T04:42:16+08:00 +2026/05/15 04:42:16.222, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.11, 64 +2026-05-15T04:42:21+08:00 +2026/05/15 04:42:21.246, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.21, 66 +2026-05-15T04:42:26+08:00 +2026/05/15 04:42:26.274, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.39, 64 +2026-05-15T04:42:31+08:00 +2026/05/15 04:42:31.301, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.49, 65 +2026-05-15T04:42:36+08:00 +2026/05/15 04:42:36.325, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 366.58, 66 +2026-05-15T04:42:41+08:00 +2026/05/15 04:42:41.353, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.49, 66 +2026-05-15T04:42:46+08:00 +2026/05/15 04:42:46.376, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.02, 65 +2026-05-15T04:42:51+08:00 +2026/05/15 04:42:51.405, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.30, 65 +2026-05-15T04:42:56+08:00 +2026/05/15 04:42:56.428, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.56, 66 +2026-05-15T04:43:01+08:00 +2026/05/15 04:43:01.457, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 354.93, 64 +2026-05-15T04:43:06+08:00 +2026/05/15 04:43:06.480, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.42, 66 +2026-05-15T04:43:11+08:00 +2026/05/15 04:43:11.505, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.91, 66 +2026-05-15T04:43:16+08:00 +2026/05/15 04:43:16.530, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.51, 65 +2026-05-15T04:43:21+08:00 +2026/05/15 04:43:21.554, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.54, 66 +2026-05-15T04:43:26+08:00 +2026/05/15 04:43:26.579, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.98, 66 +2026-05-15T04:43:31+08:00 +2026/05/15 04:43:31.603, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.14, 66 +2026-05-15T04:43:36+08:00 +2026/05/15 04:43:36.628, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 66 +2026-05-15T04:43:41+08:00 +2026/05/15 04:43:41.652, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.20, 66 +2026-05-15T04:43:46+08:00 +2026/05/15 04:43:46.675, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.04, 65 +2026-05-15T04:43:51+08:00 +2026/05/15 04:43:51.698, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.88, 66 +2026-05-15T04:43:56+08:00 +2026/05/15 04:43:56.722, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.84, 66 +2026-05-15T04:44:01+08:00 +2026/05/15 04:44:01.747, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.87, 65 +2026-05-15T04:44:06+08:00 +2026/05/15 04:44:06.775, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.23, 66 +2026-05-15T04:44:11+08:00 +2026/05/15 04:44:11.798, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.13, 66 +2026-05-15T04:44:16+08:00 +2026/05/15 04:44:16.821, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 283.59, 60 +2026-05-15T04:44:21+08:00 +2026/05/15 04:44:21.846, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.14, 65 +2026-05-15T04:44:26+08:00 +2026/05/15 04:44:26.869, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.90, 66 +2026-05-15T04:44:31+08:00 +2026/05/15 04:44:31.893, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.57, 66 +2026-05-15T04:44:36+08:00 +2026/05/15 04:44:36.917, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.94, 66 +2026-05-15T04:44:41+08:00 +2026/05/15 04:44:41.942, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.28, 65 +2026-05-15T04:44:46+08:00 +2026/05/15 04:44:46.967, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.56, 66 +2026-05-15T04:44:51+08:00 +2026/05/15 04:44:51.991, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.67, 66 +2026-05-15T04:44:57+08:00 +2026/05/15 04:44:57.016, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.08, 66 +2026-05-15T04:45:02+08:00 +2026/05/15 04:45:02.039, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 367.09, 66 +2026-05-15T04:45:07+08:00 +2026/05/15 04:45:07.066, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.79, 66 +2026-05-15T04:45:12+08:00 +2026/05/15 04:45:12.091, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.23, 65 +2026-05-15T04:45:17+08:00 +2026/05/15 04:45:17.114, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.48, 67 +2026-05-15T04:45:22+08:00 +2026/05/15 04:45:22.137, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.48, 65 +2026-05-15T04:45:27+08:00 +2026/05/15 04:45:27.160, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.29, 66 +2026-05-15T04:45:32+08:00 +2026/05/15 04:45:32.185, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 334.20, 61 +2026-05-15T04:45:37+08:00 +2026/05/15 04:45:37.206, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 357.18, 66 +2026-05-15T04:45:42+08:00 +2026/05/15 04:45:42.230, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.56, 66 +2026-05-15T04:45:47+08:00 +2026/05/15 04:45:47.253, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 367.35, 65 +2026-05-15T04:45:52+08:00 +2026/05/15 04:45:52.276, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.07, 67 +2026-05-15T04:45:57+08:00 +2026/05/15 04:45:57.301, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 366.40, 66 +2026-05-15T04:46:02+08:00 +2026/05/15 04:46:02.325, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.75, 66 +2026-05-15T04:46:07+08:00 +2026/05/15 04:46:07.350, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.73, 65 +2026-05-15T04:46:12+08:00 +2026/05/15 04:46:12.374, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.67, 65 +2026-05-15T04:46:17+08:00 +2026/05/15 04:46:17.397, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.08, 66 +2026-05-15T04:46:22+08:00 +2026/05/15 04:46:22.421, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.48, 65 +2026-05-15T04:46:27+08:00 +2026/05/15 04:46:27.448, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.08, 66 +2026-05-15T04:46:32+08:00 +2026/05/15 04:46:32.473, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.25, 66 +2026-05-15T04:46:37+08:00 +2026/05/15 04:46:37.496, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.06, 66 +2026-05-15T04:46:42+08:00 +2026/05/15 04:46:42.520, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.09, 66 +2026-05-15T04:46:47+08:00 +2026/05/15 04:46:47.550, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.08, 66 +2026-05-15T04:46:52+08:00 +2026/05/15 04:46:52.573, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.23, 64 +2026-05-15T04:46:57+08:00 +2026/05/15 04:46:57.598, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.18, 65 +2026-05-15T04:47:02+08:00 +2026/05/15 04:47:02.621, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 281.10, 65 +2026-05-15T04:47:07+08:00 +2026/05/15 04:47:07.650, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.32, 65 +2026-05-15T04:47:12+08:00 +2026/05/15 04:47:12.673, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.13, 66 +2026-05-15T04:47:17+08:00 +2026/05/15 04:47:17.697, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.05, 65 +2026-05-15T04:47:22+08:00 +2026/05/15 04:47:22.722, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.04, 66 +2026-05-15T04:47:27+08:00 +2026/05/15 04:47:27.747, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.28, 65 +2026-05-15T04:47:32+08:00 +2026/05/15 04:47:32.773, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 254.34, 62 +2026-05-15T04:47:37+08:00 +2026/05/15 04:47:37.798, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.08, 65 +2026-05-15T04:47:42+08:00 +2026/05/15 04:47:42.823, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.82, 65 +2026-05-15T04:47:47+08:00 +2026/05/15 04:47:47.900, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.28, 66 +2026-05-15T04:47:52+08:00 +2026/05/15 04:47:52.941, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.83, 65 +2026-05-15T04:47:57+08:00 +2026/05/15 04:47:57.967, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.44, 65 +2026-05-15T04:48:02+08:00 +2026/05/15 04:48:03.018, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.44, 67 +2026-05-15T04:48:08+08:00 +2026/05/15 04:48:08.047, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 216.88, 63 +2026-05-15T04:48:13+08:00 +2026/05/15 04:48:13.071, NVIDIA GeForce RTX 5090, 19, 7, 9607, 32607, 255.54, 59 +2026-05-15T04:48:18+08:00 +2026/05/15 04:48:18.139, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.04, 65 +2026-05-15T04:48:23+08:00 +2026/05/15 04:48:23.162, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.46, 65 +2026-05-15T04:48:28+08:00 +2026/05/15 04:48:28.236, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 65 +2026-05-15T04:48:33+08:00 +2026/05/15 04:48:33.274, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.02, 66 +2026-05-15T04:48:38+08:00 +2026/05/15 04:48:38.298, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.10, 66 +2026-05-15T04:48:43+08:00 +2026/05/15 04:48:43.369, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.79, 66 +2026-05-15T04:48:48+08:00 +2026/05/15 04:48:48.428, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.14, 65 +2026-05-15T04:48:53+08:00 +2026/05/15 04:48:53.459, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 251.58, 65 +2026-05-15T04:48:58+08:00 +2026/05/15 04:48:58.518, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.15, 65 +2026-05-15T04:49:03+08:00 +2026/05/15 04:49:03.541, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.80, 66 +2026-05-15T04:49:08+08:00 +2026/05/15 04:49:08.616, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.47, 66 +2026-05-15T04:49:13+08:00 +2026/05/15 04:49:13.639, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.24, 66 +2026-05-15T04:49:18+08:00 +2026/05/15 04:49:18.711, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.05, 66 +2026-05-15T04:49:23+08:00 +2026/05/15 04:49:23.734, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.59, 67 +2026-05-15T04:49:28+08:00 +2026/05/15 04:49:28.757, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.16, 66 +2026-05-15T04:49:33+08:00 +2026/05/15 04:49:33.778, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.21, 66 +2026-05-15T04:49:38+08:00 +2026/05/15 04:49:38.802, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.99, 65 +2026-05-15T04:49:43+08:00 +2026/05/15 04:49:43.826, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.38, 65 +2026-05-15T04:49:48+08:00 +2026/05/15 04:49:48.850, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.21, 65 +2026-05-15T04:49:53+08:00 +2026/05/15 04:49:53.873, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.97, 65 +2026-05-15T04:49:58+08:00 +2026/05/15 04:49:58.901, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.13, 65 +2026-05-15T04:50:03+08:00 +2026/05/15 04:50:03.925, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.64, 64 +2026-05-15T04:50:08+08:00 +2026/05/15 04:50:08.949, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 331.92, 61 +2026-05-15T04:50:13+08:00 +2026/05/15 04:50:13.973, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.29, 66 +2026-05-15T04:50:18+08:00 +2026/05/15 04:50:18.998, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.61, 66 +2026-05-15T04:50:24+08:00 +2026/05/15 04:50:24.020, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.54, 65 +2026-05-15T04:50:29+08:00 +2026/05/15 04:50:29.045, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.91, 65 +2026-05-15T04:50:34+08:00 +2026/05/15 04:50:34.070, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.79, 66 +2026-05-15T04:50:39+08:00 +2026/05/15 04:50:39.095, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 365.57, 66 +2026-05-15T04:50:44+08:00 +2026/05/15 04:50:44.118, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.73, 66 +2026-05-15T04:50:49+08:00 +2026/05/15 04:50:49.140, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.26, 65 +2026-05-15T04:50:54+08:00 +2026/05/15 04:50:54.161, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.46, 65 +2026-05-15T04:50:59+08:00 +2026/05/15 04:50:59.185, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.29, 65 +2026-05-15T04:51:04+08:00 +2026/05/15 04:51:04.207, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 65 +2026-05-15T04:51:09+08:00 +2026/05/15 04:51:09.231, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.05, 66 +2026-05-15T04:51:14+08:00 +2026/05/15 04:51:14.255, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.49, 65 +2026-05-15T04:51:19+08:00 +2026/05/15 04:51:19.279, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.76, 65 +2026-05-15T04:51:24+08:00 +2026/05/15 04:51:24.301, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.72, 66 +2026-05-15T04:51:29+08:00 +2026/05/15 04:51:29.322, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.27, 66 +2026-05-15T04:51:34+08:00 +2026/05/15 04:51:34.346, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.97, 66 +2026-05-15T04:51:39+08:00 +2026/05/15 04:51:39.369, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.92, 66 +2026-05-15T04:51:44+08:00 +2026/05/15 04:51:44.392, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.93, 64 +2026-05-15T04:51:49+08:00 +2026/05/15 04:51:49.434, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.82, 65 +2026-05-15T04:51:54+08:00 +2026/05/15 04:51:54.456, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.60, 65 +2026-05-15T04:51:59+08:00 +2026/05/15 04:51:59.483, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.58, 65 +2026-05-15T04:52:04+08:00 +2026/05/15 04:52:04.507, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.76, 66 +2026-05-15T04:52:09+08:00 +2026/05/15 04:52:09.530, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.94, 64 +2026-05-15T04:52:14+08:00 +2026/05/15 04:52:14.558, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.53, 65 +2026-05-15T04:52:19+08:00 +2026/05/15 04:52:19.582, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.74, 65 +2026-05-15T04:52:24+08:00 +2026/05/15 04:52:24.606, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.46, 65 +2026-05-15T04:52:29+08:00 +2026/05/15 04:52:29.632, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.58, 65 +2026-05-15T04:52:34+08:00 +2026/05/15 04:52:34.657, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.45, 66 +2026-05-15T04:52:39+08:00 +2026/05/15 04:52:39.680, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.15, 65 +2026-05-15T04:52:44+08:00 +2026/05/15 04:52:44.704, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.80, 65 +2026-05-15T04:52:49+08:00 +2026/05/15 04:52:49.728, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.88, 67 +2026-05-15T04:52:54+08:00 +2026/05/15 04:52:54.753, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.08, 66 +2026-05-15T04:52:59+08:00 +2026/05/15 04:52:59.777, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.94, 66 +2026-05-15T04:53:04+08:00 +2026/05/15 04:53:04.800, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.04, 65 +2026-05-15T04:53:09+08:00 +2026/05/15 04:53:09.823, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.31, 66 +2026-05-15T04:53:14+08:00 +2026/05/15 04:53:14.848, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.46, 66 +2026-05-15T04:53:19+08:00 +2026/05/15 04:53:19.872, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 65 +2026-05-15T04:53:24+08:00 +2026/05/15 04:53:24.899, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.35, 66 +2026-05-15T04:53:29+08:00 +2026/05/15 04:53:29.925, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.00, 66 +2026-05-15T04:53:34+08:00 +2026/05/15 04:53:34.952, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.23, 66 +2026-05-15T04:53:39+08:00 +2026/05/15 04:53:39.974, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 65 +2026-05-15T04:53:44+08:00 +2026/05/15 04:53:45.001, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.39, 66 +2026-05-15T04:53:50+08:00 +2026/05/15 04:53:50.023, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.27, 66 +2026-05-15T04:53:55+08:00 +2026/05/15 04:53:55.052, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 303.24, 64 +2026-05-15T04:54:00+08:00 +2026/05/15 04:54:00.077, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 66 +2026-05-15T04:54:05+08:00 +2026/05/15 04:54:05.121, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.98, 66 +2026-05-15T04:54:10+08:00 +2026/05/15 04:54:10.145, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.02, 66 +2026-05-15T04:54:15+08:00 +2026/05/15 04:54:15.186, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 366.48, 66 +2026-05-15T04:54:20+08:00 +2026/05/15 04:54:20.259, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.91, 65 +2026-05-15T04:54:25+08:00 +2026/05/15 04:54:25.282, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.88, 66 +2026-05-15T04:54:30+08:00 +2026/05/15 04:54:30.327, NVIDIA GeForce RTX 5090, 43, 15, 9607, 32607, 350.95, 61 +2026-05-15T04:54:35+08:00 +2026/05/15 04:54:35.350, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.48, 65 +2026-05-15T04:54:40+08:00 +2026/05/15 04:54:40.374, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.39, 66 +2026-05-15T04:54:45+08:00 +2026/05/15 04:54:45.399, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.11, 66 +2026-05-15T04:54:50+08:00 +2026/05/15 04:54:50.423, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.39, 66 +2026-05-15T04:54:55+08:00 +2026/05/15 04:54:55.447, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 65 +2026-05-15T04:55:00+08:00 +2026/05/15 04:55:00.470, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.80, 65 +2026-05-15T04:55:05+08:00 +2026/05/15 04:55:05.497, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.79, 66 +2026-05-15T04:55:10+08:00 +2026/05/15 04:55:10.523, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.10, 66 +2026-05-15T04:55:15+08:00 +2026/05/15 04:55:15.550, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.64, 65 +2026-05-15T04:55:20+08:00 +2026/05/15 04:55:20.573, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.32, 65 +2026-05-15T04:55:25+08:00 +2026/05/15 04:55:25.598, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.24, 65 +2026-05-15T04:55:30+08:00 +2026/05/15 04:55:30.623, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.23, 66 +2026-05-15T04:55:35+08:00 +2026/05/15 04:55:35.647, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.47, 66 +2026-05-15T04:55:40+08:00 +2026/05/15 04:55:40.671, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 366.42, 66 +2026-05-15T04:55:45+08:00 +2026/05/15 04:55:45.696, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.58, 65 +2026-05-15T04:55:50+08:00 +2026/05/15 04:55:50.719, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.24, 66 +2026-05-15T04:55:55+08:00 +2026/05/15 04:55:55.744, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.16, 66 +2026-05-15T04:56:00+08:00 +2026/05/15 04:56:00.768, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.02, 65 +2026-05-15T04:56:05+08:00 +2026/05/15 04:56:05.793, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.88, 65 +2026-05-15T04:56:10+08:00 +2026/05/15 04:56:10.816, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.26, 65 +2026-05-15T04:56:15+08:00 +2026/05/15 04:56:15.840, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.43, 65 +2026-05-15T04:56:20+08:00 +2026/05/15 04:56:20.863, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.32, 65 +2026-05-15T04:56:25+08:00 +2026/05/15 04:56:25.887, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.33, 65 +2026-05-15T04:56:30+08:00 +2026/05/15 04:56:30.911, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.36, 65 +2026-05-15T04:56:35+08:00 +2026/05/15 04:56:35.937, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.72, 65 +2026-05-15T04:56:40+08:00 +2026/05/15 04:56:40.959, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.57, 66 +2026-05-15T04:56:45+08:00 +2026/05/15 04:56:45.986, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.57, 66 +2026-05-15T04:56:50+08:00 +2026/05/15 04:56:51.008, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.47, 66 +2026-05-15T04:56:56+08:00 +2026/05/15 04:56:56.031, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.36, 66 +2026-05-15T04:57:01+08:00 +2026/05/15 04:57:01.053, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.19, 64 +2026-05-15T04:57:06+08:00 +2026/05/15 04:57:06.079, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.59, 65 +2026-05-15T04:57:11+08:00 +2026/05/15 04:57:11.102, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.61, 66 +2026-05-15T04:57:16+08:00 +2026/05/15 04:57:16.126, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.61, 65 +2026-05-15T04:57:21+08:00 +2026/05/15 04:57:21.150, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.01, 65 +2026-05-15T04:57:26+08:00 +2026/05/15 04:57:26.178, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.71, 66 +2026-05-15T04:57:31+08:00 +2026/05/15 04:57:31.205, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.38, 66 +2026-05-15T04:57:36+08:00 +2026/05/15 04:57:36.228, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.08, 65 +2026-05-15T04:57:41+08:00 +2026/05/15 04:57:41.256, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.50, 66 +2026-05-15T04:57:46+08:00 +2026/05/15 04:57:46.279, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.73, 66 +2026-05-15T04:57:51+08:00 +2026/05/15 04:57:51.303, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.74, 66 +2026-05-15T04:57:56+08:00 +2026/05/15 04:57:56.327, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.77, 66 +2026-05-15T04:58:01+08:00 +2026/05/15 04:58:01.350, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 66 +2026-05-15T04:58:06+08:00 +2026/05/15 04:58:06.377, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.83, 66 +2026-05-15T04:58:11+08:00 +2026/05/15 04:58:11.400, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.50, 65 +2026-05-15T04:58:16+08:00 +2026/05/15 04:58:16.425, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 250.69, 65 +2026-05-15T04:58:21+08:00 +2026/05/15 04:58:21.449, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.74, 65 +2026-05-15T04:58:26+08:00 +2026/05/15 04:58:26.473, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.88, 65 +2026-05-15T04:58:31+08:00 +2026/05/15 04:58:31.497, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.83, 66 +2026-05-15T04:58:36+08:00 +2026/05/15 04:58:36.522, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.91, 66 +2026-05-15T04:58:41+08:00 +2026/05/15 04:58:41.547, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.60, 65 +2026-05-15T04:58:46+08:00 +2026/05/15 04:58:46.571, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.13, 65 +2026-05-15T04:58:51+08:00 +2026/05/15 04:58:51.596, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.27, 66 +2026-05-15T04:58:56+08:00 +2026/05/15 04:58:56.621, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.47, 66 +2026-05-15T04:59:01+08:00 +2026/05/15 04:59:01.643, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.46, 66 +2026-05-15T04:59:06+08:00 +2026/05/15 04:59:06.667, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.10, 66 +2026-05-15T04:59:11+08:00 +2026/05/15 04:59:11.691, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.03, 66 +2026-05-15T04:59:16+08:00 +2026/05/15 04:59:16.716, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.83, 66 +2026-05-15T04:59:21+08:00 +2026/05/15 04:59:21.738, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.57, 66 +2026-05-15T04:59:26+08:00 +2026/05/15 04:59:26.762, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.98, 66 +2026-05-15T04:59:31+08:00 +2026/05/15 04:59:31.786, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 66 +2026-05-15T04:59:36+08:00 +2026/05/15 04:59:36.809, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.77, 65 +2026-05-15T04:59:41+08:00 +2026/05/15 04:59:41.836, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.70, 66 +2026-05-15T04:59:46+08:00 +2026/05/15 04:59:46.860, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.02, 66 +2026-05-15T04:59:51+08:00 +2026/05/15 04:59:51.883, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.55, 66 +2026-05-15T04:59:56+08:00 +2026/05/15 04:59:56.906, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.40, 65 +2026-05-15T05:00:01+08:00 +2026/05/15 05:00:01.932, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.42, 65 +2026-05-15T05:00:06+08:00 +2026/05/15 05:00:06.955, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 364.07, 65 +2026-05-15T05:00:11+08:00 +2026/05/15 05:00:11.980, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.35, 66 +2026-05-15T05:00:16+08:00 +2026/05/15 05:00:17.004, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.37, 66 +2026-05-15T05:00:22+08:00 +2026/05/15 05:00:22.028, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.97, 65 +2026-05-15T05:00:27+08:00 +2026/05/15 05:00:27.052, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.20, 65 +2026-05-15T05:00:32+08:00 +2026/05/15 05:00:32.077, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.63, 65 +2026-05-15T05:00:37+08:00 +2026/05/15 05:00:37.101, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.12, 65 +2026-05-15T05:00:42+08:00 +2026/05/15 05:00:42.127, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.67, 65 +2026-05-15T05:00:47+08:00 +2026/05/15 05:00:47.149, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.70, 65 +2026-05-15T05:00:52+08:00 +2026/05/15 05:00:52.175, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.09, 67 +2026-05-15T05:00:57+08:00 +2026/05/15 05:00:57.199, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.45, 65 +2026-05-15T05:01:02+08:00 +2026/05/15 05:01:02.223, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.46, 65 +2026-05-15T05:01:07+08:00 +2026/05/15 05:01:07.247, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 357.71, 66 +2026-05-15T05:01:12+08:00 +2026/05/15 05:01:12.270, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 65 +2026-05-15T05:01:17+08:00 +2026/05/15 05:01:17.294, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 355.64, 65 +2026-05-15T05:01:22+08:00 +2026/05/15 05:01:22.318, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.69, 66 +2026-05-15T05:01:27+08:00 +2026/05/15 05:01:27.345, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 273.49, 64 +2026-05-15T05:01:32+08:00 +2026/05/15 05:01:32.369, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.01, 64 +2026-05-15T05:01:37+08:00 +2026/05/15 05:01:37.391, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.63, 64 +2026-05-15T05:01:42+08:00 +2026/05/15 05:01:42.420, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.85, 64 +2026-05-15T05:01:47+08:00 +2026/05/15 05:01:47.443, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.31, 64 +2026-05-15T05:01:52+08:00 +2026/05/15 05:01:52.467, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 64 +2026-05-15T05:01:57+08:00 +2026/05/15 05:01:57.491, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.19, 65 +2026-05-15T05:02:02+08:00 +2026/05/15 05:02:02.563, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.93, 65 +2026-05-15T05:02:07+08:00 +2026/05/15 05:02:07.622, NVIDIA GeForce RTX 5090, 15, 0, 9607, 32607, 196.29, 64 +2026-05-15T05:02:12+08:00 +2026/05/15 05:02:12.654, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.27, 65 +2026-05-15T05:02:17+08:00 +2026/05/15 05:02:17.678, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.40, 65 +2026-05-15T05:02:22+08:00 +2026/05/15 05:02:22.702, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.61, 65 +2026-05-15T05:02:27+08:00 +2026/05/15 05:02:27.725, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.49, 65 +2026-05-15T05:02:32+08:00 +2026/05/15 05:02:32.748, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.84, 65 +2026-05-15T05:02:37+08:00 +2026/05/15 05:02:37.772, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.53, 65 +2026-05-15T05:02:42+08:00 +2026/05/15 05:02:42.796, NVIDIA GeForce RTX 5090, 70, 32, 9607, 32607, 262.52, 64 +2026-05-15T05:02:47+08:00 +2026/05/15 05:02:47.820, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.73, 66 +2026-05-15T05:02:52+08:00 +2026/05/15 05:02:52.844, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.81, 65 +2026-05-15T05:02:57+08:00 +2026/05/15 05:02:57.915, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.88, 66 +2026-05-15T05:03:02+08:00 +2026/05/15 05:03:02.938, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.09, 66 +2026-05-15T05:03:07+08:00 +2026/05/15 05:03:08.010, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.97, 66 +2026-05-15T05:03:13+08:00 +2026/05/15 05:03:13.033, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.71, 66 +2026-05-15T05:03:18+08:00 +2026/05/15 05:03:18.103, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.70, 66 +2026-05-15T05:03:23+08:00 +2026/05/15 05:03:23.157, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.16, 65 +2026-05-15T05:03:28+08:00 +2026/05/15 05:03:28.181, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.91, 65 +2026-05-15T05:03:33+08:00 +2026/05/15 05:03:33.223, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 200.68, 64 +2026-05-15T05:03:38+08:00 +2026/05/15 05:03:38.266, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.89, 66 +2026-05-15T05:03:43+08:00 +2026/05/15 05:03:43.308, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.99, 66 +2026-05-15T05:03:48+08:00 +2026/05/15 05:03:48.332, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.74, 65 +2026-05-15T05:03:53+08:00 +2026/05/15 05:03:53.356, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.59, 66 +2026-05-15T05:03:58+08:00 +2026/05/15 05:03:58.381, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.33, 65 +2026-05-15T05:04:03+08:00 +2026/05/15 05:04:03.410, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.02, 66 +2026-05-15T05:04:08+08:00 +2026/05/15 05:04:08.433, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.80, 66 +2026-05-15T05:04:13+08:00 +2026/05/15 05:04:13.462, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.62, 66 +2026-05-15T05:04:18+08:00 +2026/05/15 05:04:18.485, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.20, 66 +2026-05-15T05:04:23+08:00 +2026/05/15 05:04:23.509, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.76, 66 +2026-05-15T05:04:28+08:00 +2026/05/15 05:04:28.531, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.82, 65 +2026-05-15T05:04:33+08:00 +2026/05/15 05:04:33.557, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.45, 65 +2026-05-15T05:04:38+08:00 +2026/05/15 05:04:38.582, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 261.61, 59 +2026-05-15T05:04:43+08:00 +2026/05/15 05:04:43.605, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.22, 65 +2026-05-15T05:04:48+08:00 +2026/05/15 05:04:48.629, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.17, 66 +2026-05-15T05:04:53+08:00 +2026/05/15 05:04:53.652, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.36, 66 +2026-05-15T05:04:58+08:00 +2026/05/15 05:04:58.679, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.27, 66 +2026-05-15T05:05:03+08:00 +2026/05/15 05:05:03.704, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.83, 65 +2026-05-15T05:05:08+08:00 +2026/05/15 05:05:08.727, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.27, 66 +2026-05-15T05:05:13+08:00 +2026/05/15 05:05:13.751, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.32, 66 +2026-05-15T05:05:18+08:00 +2026/05/15 05:05:18.782, NVIDIA GeForce RTX 5090, 80, 35, 9607, 32607, 257.10, 64 +2026-05-15T05:05:23+08:00 +2026/05/15 05:05:23.805, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.30, 65 +2026-05-15T05:05:28+08:00 +2026/05/15 05:05:28.830, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.39, 65 +2026-05-15T05:05:33+08:00 +2026/05/15 05:05:33.853, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.67, 65 +2026-05-15T05:05:38+08:00 +2026/05/15 05:05:38.877, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.16, 65 +2026-05-15T05:05:43+08:00 +2026/05/15 05:05:43.901, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.12, 65 +2026-05-15T05:05:48+08:00 +2026/05/15 05:05:48.925, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.40, 65 +2026-05-15T05:05:53+08:00 +2026/05/15 05:05:53.949, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.13, 65 +2026-05-15T05:05:58+08:00 +2026/05/15 05:05:58.971, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.42, 65 +2026-05-15T05:06:03+08:00 +2026/05/15 05:06:03.991, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.83, 65 +2026-05-15T05:06:09+08:00 +2026/05/15 05:06:09.016, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 364.33, 65 +2026-05-15T05:06:14+08:00 +2026/05/15 05:06:14.040, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.51, 65 +2026-05-15T05:06:19+08:00 +2026/05/15 05:06:19.064, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.66, 66 +2026-05-15T05:06:24+08:00 +2026/05/15 05:06:24.086, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.83, 66 +2026-05-15T05:06:29+08:00 +2026/05/15 05:06:29.111, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.92, 66 +2026-05-15T05:06:34+08:00 +2026/05/15 05:06:34.133, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.88, 65 +2026-05-15T05:06:39+08:00 +2026/05/15 05:06:39.159, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.41, 65 +2026-05-15T05:06:44+08:00 +2026/05/15 05:06:44.184, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.56, 65 +2026-05-15T05:06:49+08:00 +2026/05/15 05:06:49.207, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.98, 66 +2026-05-15T05:06:54+08:00 +2026/05/15 05:06:54.230, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.64, 66 +2026-05-15T05:06:59+08:00 +2026/05/15 05:06:59.254, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.79, 66 +2026-05-15T05:07:04+08:00 +2026/05/15 05:07:04.277, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.67, 66 +2026-05-15T05:07:09+08:00 +2026/05/15 05:07:09.302, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 217.23, 64 +2026-05-15T05:07:14+08:00 +2026/05/15 05:07:14.323, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.09, 66 +2026-05-15T05:07:19+08:00 +2026/05/15 05:07:19.346, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 364.59, 66 +2026-05-15T05:07:24+08:00 +2026/05/15 05:07:24.371, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.09, 66 +2026-05-15T05:07:29+08:00 +2026/05/15 05:07:29.393, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.03, 65 +2026-05-15T05:07:34+08:00 +2026/05/15 05:07:34.417, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.54, 66 +2026-05-15T05:07:39+08:00 +2026/05/15 05:07:39.442, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.69, 65 +2026-05-15T05:07:44+08:00 +2026/05/15 05:07:44.465, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.25, 65 +2026-05-15T05:07:49+08:00 +2026/05/15 05:07:49.487, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.96, 65 +2026-05-15T05:07:54+08:00 +2026/05/15 05:07:54.510, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.19, 66 +2026-05-15T05:07:59+08:00 +2026/05/15 05:07:59.533, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.57, 65 +2026-05-15T05:08:04+08:00 +2026/05/15 05:08:04.556, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.14, 65 +2026-05-15T05:08:09+08:00 +2026/05/15 05:08:09.580, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.67, 65 +2026-05-15T05:08:14+08:00 +2026/05/15 05:08:14.603, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.71, 66 +2026-05-15T05:08:19+08:00 +2026/05/15 05:08:19.627, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.08, 66 +2026-05-15T05:08:24+08:00 +2026/05/15 05:08:24.649, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.71, 64 +2026-05-15T05:08:29+08:00 +2026/05/15 05:08:29.672, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.51, 65 +2026-05-15T05:08:34+08:00 +2026/05/15 05:08:34.695, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.71, 66 +2026-05-15T05:08:39+08:00 +2026/05/15 05:08:39.719, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.31, 66 +2026-05-15T05:08:44+08:00 +2026/05/15 05:08:44.743, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.37, 66 +2026-05-15T05:08:49+08:00 +2026/05/15 05:08:49.768, NVIDIA GeForce RTX 5090, 88, 36, 9607, 32607, 364.77, 66 +2026-05-15T05:08:54+08:00 +2026/05/15 05:08:54.792, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.37, 65 +2026-05-15T05:08:59+08:00 +2026/05/15 05:08:59.816, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.50, 65 +2026-05-15T05:09:04+08:00 +2026/05/15 05:09:04.840, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.59, 65 +2026-05-15T05:09:09+08:00 +2026/05/15 05:09:09.864, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.94, 65 +2026-05-15T05:09:14+08:00 +2026/05/15 05:09:14.888, NVIDIA GeForce RTX 5090, 60, 21, 9607, 32607, 261.29, 65 +2026-05-15T05:09:19+08:00 +2026/05/15 05:09:19.912, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 365.01, 66 +2026-05-15T05:09:24+08:00 +2026/05/15 05:09:24.935, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.45, 66 +2026-05-15T05:09:29+08:00 +2026/05/15 05:09:29.958, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.01, 65 +2026-05-15T05:09:34+08:00 +2026/05/15 05:09:34.983, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.56, 66 +2026-05-15T05:09:39+08:00 +2026/05/15 05:09:40.006, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.56, 66 +2026-05-15T05:09:45+08:00 +2026/05/15 05:09:45.029, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.96, 65 +2026-05-15T05:09:50+08:00 +2026/05/15 05:09:50.053, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 359.74, 65 +2026-05-15T05:09:55+08:00 +2026/05/15 05:09:55.076, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.34, 65 +2026-05-15T05:10:00+08:00 +2026/05/15 05:10:00.100, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.24, 65 +2026-05-15T05:10:05+08:00 +2026/05/15 05:10:05.127, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.02, 66 +2026-05-15T05:10:10+08:00 +2026/05/15 05:10:10.150, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 366.66, 66 +2026-05-15T05:10:15+08:00 +2026/05/15 05:10:15.178, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.87, 66 +2026-05-15T05:10:20+08:00 +2026/05/15 05:10:20.202, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.68, 65 +2026-05-15T05:10:25+08:00 +2026/05/15 05:10:25.228, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.75, 66 +2026-05-15T05:10:30+08:00 +2026/05/15 05:10:30.253, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.02, 66 +2026-05-15T05:10:35+08:00 +2026/05/15 05:10:35.277, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.42, 65 +2026-05-15T05:10:40+08:00 +2026/05/15 05:10:40.301, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.71, 66 +2026-05-15T05:10:45+08:00 +2026/05/15 05:10:45.325, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.95, 64 +2026-05-15T05:10:50+08:00 +2026/05/15 05:10:50.348, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.61, 66 +2026-05-15T05:10:55+08:00 +2026/05/15 05:10:55.371, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.58, 66 +2026-05-15T05:11:00+08:00 +2026/05/15 05:11:00.393, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.50, 66 +2026-05-15T05:11:05+08:00 +2026/05/15 05:11:05.417, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.55, 65 +2026-05-15T05:11:10+08:00 +2026/05/15 05:11:10.443, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.93, 66 +2026-05-15T05:11:15+08:00 +2026/05/15 05:11:15.469, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.32, 65 +2026-05-15T05:11:20+08:00 +2026/05/15 05:11:20.495, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 66 +2026-05-15T05:11:25+08:00 +2026/05/15 05:11:25.519, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.87, 65 +2026-05-15T05:11:30+08:00 +2026/05/15 05:11:30.544, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.97, 66 +2026-05-15T05:11:35+08:00 +2026/05/15 05:11:35.568, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.71, 66 +2026-05-15T05:11:40+08:00 +2026/05/15 05:11:40.591, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.65, 65 +2026-05-15T05:11:45+08:00 +2026/05/15 05:11:45.616, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.50, 65 +2026-05-15T05:11:50+08:00 +2026/05/15 05:11:50.639, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.55, 65 +2026-05-15T05:11:55+08:00 +2026/05/15 05:11:55.665, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 356.25, 65 +2026-05-15T05:12:00+08:00 +2026/05/15 05:12:00.688, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.62, 66 +2026-05-15T05:12:05+08:00 +2026/05/15 05:12:05.712, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.68, 65 +2026-05-15T05:12:10+08:00 +2026/05/15 05:12:10.735, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.99, 67 +2026-05-15T05:12:15+08:00 +2026/05/15 05:12:15.759, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 358.13, 64 +2026-05-15T05:12:20+08:00 +2026/05/15 05:12:20.784, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 294.80, 60 +2026-05-15T05:12:25+08:00 +2026/05/15 05:12:25.810, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.93, 66 +2026-05-15T05:12:30+08:00 +2026/05/15 05:12:30.835, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.79, 65 +2026-05-15T05:12:35+08:00 +2026/05/15 05:12:35.860, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.54, 65 +2026-05-15T05:12:40+08:00 +2026/05/15 05:12:40.886, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.02, 65 +2026-05-15T05:12:45+08:00 +2026/05/15 05:12:45.909, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.10, 66 +2026-05-15T05:12:50+08:00 +2026/05/15 05:12:50.933, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.99, 66 +2026-05-15T05:12:55+08:00 +2026/05/15 05:12:55.961, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.02, 66 +2026-05-15T05:13:00+08:00 +2026/05/15 05:13:00.985, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 274.78, 65 +2026-05-15T05:13:05+08:00 +2026/05/15 05:13:06.009, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.44, 65 +2026-05-15T05:13:11+08:00 +2026/05/15 05:13:11.032, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.74, 66 +2026-05-15T05:13:16+08:00 +2026/05/15 05:13:16.057, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.92, 66 +2026-05-15T05:13:21+08:00 +2026/05/15 05:13:21.080, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.41, 66 +2026-05-15T05:13:26+08:00 +2026/05/15 05:13:26.106, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.75, 67 +2026-05-15T05:13:31+08:00 +2026/05/15 05:13:31.132, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.00, 66 +2026-05-15T05:13:36+08:00 +2026/05/15 05:13:36.162, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.24, 66 +2026-05-15T05:13:41+08:00 +2026/05/15 05:13:41.185, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 329.23, 65 +2026-05-15T05:13:46+08:00 +2026/05/15 05:13:46.210, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.77, 66 +2026-05-15T05:13:51+08:00 +2026/05/15 05:13:51.233, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.20, 66 +2026-05-15T05:13:56+08:00 +2026/05/15 05:13:56.289, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 198.55, 65 +2026-05-15T05:14:01+08:00 +2026/05/15 05:14:01.313, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.87, 65 +2026-05-15T05:14:06+08:00 +2026/05/15 05:14:06.335, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.57, 65 +2026-05-15T05:14:11+08:00 +2026/05/15 05:14:11.377, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.14, 66 +2026-05-15T05:14:16+08:00 +2026/05/15 05:14:16.399, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.18, 65 +2026-05-15T05:14:21+08:00 +2026/05/15 05:14:21.443, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.75, 65 +2026-05-15T05:14:26+08:00 +2026/05/15 05:14:26.515, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.01, 65 +2026-05-15T05:14:31+08:00 +2026/05/15 05:14:31.539, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.68, 65 +2026-05-15T05:14:36+08:00 +2026/05/15 05:14:36.609, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.67, 66 +2026-05-15T05:14:41+08:00 +2026/05/15 05:14:41.633, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.25, 66 +2026-05-15T05:14:46+08:00 +2026/05/15 05:14:46.705, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.17, 65 +2026-05-15T05:14:51+08:00 +2026/05/15 05:14:51.729, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.18, 65 +2026-05-15T05:14:56+08:00 +2026/05/15 05:14:56.769, NVIDIA GeForce RTX 5090, 70, 32, 9607, 32607, 266.35, 65 +2026-05-15T05:15:01+08:00 +2026/05/15 05:15:01.796, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.90, 66 +2026-05-15T05:15:06+08:00 +2026/05/15 05:15:06.838, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.47, 66 +2026-05-15T05:15:11+08:00 +2026/05/15 05:15:11.910, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.14, 66 +2026-05-15T05:15:16+08:00 +2026/05/15 05:15:16.932, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.82, 65 +2026-05-15T05:15:21+08:00 +2026/05/15 05:15:21.974, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.11, 66 +2026-05-15T05:15:26+08:00 +2026/05/15 05:15:26.997, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.16, 65 +2026-05-15T05:15:32+08:00 +2026/05/15 05:15:32.022, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.70, 65 +2026-05-15T05:15:37+08:00 +2026/05/15 05:15:37.046, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 343.71, 64 +2026-05-15T05:15:42+08:00 +2026/05/15 05:15:42.070, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.12, 65 +2026-05-15T05:15:47+08:00 +2026/05/15 05:15:47.093, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.78, 65 +2026-05-15T05:15:52+08:00 +2026/05/15 05:15:52.119, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.73, 66 +2026-05-15T05:15:57+08:00 +2026/05/15 05:15:57.150, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.04, 66 +2026-05-15T05:16:02+08:00 +2026/05/15 05:16:02.182, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.73, 66 +2026-05-15T05:16:07+08:00 +2026/05/15 05:16:07.205, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.70, 65 +2026-05-15T05:16:12+08:00 +2026/05/15 05:16:12.280, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.47, 65 +2026-05-15T05:16:17+08:00 +2026/05/15 05:16:17.304, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.91, 64 +2026-05-15T05:16:22+08:00 +2026/05/15 05:16:22.372, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.11, 66 +2026-05-15T05:16:27+08:00 +2026/05/15 05:16:27.394, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.34, 65 +2026-05-15T05:16:32+08:00 +2026/05/15 05:16:32.465, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.71, 65 +2026-05-15T05:16:37+08:00 +2026/05/15 05:16:37.488, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.18, 66 +2026-05-15T05:16:42+08:00 +2026/05/15 05:16:42.564, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.70, 66 +2026-05-15T05:16:47+08:00 +2026/05/15 05:16:47.606, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.92, 66 +2026-05-15T05:16:52+08:00 +2026/05/15 05:16:52.630, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.01, 65 +2026-05-15T05:16:57+08:00 +2026/05/15 05:16:57.704, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.50, 66 +2026-05-15T05:17:02+08:00 +2026/05/15 05:17:02.727, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.50, 66 +2026-05-15T05:17:07+08:00 +2026/05/15 05:17:07.750, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.72, 65 +2026-05-15T05:17:12+08:00 +2026/05/15 05:17:12.773, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.71, 65 +2026-05-15T05:17:17+08:00 +2026/05/15 05:17:17.797, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 366.09, 65 +2026-05-15T05:17:22+08:00 +2026/05/15 05:17:22.819, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.98, 65 +2026-05-15T05:17:27+08:00 +2026/05/15 05:17:27.844, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 356.49, 65 +2026-05-15T05:17:32+08:00 +2026/05/15 05:17:32.868, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 318.74, 60 +2026-05-15T05:17:37+08:00 +2026/05/15 05:17:37.892, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.19, 66 +2026-05-15T05:17:42+08:00 +2026/05/15 05:17:42.915, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.20, 67 +2026-05-15T05:17:47+08:00 +2026/05/15 05:17:47.940, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.64, 67 +2026-05-15T05:17:52+08:00 +2026/05/15 05:17:52.965, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.84, 66 +2026-05-15T05:17:57+08:00 +2026/05/15 05:17:57.991, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.83, 66 +2026-05-15T05:18:03+08:00 +2026/05/15 05:18:03.016, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.44, 66 +2026-05-15T05:18:08+08:00 +2026/05/15 05:18:08.040, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.18, 66 +2026-05-15T05:18:13+08:00 +2026/05/15 05:18:13.064, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.44, 65 +2026-05-15T05:18:18+08:00 +2026/05/15 05:18:18.107, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.61, 67 +2026-05-15T05:18:23+08:00 +2026/05/15 05:18:23.133, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.84, 66 +2026-05-15T05:18:28+08:00 +2026/05/15 05:18:28.156, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.38, 66 +2026-05-15T05:18:33+08:00 +2026/05/15 05:18:33.183, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.66, 65 +2026-05-15T05:18:38+08:00 +2026/05/15 05:18:38.208, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.35, 64 +2026-05-15T05:18:43+08:00 +2026/05/15 05:18:43.236, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.07, 66 +2026-05-15T05:18:48+08:00 +2026/05/15 05:18:48.260, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.35, 65 +2026-05-15T05:18:53+08:00 +2026/05/15 05:18:53.285, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.87, 65 +2026-05-15T05:18:58+08:00 +2026/05/15 05:18:58.316, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.78, 66 +2026-05-15T05:19:03+08:00 +2026/05/15 05:19:03.341, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 367.09, 66 +2026-05-15T05:19:08+08:00 +2026/05/15 05:19:08.366, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.39, 66 +2026-05-15T05:19:13+08:00 +2026/05/15 05:19:13.391, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.49, 65 +2026-05-15T05:19:18+08:00 +2026/05/15 05:19:18.412, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.43, 66 +2026-05-15T05:19:23+08:00 +2026/05/15 05:19:23.434, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 281.77, 60 +2026-05-15T05:19:28+08:00 +2026/05/15 05:19:28.457, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.66, 65 +2026-05-15T05:19:33+08:00 +2026/05/15 05:19:33.480, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.22, 66 +2026-05-15T05:19:38+08:00 +2026/05/15 05:19:38.504, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.02, 66 +2026-05-15T05:19:43+08:00 +2026/05/15 05:19:43.528, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.24, 66 +2026-05-15T05:19:48+08:00 +2026/05/15 05:19:48.552, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.00, 66 +2026-05-15T05:19:53+08:00 +2026/05/15 05:19:53.576, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.55, 65 +2026-05-15T05:19:58+08:00 +2026/05/15 05:19:58.600, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.00, 66 +2026-05-15T05:20:03+08:00 +2026/05/15 05:20:03.624, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.57, 66 +2026-05-15T05:20:08+08:00 +2026/05/15 05:20:08.648, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.15, 65 +2026-05-15T05:20:13+08:00 +2026/05/15 05:20:13.671, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.82, 65 +2026-05-15T05:20:18+08:00 +2026/05/15 05:20:18.695, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.83, 64 +2026-05-15T05:20:23+08:00 +2026/05/15 05:20:23.720, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.61, 65 +2026-05-15T05:20:28+08:00 +2026/05/15 05:20:28.743, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.54, 65 +2026-05-15T05:20:33+08:00 +2026/05/15 05:20:33.768, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.01, 65 +2026-05-15T05:20:38+08:00 +2026/05/15 05:20:38.792, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.56, 65 +2026-05-15T05:20:43+08:00 +2026/05/15 05:20:43.820, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.32, 66 +2026-05-15T05:20:48+08:00 +2026/05/15 05:20:48.843, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.15, 66 +2026-05-15T05:20:53+08:00 +2026/05/15 05:20:53.868, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.46, 66 +2026-05-15T05:20:58+08:00 +2026/05/15 05:20:58.893, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.28, 66 +2026-05-15T05:21:03+08:00 +2026/05/15 05:21:03.916, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.98, 66 +2026-05-15T05:21:08+08:00 +2026/05/15 05:21:08.941, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.35, 66 +2026-05-15T05:21:13+08:00 +2026/05/15 05:21:13.966, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 315.39, 65 +2026-05-15T05:21:18+08:00 +2026/05/15 05:21:18.991, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.25, 65 +2026-05-15T05:21:24+08:00 +2026/05/15 05:21:24.018, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.20, 65 +2026-05-15T05:21:29+08:00 +2026/05/15 05:21:29.041, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.97, 65 +2026-05-15T05:21:34+08:00 +2026/05/15 05:21:34.064, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.66, 66 +2026-05-15T05:21:39+08:00 +2026/05/15 05:21:39.087, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.57, 66 +2026-05-15T05:21:44+08:00 +2026/05/15 05:21:44.113, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.00, 65 +2026-05-15T05:21:49+08:00 +2026/05/15 05:21:49.138, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.54, 66 +2026-05-15T05:21:54+08:00 +2026/05/15 05:21:54.163, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.74, 65 +2026-05-15T05:21:59+08:00 +2026/05/15 05:21:59.186, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.36, 66 +2026-05-15T05:22:04+08:00 +2026/05/15 05:22:04.210, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.64, 66 +2026-05-15T05:22:09+08:00 +2026/05/15 05:22:09.234, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.23, 66 +2026-05-15T05:22:14+08:00 +2026/05/15 05:22:14.258, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.59, 66 +2026-05-15T05:22:19+08:00 +2026/05/15 05:22:19.282, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.42, 65 +2026-05-15T05:22:24+08:00 +2026/05/15 05:22:24.308, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.23, 65 +2026-05-15T05:22:29+08:00 +2026/05/15 05:22:29.331, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.89, 65 +2026-05-15T05:22:34+08:00 +2026/05/15 05:22:34.355, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.90, 66 +2026-05-15T05:22:39+08:00 +2026/05/15 05:22:39.378, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 224.63, 62 +2026-05-15T05:22:44+08:00 +2026/05/15 05:22:44.402, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 65 +2026-05-15T05:22:49+08:00 +2026/05/15 05:22:49.425, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.26, 65 +2026-05-15T05:22:54+08:00 +2026/05/15 05:22:54.448, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.21, 65 +2026-05-15T05:22:59+08:00 +2026/05/15 05:22:59.472, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.28, 65 +2026-05-15T05:23:04+08:00 +2026/05/15 05:23:04.496, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.58, 65 +2026-05-15T05:23:09+08:00 +2026/05/15 05:23:09.519, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.63, 66 +2026-05-15T05:23:14+08:00 +2026/05/15 05:23:14.546, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.25, 65 +2026-05-15T05:23:19+08:00 +2026/05/15 05:23:19.570, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.72, 65 +2026-05-15T05:23:24+08:00 +2026/05/15 05:23:24.594, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.19, 66 +2026-05-15T05:23:29+08:00 +2026/05/15 05:23:29.618, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.18, 66 +2026-05-15T05:23:34+08:00 +2026/05/15 05:23:34.643, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 363.30, 64 +2026-05-15T05:23:39+08:00 +2026/05/15 05:23:39.669, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.49, 65 +2026-05-15T05:23:44+08:00 +2026/05/15 05:23:44.693, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 280.05, 59 +2026-05-15T05:23:49+08:00 +2026/05/15 05:23:49.715, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 364.75, 65 +2026-05-15T05:23:54+08:00 +2026/05/15 05:23:54.738, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 65 +2026-05-15T05:23:59+08:00 +2026/05/15 05:23:59.763, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.13, 65 +2026-05-15T05:24:04+08:00 +2026/05/15 05:24:04.789, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.07, 66 +2026-05-15T05:24:09+08:00 +2026/05/15 05:24:09.813, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 365.39, 65 +2026-05-15T05:24:14+08:00 +2026/05/15 05:24:14.836, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.46, 65 +2026-05-15T05:24:19+08:00 +2026/05/15 05:24:19.860, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.79, 66 +2026-05-15T05:24:24+08:00 +2026/05/15 05:24:24.887, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.27, 65 +2026-05-15T05:24:29+08:00 +2026/05/15 05:24:29.939, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.16, 66 +2026-05-15T05:24:34+08:00 +2026/05/15 05:24:34.961, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.95, 66 +2026-05-15T05:24:39+08:00 +2026/05/15 05:24:40.017, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 366.05, 65 +2026-05-15T05:24:45+08:00 +2026/05/15 05:24:45.041, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.05, 66 +2026-05-15T05:24:50+08:00 +2026/05/15 05:24:50.092, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.92, 66 +2026-05-15T05:24:55+08:00 +2026/05/15 05:24:55.117, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.80, 65 +2026-05-15T05:25:00+08:00 +2026/05/15 05:25:00.167, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.97, 66 +2026-05-15T05:25:05+08:00 +2026/05/15 05:25:05.211, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.72, 66 +2026-05-15T05:25:10+08:00 +2026/05/15 05:25:10.235, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.92, 65 +2026-05-15T05:25:15+08:00 +2026/05/15 05:25:15.275, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.80, 65 +2026-05-15T05:25:20+08:00 +2026/05/15 05:25:20.316, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.27, 66 +2026-05-15T05:25:25+08:00 +2026/05/15 05:25:25.389, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.16, 66 +2026-05-15T05:25:30+08:00 +2026/05/15 05:25:30.413, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.48, 65 +2026-05-15T05:25:35+08:00 +2026/05/15 05:25:35.461, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.54, 65 +2026-05-15T05:25:40+08:00 +2026/05/15 05:25:40.484, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.33, 65 +2026-05-15T05:25:45+08:00 +2026/05/15 05:25:45.528, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 255.16, 64 +2026-05-15T05:25:50+08:00 +2026/05/15 05:25:50.553, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.38, 65 +2026-05-15T05:25:55+08:00 +2026/05/15 05:25:55.616, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.81, 66 +2026-05-15T05:26:00+08:00 +2026/05/15 05:26:00.652, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 365.86, 66 +2026-05-15T05:26:05+08:00 +2026/05/15 05:26:05.675, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 65 +2026-05-15T05:26:10+08:00 +2026/05/15 05:26:10.699, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.28, 66 +2026-05-15T05:26:15+08:00 +2026/05/15 05:26:15.752, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.39, 66 +2026-05-15T05:26:20+08:00 +2026/05/15 05:26:20.802, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 258.90, 64 +2026-05-15T05:26:25+08:00 +2026/05/15 05:26:25.827, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.67, 64 +2026-05-15T05:26:30+08:00 +2026/05/15 05:26:30.872, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.76, 64 +2026-05-15T05:26:35+08:00 +2026/05/15 05:26:35.896, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.27, 66 +2026-05-15T05:26:40+08:00 +2026/05/15 05:26:40.961, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.61, 65 +2026-05-15T05:26:45+08:00 +2026/05/15 05:26:45.992, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.44, 65 +2026-05-15T05:26:51+08:00 +2026/05/15 05:26:51.016, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.00, 66 +2026-05-15T05:26:56+08:00 +2026/05/15 05:26:56.042, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.45, 65 +2026-05-15T05:27:01+08:00 +2026/05/15 05:27:01.066, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 267.38, 63 +2026-05-15T05:27:06+08:00 +2026/05/15 05:27:06.091, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 363.90, 65 +2026-05-15T05:27:11+08:00 +2026/05/15 05:27:11.116, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.63, 65 +2026-05-15T05:27:16+08:00 +2026/05/15 05:27:16.143, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 364.01, 65 +2026-05-15T05:27:21+08:00 +2026/05/15 05:27:21.166, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.60, 64 +2026-05-15T05:27:26+08:00 +2026/05/15 05:27:26.191, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.54, 66 +2026-05-15T05:27:31+08:00 +2026/05/15 05:27:31.218, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.41, 66 +2026-05-15T05:27:36+08:00 +2026/05/15 05:27:36.241, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 366.26, 66 +2026-05-15T05:27:41+08:00 +2026/05/15 05:27:41.265, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.18, 66 +2026-05-15T05:27:46+08:00 +2026/05/15 05:27:46.289, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.55, 66 +2026-05-15T05:27:51+08:00 +2026/05/15 05:27:51.312, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 66 +2026-05-15T05:27:56+08:00 +2026/05/15 05:27:56.335, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.49, 65 +2026-05-15T05:28:01+08:00 +2026/05/15 05:28:01.358, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.82, 66 +2026-05-15T05:28:06+08:00 +2026/05/15 05:28:06.387, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.56, 66 +2026-05-15T05:28:11+08:00 +2026/05/15 05:28:11.411, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.35, 65 +2026-05-15T05:28:16+08:00 +2026/05/15 05:28:16.437, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.98, 65 +2026-05-15T05:28:21+08:00 +2026/05/15 05:28:21.460, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.76, 66 +2026-05-15T05:28:26+08:00 +2026/05/15 05:28:26.483, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.92, 65 +2026-05-15T05:28:31+08:00 +2026/05/15 05:28:31.507, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.01, 66 +2026-05-15T05:28:36+08:00 +2026/05/15 05:28:36.532, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.45, 66 +2026-05-15T05:28:41+08:00 +2026/05/15 05:28:41.557, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.74, 66 +2026-05-15T05:28:46+08:00 +2026/05/15 05:28:46.581, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.47, 66 +2026-05-15T05:28:51+08:00 +2026/05/15 05:28:51.605, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.22, 66 +2026-05-15T05:28:56+08:00 +2026/05/15 05:28:56.627, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 277.41, 60 +2026-05-15T05:29:01+08:00 +2026/05/15 05:29:01.650, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.67, 65 +2026-05-15T05:29:06+08:00 +2026/05/15 05:29:06.674, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.51, 66 +2026-05-15T05:29:11+08:00 +2026/05/15 05:29:11.701, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.50, 65 +2026-05-15T05:29:16+08:00 +2026/05/15 05:29:16.726, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.39, 65 +2026-05-15T05:29:21+08:00 +2026/05/15 05:29:21.751, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.76, 66 +2026-05-15T05:29:26+08:00 +2026/05/15 05:29:26.775, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.46, 65 +2026-05-15T05:29:31+08:00 +2026/05/15 05:29:31.801, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.95, 66 +2026-05-15T05:29:36+08:00 +2026/05/15 05:29:36.825, NVIDIA GeForce RTX 5090, 82, 36, 9607, 32607, 253.31, 65 +2026-05-15T05:29:41+08:00 +2026/05/15 05:29:41.849, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.17, 66 +2026-05-15T05:29:46+08:00 +2026/05/15 05:29:46.875, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 64 +2026-05-15T05:29:51+08:00 +2026/05/15 05:29:51.900, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.73, 66 +2026-05-15T05:29:56+08:00 +2026/05/15 05:29:56.925, NVIDIA GeForce RTX 5090, 44, 23, 9607, 32607, 199.66, 59 +2026-05-15T05:30:01+08:00 +2026/05/15 05:30:01.950, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.39, 65 +2026-05-15T05:30:06+08:00 +2026/05/15 05:30:06.976, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.14, 66 +2026-05-15T05:30:11+08:00 +2026/05/15 05:30:12.000, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.76, 66 +2026-05-15T05:30:17+08:00 +2026/05/15 05:30:17.024, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.16, 65 +2026-05-15T05:30:22+08:00 +2026/05/15 05:30:22.047, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.48, 66 +2026-05-15T05:30:27+08:00 +2026/05/15 05:30:27.071, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.27, 65 +2026-05-15T05:30:32+08:00 +2026/05/15 05:30:32.096, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.75, 64 +2026-05-15T05:30:37+08:00 +2026/05/15 05:30:37.121, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.50, 66 +2026-05-15T05:30:42+08:00 +2026/05/15 05:30:42.146, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.87, 65 +2026-05-15T05:30:47+08:00 +2026/05/15 05:30:47.173, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.18, 65 +2026-05-15T05:30:52+08:00 +2026/05/15 05:30:52.200, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.62, 66 +2026-05-15T05:30:57+08:00 +2026/05/15 05:30:57.225, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.92, 66 +2026-05-15T05:31:02+08:00 +2026/05/15 05:31:02.249, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.43, 65 +2026-05-15T05:31:07+08:00 +2026/05/15 05:31:07.272, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.01, 65 +2026-05-15T05:31:12+08:00 +2026/05/15 05:31:12.298, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.63, 66 +2026-05-15T05:31:17+08:00 +2026/05/15 05:31:17.322, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.42, 66 +2026-05-15T05:31:22+08:00 +2026/05/15 05:31:22.346, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.48, 66 +2026-05-15T05:31:27+08:00 +2026/05/15 05:31:27.371, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.89, 64 +2026-05-15T05:31:32+08:00 +2026/05/15 05:31:32.395, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.32, 66 +2026-05-15T05:31:37+08:00 +2026/05/15 05:31:37.420, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.94, 66 +2026-05-15T05:31:42+08:00 +2026/05/15 05:31:42.443, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.92, 65 +2026-05-15T05:31:47+08:00 +2026/05/15 05:31:47.465, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.83, 65 +2026-05-15T05:31:52+08:00 +2026/05/15 05:31:52.488, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.44, 66 +2026-05-15T05:31:57+08:00 +2026/05/15 05:31:57.513, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.72, 66 +2026-05-15T05:32:02+08:00 +2026/05/15 05:32:02.534, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.31, 66 +2026-05-15T05:32:07+08:00 +2026/05/15 05:32:07.557, NVIDIA GeForce RTX 5090, 84, 36, 9607, 32607, 365.45, 66 +2026-05-15T05:32:12+08:00 +2026/05/15 05:32:12.584, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 241.02, 65 +2026-05-15T05:32:17+08:00 +2026/05/15 05:32:17.607, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.77, 66 +2026-05-15T05:32:22+08:00 +2026/05/15 05:32:22.633, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.92, 66 +2026-05-15T05:32:27+08:00 +2026/05/15 05:32:27.659, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.80, 65 +2026-05-15T05:32:32+08:00 +2026/05/15 05:32:32.682, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.81, 64 +2026-05-15T05:32:37+08:00 +2026/05/15 05:32:37.707, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.32, 65 +2026-05-15T05:32:42+08:00 +2026/05/15 05:32:42.729, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.07, 65 +2026-05-15T05:32:47+08:00 +2026/05/15 05:32:47.758, NVIDIA GeForce RTX 5090, 88, 39, 9607, 32607, 363.99, 66 +2026-05-15T05:32:52+08:00 +2026/05/15 05:32:52.782, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.93, 66 +2026-05-15T05:32:57+08:00 +2026/05/15 05:32:57.805, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.52, 65 +2026-05-15T05:33:02+08:00 +2026/05/15 05:33:02.829, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.60, 65 +2026-05-15T05:33:07+08:00 +2026/05/15 05:33:07.853, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.54, 66 +2026-05-15T05:33:12+08:00 +2026/05/15 05:33:12.876, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.42, 65 +2026-05-15T05:33:17+08:00 +2026/05/15 05:33:17.900, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.28, 66 +2026-05-15T05:33:22+08:00 +2026/05/15 05:33:22.924, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 66 +2026-05-15T05:33:27+08:00 +2026/05/15 05:33:27.948, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.20, 65 +2026-05-15T05:33:32+08:00 +2026/05/15 05:33:32.976, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.54, 65 +2026-05-15T05:33:37+08:00 +2026/05/15 05:33:38.001, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 362.76, 65 +2026-05-15T05:33:43+08:00 +2026/05/15 05:33:43.025, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 355.93, 65 +2026-05-15T05:33:48+08:00 +2026/05/15 05:33:48.048, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.35, 65 +2026-05-15T05:33:53+08:00 +2026/05/15 05:33:53.074, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.81, 65 +2026-05-15T05:33:58+08:00 +2026/05/15 05:33:58.099, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.06, 66 +2026-05-15T05:34:03+08:00 +2026/05/15 05:34:03.121, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.35, 66 +2026-05-15T05:34:08+08:00 +2026/05/15 05:34:08.144, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 258.43, 64 +2026-05-15T05:34:13+08:00 +2026/05/15 05:34:13.168, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.48, 66 +2026-05-15T05:34:18+08:00 +2026/05/15 05:34:18.193, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 365.25, 65 +2026-05-15T05:34:23+08:00 +2026/05/15 05:34:23.216, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.22, 65 +2026-05-15T05:34:28+08:00 +2026/05/15 05:34:28.270, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.11, 66 +2026-05-15T05:34:33+08:00 +2026/05/15 05:34:33.296, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.11, 66 +2026-05-15T05:34:38+08:00 +2026/05/15 05:34:38.349, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.96, 66 +2026-05-15T05:34:43+08:00 +2026/05/15 05:34:43.373, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.20, 65 +2026-05-15T05:34:48+08:00 +2026/05/15 05:34:48.396, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 65 +2026-05-15T05:34:53+08:00 +2026/05/15 05:34:53.440, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.32, 66 +2026-05-15T05:34:58+08:00 +2026/05/15 05:34:58.516, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.49, 66 +2026-05-15T05:35:03+08:00 +2026/05/15 05:35:03.542, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.85, 65 +2026-05-15T05:35:08+08:00 +2026/05/15 05:35:08.615, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.17, 66 +2026-05-15T05:35:13+08:00 +2026/05/15 05:35:13.638, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.51, 66 +2026-05-15T05:35:18+08:00 +2026/05/15 05:35:18.683, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 364.07, 66 +2026-05-15T05:35:23+08:00 +2026/05/15 05:35:23.723, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 318.27, 60 +2026-05-15T05:35:28+08:00 +2026/05/15 05:35:28.745, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.19, 65 +2026-05-15T05:35:33+08:00 +2026/05/15 05:35:33.787, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.38, 66 +2026-05-15T05:35:38+08:00 +2026/05/15 05:35:38.810, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 287.73, 60 +2026-05-15T05:35:43+08:00 +2026/05/15 05:35:43.832, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.62, 65 +2026-05-15T05:35:48+08:00 +2026/05/15 05:35:48.856, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.19, 65 +2026-05-15T05:35:53+08:00 +2026/05/15 05:35:53.881, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.73, 67 +2026-05-15T05:35:58+08:00 +2026/05/15 05:35:58.906, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.03, 66 +2026-05-15T05:36:03+08:00 +2026/05/15 05:36:03.930, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.38, 65 +2026-05-15T05:36:08+08:00 +2026/05/15 05:36:08.956, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.60, 65 +2026-05-15T05:36:13+08:00 +2026/05/15 05:36:13.978, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.13, 66 +2026-05-15T05:36:18+08:00 +2026/05/15 05:36:19.002, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.39, 66 +2026-05-15T05:36:24+08:00 +2026/05/15 05:36:24.027, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.17, 66 +2026-05-15T05:36:29+08:00 +2026/05/15 05:36:29.050, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.76, 65 +2026-05-15T05:36:34+08:00 +2026/05/15 05:36:34.076, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.14, 66 +2026-05-15T05:36:39+08:00 +2026/05/15 05:36:39.100, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.70, 67 +2026-05-15T05:36:44+08:00 +2026/05/15 05:36:44.123, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.18, 65 +2026-05-15T05:36:49+08:00 +2026/05/15 05:36:49.150, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.02, 66 +2026-05-15T05:36:54+08:00 +2026/05/15 05:36:54.174, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.28, 66 +2026-05-15T05:36:59+08:00 +2026/05/15 05:36:59.199, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.89, 66 +2026-05-15T05:37:04+08:00 +2026/05/15 05:37:04.224, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.69, 66 +2026-05-15T05:37:09+08:00 +2026/05/15 05:37:09.248, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.09, 66 +2026-05-15T05:37:14+08:00 +2026/05/15 05:37:14.274, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.66, 65 +2026-05-15T05:37:19+08:00 +2026/05/15 05:37:19.300, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.18, 66 +2026-05-15T05:37:24+08:00 +2026/05/15 05:37:24.324, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.26, 66 +2026-05-15T05:37:29+08:00 +2026/05/15 05:37:29.348, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.25, 65 +2026-05-15T05:37:34+08:00 +2026/05/15 05:37:34.371, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 66 +2026-05-15T05:37:39+08:00 +2026/05/15 05:37:39.395, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.74, 66 +2026-05-15T05:37:44+08:00 +2026/05/15 05:37:44.419, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 366.59, 67 +2026-05-15T05:37:49+08:00 +2026/05/15 05:37:49.444, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.76, 65 +2026-05-15T05:37:54+08:00 +2026/05/15 05:37:54.467, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.09, 66 +2026-05-15T05:37:59+08:00 +2026/05/15 05:37:59.491, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 319.69, 64 +2026-05-15T05:38:04+08:00 +2026/05/15 05:38:04.514, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.52, 65 +2026-05-15T05:38:09+08:00 +2026/05/15 05:38:09.539, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 363.39, 66 +2026-05-15T05:38:14+08:00 +2026/05/15 05:38:14.562, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.13, 65 +2026-05-15T05:38:19+08:00 +2026/05/15 05:38:19.585, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.76, 66 +2026-05-15T05:38:24+08:00 +2026/05/15 05:38:24.609, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.32, 64 +2026-05-15T05:38:29+08:00 +2026/05/15 05:38:29.634, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.13, 66 +2026-05-15T05:38:34+08:00 +2026/05/15 05:38:34.663, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 365.05, 66 +2026-05-15T05:38:39+08:00 +2026/05/15 05:38:39.687, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 365.11, 65 +2026-05-15T05:38:44+08:00 +2026/05/15 05:38:44.713, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.32, 65 +2026-05-15T05:38:49+08:00 +2026/05/15 05:38:49.738, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.19, 65 +2026-05-15T05:38:54+08:00 +2026/05/15 05:38:54.763, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.12, 65 +2026-05-15T05:38:59+08:00 +2026/05/15 05:38:59.786, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.06, 66 +2026-05-15T05:39:04+08:00 +2026/05/15 05:39:04.810, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.38, 65 +2026-05-15T05:39:09+08:00 +2026/05/15 05:39:09.835, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.56, 66 +2026-05-15T05:39:14+08:00 +2026/05/15 05:39:14.859, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 251.92, 65 +2026-05-15T05:39:19+08:00 +2026/05/15 05:39:19.886, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.17, 66 +2026-05-15T05:39:24+08:00 +2026/05/15 05:39:24.909, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 362.61, 66 +2026-05-15T05:39:29+08:00 +2026/05/15 05:39:29.933, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.27, 66 +2026-05-15T05:39:34+08:00 +2026/05/15 05:39:34.957, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.13, 66 +2026-05-15T05:39:39+08:00 +2026/05/15 05:39:39.980, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.22, 66 +2026-05-15T05:39:44+08:00 +2026/05/15 05:39:45.006, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 238.69, 59 +2026-05-15T05:39:50+08:00 +2026/05/15 05:39:50.064, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.48, 65 +2026-05-15T05:39:55+08:00 +2026/05/15 05:39:55.087, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 308.50, 60 +2026-05-15T05:40:00+08:00 +2026/05/15 05:40:00.111, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 64 +2026-05-15T05:40:05+08:00 +2026/05/15 05:40:05.164, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.67, 65 +2026-05-15T05:40:10+08:00 +2026/05/15 05:40:10.188, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.79, 66 +2026-05-15T05:40:15+08:00 +2026/05/15 05:40:15.237, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.28, 65 +2026-05-15T05:40:20+08:00 +2026/05/15 05:40:20.296, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.31, 66 +2026-05-15T05:40:25+08:00 +2026/05/15 05:40:25.318, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.37, 65 +2026-05-15T05:40:30+08:00 +2026/05/15 05:40:30.340, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.63, 65 +2026-05-15T05:40:35+08:00 +2026/05/15 05:40:35.386, NVIDIA GeForce RTX 5090, 2, 1, 9607, 32607, 273.55, 59 +2026-05-15T05:40:40+08:00 +2026/05/15 05:40:40.410, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.91, 66 +2026-05-15T05:40:45+08:00 +2026/05/15 05:40:45.481, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.17, 66 +2026-05-15T05:40:50+08:00 +2026/05/15 05:40:50.505, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.19, 65 +2026-05-15T05:40:55+08:00 +2026/05/15 05:40:55.526, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.01, 67 +2026-05-15T05:41:00+08:00 +2026/05/15 05:41:00.569, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.54, 64 +2026-05-15T05:41:05+08:00 +2026/05/15 05:41:05.636, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.61, 66 +2026-05-15T05:41:10+08:00 +2026/05/15 05:41:10.662, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.62, 65 +2026-05-15T05:41:15+08:00 +2026/05/15 05:41:15.685, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.98, 65 +2026-05-15T05:41:20+08:00 +2026/05/15 05:41:20.726, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.19, 66 +2026-05-15T05:41:25+08:00 +2026/05/15 05:41:25.751, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.49, 66 +2026-05-15T05:41:30+08:00 +2026/05/15 05:41:30.776, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.51, 65 +2026-05-15T05:41:35+08:00 +2026/05/15 05:41:35.801, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.90, 66 +2026-05-15T05:41:40+08:00 +2026/05/15 05:41:40.823, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.90, 65 +2026-05-15T05:41:45+08:00 +2026/05/15 05:41:45.845, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.13, 66 +2026-05-15T05:41:50+08:00 +2026/05/15 05:41:50.873, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.80, 65 +2026-05-15T05:41:55+08:00 +2026/05/15 05:41:55.897, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.83, 65 +2026-05-15T05:42:00+08:00 +2026/05/15 05:42:00.921, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.78, 66 +2026-05-15T05:42:05+08:00 +2026/05/15 05:42:05.945, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.02, 65 +2026-05-15T05:42:10+08:00 +2026/05/15 05:42:10.967, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.34, 65 +2026-05-15T05:42:15+08:00 +2026/05/15 05:42:15.990, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.82, 66 +2026-05-15T05:42:20+08:00 +2026/05/15 05:42:21.014, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.27, 66 +2026-05-15T05:42:26+08:00 +2026/05/15 05:42:26.038, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.38, 66 +2026-05-15T05:42:31+08:00 +2026/05/15 05:42:31.064, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 214.79, 65 +2026-05-15T05:42:36+08:00 +2026/05/15 05:42:36.088, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 65 +2026-05-15T05:42:41+08:00 +2026/05/15 05:42:41.110, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.54, 65 +2026-05-15T05:42:46+08:00 +2026/05/15 05:42:46.133, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.32, 66 +2026-05-15T05:42:51+08:00 +2026/05/15 05:42:51.156, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.39, 66 +2026-05-15T05:42:56+08:00 +2026/05/15 05:42:56.180, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.97, 65 +2026-05-15T05:43:01+08:00 +2026/05/15 05:43:01.204, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.18, 65 +2026-05-15T05:43:06+08:00 +2026/05/15 05:43:06.228, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 366.18, 66 +2026-05-15T05:43:11+08:00 +2026/05/15 05:43:11.251, NVIDIA GeForce RTX 5090, 38, 13, 9607, 32607, 248.75, 59 +2026-05-15T05:43:16+08:00 +2026/05/15 05:43:16.275, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.20, 66 +2026-05-15T05:43:21+08:00 +2026/05/15 05:43:21.300, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 366.47, 66 +2026-05-15T05:43:26+08:00 +2026/05/15 05:43:26.323, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.34, 65 +2026-05-15T05:43:31+08:00 +2026/05/15 05:43:31.349, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.21, 65 +2026-05-15T05:43:36+08:00 +2026/05/15 05:43:36.373, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.97, 66 +2026-05-15T05:43:41+08:00 +2026/05/15 05:43:41.397, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 366.17, 66 +2026-05-15T05:43:46+08:00 +2026/05/15 05:43:46.421, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.62, 66 +2026-05-15T05:43:51+08:00 +2026/05/15 05:43:51.445, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.98, 65 +2026-05-15T05:43:56+08:00 +2026/05/15 05:43:56.469, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.11, 66 +2026-05-15T05:44:01+08:00 +2026/05/15 05:44:01.498, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.17, 66 +2026-05-15T05:44:06+08:00 +2026/05/15 05:44:06.521, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 242.40, 65 +2026-05-15T05:44:11+08:00 +2026/05/15 05:44:11.546, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.98, 66 +2026-05-15T05:44:16+08:00 +2026/05/15 05:44:16.571, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.42, 65 +2026-05-15T05:44:21+08:00 +2026/05/15 05:44:21.596, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.22, 65 +2026-05-15T05:44:26+08:00 +2026/05/15 05:44:26.626, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.86, 66 +2026-05-15T05:44:31+08:00 +2026/05/15 05:44:31.650, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.84, 65 +2026-05-15T05:44:36+08:00 +2026/05/15 05:44:36.673, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 366.31, 65 +2026-05-15T05:44:41+08:00 +2026/05/15 05:44:41.696, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.84, 66 +2026-05-15T05:44:46+08:00 +2026/05/15 05:44:46.721, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.72, 66 +2026-05-15T05:44:51+08:00 +2026/05/15 05:44:51.745, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.25, 64 +2026-05-15T05:44:56+08:00 +2026/05/15 05:44:56.769, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.56, 65 +2026-05-15T05:45:01+08:00 +2026/05/15 05:45:01.793, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 65 +2026-05-15T05:45:06+08:00 +2026/05/15 05:45:06.815, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.79, 65 +2026-05-15T05:45:11+08:00 +2026/05/15 05:45:11.837, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.36, 65 +2026-05-15T05:45:16+08:00 +2026/05/15 05:45:16.865, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.11, 66 +2026-05-15T05:45:21+08:00 +2026/05/15 05:45:21.888, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.08, 66 +2026-05-15T05:45:26+08:00 +2026/05/15 05:45:26.930, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.58, 66 +2026-05-15T05:45:31+08:00 +2026/05/15 05:45:32.002, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.28, 65 +2026-05-15T05:45:37+08:00 +2026/05/15 05:45:37.026, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.55, 66 +2026-05-15T05:45:42+08:00 +2026/05/15 05:45:42.050, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 214.59, 65 +2026-05-15T05:45:47+08:00 +2026/05/15 05:45:47.091, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.77, 66 +2026-05-15T05:45:52+08:00 +2026/05/15 05:45:52.114, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.98, 65 +2026-05-15T05:45:57+08:00 +2026/05/15 05:45:57.137, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.65, 66 +2026-05-15T05:46:02+08:00 +2026/05/15 05:46:02.197, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.77, 65 +2026-05-15T05:46:07+08:00 +2026/05/15 05:46:07.221, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.03, 66 +2026-05-15T05:46:12+08:00 +2026/05/15 05:46:12.246, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.57, 65 +2026-05-15T05:46:17+08:00 +2026/05/15 05:46:17.268, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.42, 65 +2026-05-15T05:46:22+08:00 +2026/05/15 05:46:22.322, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.17, 66 +2026-05-15T05:46:27+08:00 +2026/05/15 05:46:27.347, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.00, 66 +2026-05-15T05:46:32+08:00 +2026/05/15 05:46:32.388, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.17, 65 +2026-05-15T05:46:37+08:00 +2026/05/15 05:46:37.412, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 64 +2026-05-15T05:46:42+08:00 +2026/05/15 05:46:42.438, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.60, 66 +2026-05-15T05:46:47+08:00 +2026/05/15 05:46:47.480, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.37, 66 +2026-05-15T05:46:52+08:00 +2026/05/15 05:46:52.502, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.94, 65 +2026-05-15T05:46:57+08:00 +2026/05/15 05:46:57.571, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.83, 65 +2026-05-15T05:47:02+08:00 +2026/05/15 05:47:02.594, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.10, 66 +2026-05-15T05:47:07+08:00 +2026/05/15 05:47:07.616, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.17, 66 +2026-05-15T05:47:12+08:00 +2026/05/15 05:47:12.644, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 254.48, 65 +2026-05-15T05:47:17+08:00 +2026/05/15 05:47:17.668, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.46, 65 +2026-05-15T05:47:22+08:00 +2026/05/15 05:47:22.693, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.53, 66 +2026-05-15T05:47:27+08:00 +2026/05/15 05:47:27.717, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 366.61, 66 +2026-05-15T05:47:32+08:00 +2026/05/15 05:47:32.741, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.29, 65 +2026-05-15T05:47:37+08:00 +2026/05/15 05:47:37.767, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.71, 66 +2026-05-15T05:47:42+08:00 +2026/05/15 05:47:42.790, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.48, 65 +2026-05-15T05:47:47+08:00 +2026/05/15 05:47:47.855, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.54, 66 +2026-05-15T05:47:52+08:00 +2026/05/15 05:47:52.881, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.97, 66 +2026-05-15T05:47:57+08:00 +2026/05/15 05:47:57.929, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.80, 66 +2026-05-15T05:48:02+08:00 +2026/05/15 05:48:02.957, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 271.42, 59 +2026-05-15T05:48:07+08:00 +2026/05/15 05:48:07.983, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.63, 66 +2026-05-15T05:48:13+08:00 +2026/05/15 05:48:13.035, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.21, 66 +2026-05-15T05:48:18+08:00 +2026/05/15 05:48:18.060, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.53, 66 +2026-05-15T05:48:23+08:00 +2026/05/15 05:48:23.105, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.37, 64 +2026-05-15T05:48:28+08:00 +2026/05/15 05:48:28.146, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.65, 65 +2026-05-15T05:48:33+08:00 +2026/05/15 05:48:33.187, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.30, 67 +2026-05-15T05:48:38+08:00 +2026/05/15 05:48:38.240, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.89, 66 +2026-05-15T05:48:43+08:00 +2026/05/15 05:48:43.265, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.73, 66 +2026-05-15T05:48:48+08:00 +2026/05/15 05:48:48.308, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.55, 66 +2026-05-15T05:48:53+08:00 +2026/05/15 05:48:53.331, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.40, 65 +2026-05-15T05:48:58+08:00 +2026/05/15 05:48:58.353, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.67, 66 +2026-05-15T05:49:03+08:00 +2026/05/15 05:49:03.377, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.10, 65 +2026-05-15T05:49:08+08:00 +2026/05/15 05:49:08.402, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.01, 65 +2026-05-15T05:49:13+08:00 +2026/05/15 05:49:13.427, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 367.56, 65 +2026-05-15T05:49:18+08:00 +2026/05/15 05:49:18.451, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.91, 66 +2026-05-15T05:49:23+08:00 +2026/05/15 05:49:23.474, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.12, 66 +2026-05-15T05:49:28+08:00 +2026/05/15 05:49:28.498, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.48, 65 +2026-05-15T05:49:33+08:00 +2026/05/15 05:49:33.523, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.91, 66 +2026-05-15T05:49:38+08:00 +2026/05/15 05:49:38.546, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.80, 66 +2026-05-15T05:49:43+08:00 +2026/05/15 05:49:43.569, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.89, 65 +2026-05-15T05:49:48+08:00 +2026/05/15 05:49:48.593, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.48, 65 +2026-05-15T05:49:53+08:00 +2026/05/15 05:49:53.617, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.55, 66 +2026-05-15T05:49:58+08:00 +2026/05/15 05:49:58.642, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.76, 66 +2026-05-15T05:50:03+08:00 +2026/05/15 05:50:03.666, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.71, 65 +2026-05-15T05:50:08+08:00 +2026/05/15 05:50:08.689, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.20, 65 +2026-05-15T05:50:13+08:00 +2026/05/15 05:50:13.714, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.64, 65 +2026-05-15T05:50:18+08:00 +2026/05/15 05:50:18.738, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.47, 65 +2026-05-15T05:50:23+08:00 +2026/05/15 05:50:23.765, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.20, 66 +2026-05-15T05:50:28+08:00 +2026/05/15 05:50:28.787, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.19, 66 +2026-05-15T05:50:33+08:00 +2026/05/15 05:50:33.811, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.81, 66 +2026-05-15T05:50:38+08:00 +2026/05/15 05:50:38.835, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.15, 66 +2026-05-15T05:50:43+08:00 +2026/05/15 05:50:43.858, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.59, 65 +2026-05-15T05:50:48+08:00 +2026/05/15 05:50:48.883, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.79, 66 +2026-05-15T05:50:53+08:00 +2026/05/15 05:50:53.906, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.46, 65 +2026-05-15T05:50:58+08:00 +2026/05/15 05:50:58.932, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.39, 65 +2026-05-15T05:51:03+08:00 +2026/05/15 05:51:03.955, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.93, 65 +2026-05-15T05:51:08+08:00 +2026/05/15 05:51:08.978, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.19, 65 +2026-05-15T05:51:13+08:00 +2026/05/15 05:51:14.002, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.61, 65 +2026-05-15T05:51:19+08:00 +2026/05/15 05:51:19.028, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.32, 65 +2026-05-15T05:51:24+08:00 +2026/05/15 05:51:24.050, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.81, 65 +2026-05-15T05:51:29+08:00 +2026/05/15 05:51:29.073, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.68, 65 +2026-05-15T05:51:34+08:00 +2026/05/15 05:51:34.099, NVIDIA GeForce RTX 5090, 31, 11, 9607, 32607, 262.28, 65 +2026-05-15T05:51:39+08:00 +2026/05/15 05:51:39.122, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.59, 65 +2026-05-15T05:51:44+08:00 +2026/05/15 05:51:44.145, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 65 +2026-05-15T05:51:49+08:00 +2026/05/15 05:51:49.167, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.49, 66 +2026-05-15T05:51:54+08:00 +2026/05/15 05:51:54.193, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.47, 66 +2026-05-15T05:51:59+08:00 +2026/05/15 05:51:59.264, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.29, 65 +2026-05-15T05:52:04+08:00 +2026/05/15 05:52:04.288, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.82, 66 +2026-05-15T05:52:09+08:00 +2026/05/15 05:52:09.362, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.87, 65 +2026-05-15T05:52:14+08:00 +2026/05/15 05:52:14.419, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.99, 66 +2026-05-15T05:52:19+08:00 +2026/05/15 05:52:19.443, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.19, 65 +2026-05-15T05:52:24+08:00 +2026/05/15 05:52:24.467, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.96, 66 +2026-05-15T05:52:29+08:00 +2026/05/15 05:52:29.489, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.32, 66 +2026-05-15T05:52:34+08:00 +2026/05/15 05:52:34.511, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.39, 66 +2026-05-15T05:52:39+08:00 +2026/05/15 05:52:39.534, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.80, 66 +2026-05-15T05:52:44+08:00 +2026/05/15 05:52:44.558, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.66, 66 +2026-05-15T05:52:49+08:00 +2026/05/15 05:52:49.583, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.16, 65 +2026-05-15T05:52:54+08:00 +2026/05/15 05:52:54.609, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.51, 65 +2026-05-15T05:52:59+08:00 +2026/05/15 05:52:59.633, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.36, 65 +2026-05-15T05:53:04+08:00 +2026/05/15 05:53:04.660, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 363.30, 66 +2026-05-15T05:53:09+08:00 +2026/05/15 05:53:09.683, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.62, 66 +2026-05-15T05:53:14+08:00 +2026/05/15 05:53:14.707, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.55, 66 +2026-05-15T05:53:19+08:00 +2026/05/15 05:53:19.731, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.19, 65 +2026-05-15T05:53:24+08:00 +2026/05/15 05:53:24.759, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.32, 65 +2026-05-15T05:53:29+08:00 +2026/05/15 05:53:29.783, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.03, 66 +2026-05-15T05:53:34+08:00 +2026/05/15 05:53:34.808, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.76, 66 +2026-05-15T05:53:39+08:00 +2026/05/15 05:53:39.833, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.76, 66 +2026-05-15T05:53:44+08:00 +2026/05/15 05:53:44.858, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.64, 65 +2026-05-15T05:53:49+08:00 +2026/05/15 05:53:49.881, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.18, 65 +2026-05-15T05:53:54+08:00 +2026/05/15 05:53:54.906, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 202.04, 64 +2026-05-15T05:53:59+08:00 +2026/05/15 05:53:59.931, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.40, 65 +2026-05-15T05:54:04+08:00 +2026/05/15 05:54:04.954, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.30, 65 +2026-05-15T05:54:09+08:00 +2026/05/15 05:54:09.982, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.49, 65 +2026-05-15T05:54:14+08:00 +2026/05/15 05:54:15.007, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.81, 65 +2026-05-15T05:54:20+08:00 +2026/05/15 05:54:20.030, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.68, 66 +2026-05-15T05:54:25+08:00 +2026/05/15 05:54:25.053, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.28, 66 +2026-05-15T05:54:30+08:00 +2026/05/15 05:54:30.075, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.72, 65 +2026-05-15T05:54:35+08:00 +2026/05/15 05:54:35.100, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.58, 66 +2026-05-15T05:54:40+08:00 +2026/05/15 05:54:40.122, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.39, 66 +2026-05-15T05:54:45+08:00 +2026/05/15 05:54:45.146, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.49, 65 +2026-05-15T05:54:50+08:00 +2026/05/15 05:54:50.168, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.11, 66 +2026-05-15T05:54:55+08:00 +2026/05/15 05:54:55.191, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.49, 66 +2026-05-15T05:55:00+08:00 +2026/05/15 05:55:00.218, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.88, 66 +2026-05-15T05:55:05+08:00 +2026/05/15 05:55:05.244, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.22, 66 +2026-05-15T05:55:10+08:00 +2026/05/15 05:55:10.267, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.24, 65 +2026-05-15T05:55:15+08:00 +2026/05/15 05:55:15.293, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.61, 65 +2026-05-15T05:55:20+08:00 +2026/05/15 05:55:20.316, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 245.13, 65 +2026-05-15T05:55:25+08:00 +2026/05/15 05:55:25.340, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 66 +2026-05-15T05:55:30+08:00 +2026/05/15 05:55:30.366, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 65 +2026-05-15T05:55:35+08:00 +2026/05/15 05:55:35.390, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.33, 66 +2026-05-15T05:55:40+08:00 +2026/05/15 05:55:40.419, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.24, 66 +2026-05-15T05:55:45+08:00 +2026/05/15 05:55:45.442, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.60, 66 +2026-05-15T05:55:50+08:00 +2026/05/15 05:55:50.467, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.38, 66 +2026-05-15T05:55:55+08:00 +2026/05/15 05:55:55.492, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.48, 66 +2026-05-15T05:56:00+08:00 +2026/05/15 05:56:00.514, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.73, 65 +2026-05-15T05:56:05+08:00 +2026/05/15 05:56:05.540, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.13, 66 +2026-05-15T05:56:10+08:00 +2026/05/15 05:56:10.566, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.89, 66 +2026-05-15T05:56:15+08:00 +2026/05/15 05:56:15.590, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.44, 66 +2026-05-15T05:56:20+08:00 +2026/05/15 05:56:20.614, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.24, 66 +2026-05-15T05:56:25+08:00 +2026/05/15 05:56:25.639, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.67, 66 +2026-05-15T05:56:30+08:00 +2026/05/15 05:56:30.691, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.44, 65 +2026-05-15T05:56:35+08:00 +2026/05/15 05:56:35.714, NVIDIA GeForce RTX 5090, 76, 34, 9607, 32607, 343.77, 62 +2026-05-15T05:56:40+08:00 +2026/05/15 05:56:40.764, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.00, 65 +2026-05-15T05:56:45+08:00 +2026/05/15 05:56:45.787, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.11, 66 +2026-05-15T05:56:50+08:00 +2026/05/15 05:56:50.828, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 67 +2026-05-15T05:56:55+08:00 +2026/05/15 05:56:55.851, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 66 +2026-05-15T05:57:00+08:00 +2026/05/15 05:57:00.894, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.57, 66 +2026-05-15T05:57:05+08:00 +2026/05/15 05:57:05.963, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.20, 66 +2026-05-15T05:57:10+08:00 +2026/05/15 05:57:10.987, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.71, 66 +2026-05-15T05:57:16+08:00 +2026/05/15 05:57:16.028, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.20, 65 +2026-05-15T05:57:21+08:00 +2026/05/15 05:57:21.073, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.03, 65 +2026-05-15T05:57:26+08:00 +2026/05/15 05:57:26.097, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.72, 66 +2026-05-15T05:57:31+08:00 +2026/05/15 05:57:31.120, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.36, 66 +2026-05-15T05:57:36+08:00 +2026/05/15 05:57:36.145, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.11, 66 +2026-05-15T05:57:41+08:00 +2026/05/15 05:57:41.167, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.79, 65 +2026-05-15T05:57:46+08:00 +2026/05/15 05:57:46.191, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.22, 66 +2026-05-15T05:57:51+08:00 +2026/05/15 05:57:51.215, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.48, 65 +2026-05-15T05:57:56+08:00 +2026/05/15 05:57:56.239, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.43, 66 +2026-05-15T05:58:01+08:00 +2026/05/15 05:58:01.264, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.05, 66 +2026-05-15T05:58:06+08:00 +2026/05/15 05:58:06.287, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.39, 64 +2026-05-15T05:58:11+08:00 +2026/05/15 05:58:11.313, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.88, 66 +2026-05-15T05:58:16+08:00 +2026/05/15 05:58:16.340, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.74, 66 +2026-05-15T05:58:21+08:00 +2026/05/15 05:58:21.367, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.56, 66 +2026-05-15T05:58:26+08:00 +2026/05/15 05:58:26.395, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.20, 66 +2026-05-15T05:58:31+08:00 +2026/05/15 05:58:31.422, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.89, 65 +2026-05-15T05:58:36+08:00 +2026/05/15 05:58:36.453, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.72, 66 +2026-05-15T05:58:41+08:00 +2026/05/15 05:58:41.476, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.12, 66 +2026-05-15T05:58:46+08:00 +2026/05/15 05:58:46.499, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.87, 65 +2026-05-15T05:58:51+08:00 +2026/05/15 05:58:51.524, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.57, 66 +2026-05-15T05:58:56+08:00 +2026/05/15 05:58:56.547, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 366.04, 66 +2026-05-15T05:59:01+08:00 +2026/05/15 05:59:01.572, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 66 +2026-05-15T05:59:06+08:00 +2026/05/15 05:59:06.595, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.55, 65 +2026-05-15T05:59:11+08:00 +2026/05/15 05:59:11.618, NVIDIA GeForce RTX 5090, 53, 19, 9607, 32607, 118.34, 62 +2026-05-15T05:59:16+08:00 +2026/05/15 05:59:16.643, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.91, 66 +2026-05-15T05:59:21+08:00 +2026/05/15 05:59:21.665, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.12, 66 +2026-05-15T05:59:26+08:00 +2026/05/15 05:59:26.688, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.62, 65 +2026-05-15T05:59:31+08:00 +2026/05/15 05:59:31.711, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.10, 67 +2026-05-15T05:59:36+08:00 +2026/05/15 05:59:36.736, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.87, 66 +2026-05-15T05:59:41+08:00 +2026/05/15 05:59:41.759, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.25, 66 +2026-05-15T05:59:46+08:00 +2026/05/15 05:59:46.784, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.50, 65 +2026-05-15T05:59:51+08:00 +2026/05/15 05:59:51.808, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 297.96, 65 +2026-05-15T05:59:56+08:00 +2026/05/15 05:59:56.832, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.61, 66 +2026-05-15T06:00:01+08:00 +2026/05/15 06:00:01.856, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.47, 65 +2026-05-15T06:00:06+08:00 +2026/05/15 06:00:06.884, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 66 +2026-05-15T06:00:11+08:00 +2026/05/15 06:00:11.908, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.25, 66 +2026-05-15T06:00:16+08:00 +2026/05/15 06:00:16.933, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.97, 66 +2026-05-15T06:00:21+08:00 +2026/05/15 06:00:21.955, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.50, 64 +2026-05-15T06:00:26+08:00 +2026/05/15 06:00:26.978, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.84, 66 +2026-05-15T06:00:31+08:00 +2026/05/15 06:00:32.002, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 364.92, 65 +2026-05-15T06:00:37+08:00 +2026/05/15 06:00:37.024, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.84, 65 +2026-05-15T06:00:42+08:00 +2026/05/15 06:00:42.048, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.45, 66 +2026-05-15T06:00:47+08:00 +2026/05/15 06:00:47.071, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 258.16, 65 +2026-05-15T06:00:52+08:00 +2026/05/15 06:00:52.095, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.87, 66 +2026-05-15T06:00:57+08:00 +2026/05/15 06:00:57.120, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.48, 66 +2026-05-15T06:01:02+08:00 +2026/05/15 06:01:02.143, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.17, 66 +2026-05-15T06:01:07+08:00 +2026/05/15 06:01:07.181, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.89, 64 +2026-05-15T06:01:12+08:00 +2026/05/15 06:01:12.204, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.72, 66 +2026-05-15T06:01:17+08:00 +2026/05/15 06:01:17.228, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.64, 66 +2026-05-15T06:01:22+08:00 +2026/05/15 06:01:22.286, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 66 +2026-05-15T06:01:27+08:00 +2026/05/15 06:01:27.311, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.97, 66 +2026-05-15T06:01:32+08:00 +2026/05/15 06:01:32.334, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.73, 65 +2026-05-15T06:01:37+08:00 +2026/05/15 06:01:37.356, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.31, 66 +2026-05-15T06:01:42+08:00 +2026/05/15 06:01:42.380, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.77, 65 +2026-05-15T06:01:47+08:00 +2026/05/15 06:01:47.403, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.22, 65 +2026-05-15T06:01:52+08:00 +2026/05/15 06:01:52.427, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.68, 66 +2026-05-15T06:01:57+08:00 +2026/05/15 06:01:57.450, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.06, 65 +2026-05-15T06:02:02+08:00 +2026/05/15 06:02:02.474, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.77, 66 +2026-05-15T06:02:07+08:00 +2026/05/15 06:02:07.498, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.28, 65 +2026-05-15T06:02:12+08:00 +2026/05/15 06:02:12.522, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.62, 66 +2026-05-15T06:02:17+08:00 +2026/05/15 06:02:17.546, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.22, 66 +2026-05-15T06:02:22+08:00 +2026/05/15 06:02:22.570, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.02, 65 +2026-05-15T06:02:27+08:00 +2026/05/15 06:02:27.594, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 255.68, 65 +2026-05-15T06:02:32+08:00 +2026/05/15 06:02:32.618, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.92, 65 +2026-05-15T06:02:37+08:00 +2026/05/15 06:02:37.646, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 362.02, 65 +2026-05-15T06:02:42+08:00 +2026/05/15 06:02:42.670, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.75, 66 +2026-05-15T06:02:47+08:00 +2026/05/15 06:02:47.694, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.94, 65 +2026-05-15T06:02:52+08:00 +2026/05/15 06:02:52.734, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.05, 66 +2026-05-15T06:02:57+08:00 +2026/05/15 06:02:57.764, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.15, 65 +2026-05-15T06:03:02+08:00 +2026/05/15 06:03:02.798, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.52, 64 +2026-05-15T06:03:07+08:00 +2026/05/15 06:03:07.822, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 292.27, 66 +2026-05-15T06:03:12+08:00 +2026/05/15 06:03:12.847, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.81, 64 +2026-05-15T06:03:17+08:00 +2026/05/15 06:03:17.915, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.96, 65 +2026-05-15T06:03:22+08:00 +2026/05/15 06:03:22.938, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.05, 66 +2026-05-15T06:03:27+08:00 +2026/05/15 06:03:28.011, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.71, 66 +2026-05-15T06:03:33+08:00 +2026/05/15 06:03:33.035, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.33, 66 +2026-05-15T06:03:38+08:00 +2026/05/15 06:03:38.077, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.46, 65 +2026-05-15T06:03:43+08:00 +2026/05/15 06:03:43.151, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.44, 66 +2026-05-15T06:03:48+08:00 +2026/05/15 06:03:48.174, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.36, 65 +2026-05-15T06:03:53+08:00 +2026/05/15 06:03:53.215, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.14, 65 +2026-05-15T06:03:58+08:00 +2026/05/15 06:03:58.265, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.31, 65 +2026-05-15T06:04:03+08:00 +2026/05/15 06:04:03.290, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.27, 67 +2026-05-15T06:04:08+08:00 +2026/05/15 06:04:08.330, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.50, 66 +2026-05-15T06:04:13+08:00 +2026/05/15 06:04:13.372, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.25, 66 +2026-05-15T06:04:18+08:00 +2026/05/15 06:04:18.396, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.29, 64 +2026-05-15T06:04:23+08:00 +2026/05/15 06:04:23.418, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 367.48, 66 +2026-05-15T06:04:28+08:00 +2026/05/15 06:04:28.439, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 65 +2026-05-15T06:04:33+08:00 +2026/05/15 06:04:33.464, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.58, 66 +2026-05-15T06:04:38+08:00 +2026/05/15 06:04:38.488, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 366.25, 66 +2026-05-15T06:04:43+08:00 +2026/05/15 06:04:43.512, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.91, 65 +2026-05-15T06:04:48+08:00 +2026/05/15 06:04:48.535, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.82, 66 +2026-05-15T06:04:53+08:00 +2026/05/15 06:04:53.556, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.51, 65 +2026-05-15T06:04:58+08:00 +2026/05/15 06:04:58.580, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 366.70, 65 +2026-05-15T06:05:03+08:00 +2026/05/15 06:05:03.605, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.09, 65 +2026-05-15T06:05:08+08:00 +2026/05/15 06:05:08.665, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 367.08, 65 +2026-05-15T06:05:13+08:00 +2026/05/15 06:05:13.705, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.81, 66 +2026-05-15T06:05:18+08:00 +2026/05/15 06:05:18.728, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 366.80, 66 +2026-05-15T06:05:23+08:00 +2026/05/15 06:05:23.785, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 65 +2026-05-15T06:05:28+08:00 +2026/05/15 06:05:28.810, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.97, 66 +2026-05-15T06:05:33+08:00 +2026/05/15 06:05:33.835, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.52, 65 +2026-05-15T06:05:38+08:00 +2026/05/15 06:05:38.858, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.95, 65 +2026-05-15T06:05:43+08:00 +2026/05/15 06:05:43.883, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 346.87, 62 +2026-05-15T06:05:48+08:00 +2026/05/15 06:05:48.905, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.01, 65 +2026-05-15T06:05:53+08:00 +2026/05/15 06:05:53.958, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.32, 66 +2026-05-15T06:05:58+08:00 +2026/05/15 06:05:58.983, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.03, 66 +2026-05-15T06:06:04+08:00 +2026/05/15 06:06:04.023, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.76, 65 +2026-05-15T06:06:09+08:00 +2026/05/15 06:06:09.066, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.63, 65 +2026-05-15T06:06:14+08:00 +2026/05/15 06:06:14.106, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.76, 66 +2026-05-15T06:06:19+08:00 +2026/05/15 06:06:19.155, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.06, 66 +2026-05-15T06:06:24+08:00 +2026/05/15 06:06:24.181, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.22, 65 +2026-05-15T06:06:29+08:00 +2026/05/15 06:06:29.205, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.60, 67 +2026-05-15T06:06:34+08:00 +2026/05/15 06:06:34.255, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.74, 66 +2026-05-15T06:06:39+08:00 +2026/05/15 06:06:39.279, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.83, 66 +2026-05-15T06:06:44+08:00 +2026/05/15 06:06:44.321, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.87, 65 +2026-05-15T06:06:49+08:00 +2026/05/15 06:06:49.397, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.88, 64 +2026-05-15T06:06:54+08:00 +2026/05/15 06:06:54.419, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.89, 65 +2026-05-15T06:06:59+08:00 +2026/05/15 06:06:59.463, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.19, 66 +2026-05-15T06:07:04+08:00 +2026/05/15 06:07:04.488, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.16, 65 +2026-05-15T06:07:09+08:00 +2026/05/15 06:07:09.531, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.92, 66 +2026-05-15T06:07:14+08:00 +2026/05/15 06:07:14.554, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 366.33, 66 +2026-05-15T06:07:19+08:00 +2026/05/15 06:07:19.577, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.45, 66 +2026-05-15T06:07:24+08:00 +2026/05/15 06:07:24.602, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.80, 66 +2026-05-15T06:07:29+08:00 +2026/05/15 06:07:29.625, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.77, 66 +2026-05-15T06:07:34+08:00 +2026/05/15 06:07:34.648, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 292.87, 65 +2026-05-15T06:07:39+08:00 +2026/05/15 06:07:39.672, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.71, 65 +2026-05-15T06:07:44+08:00 +2026/05/15 06:07:44.696, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.33, 65 +2026-05-15T06:07:49+08:00 +2026/05/15 06:07:49.720, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 66 +2026-05-15T06:07:54+08:00 +2026/05/15 06:07:54.743, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.12, 66 +2026-05-15T06:07:59+08:00 +2026/05/15 06:07:59.765, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.88, 66 +2026-05-15T06:08:04+08:00 +2026/05/15 06:08:04.789, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.63, 65 +2026-05-15T06:08:09+08:00 +2026/05/15 06:08:09.813, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.94, 65 +2026-05-15T06:08:14+08:00 +2026/05/15 06:08:14.836, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.22, 66 +2026-05-15T06:08:19+08:00 +2026/05/15 06:08:19.860, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.13, 66 +2026-05-15T06:08:24+08:00 +2026/05/15 06:08:24.930, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.88, 66 +2026-05-15T06:08:29+08:00 +2026/05/15 06:08:29.955, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 366.10, 65 +2026-05-15T06:08:34+08:00 +2026/05/15 06:08:34.978, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.39, 65 +2026-05-15T06:08:40+08:00 +2026/05/15 06:08:40.049, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.30, 66 +2026-05-15T06:08:45+08:00 +2026/05/15 06:08:45.074, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.26, 66 +2026-05-15T06:08:50+08:00 +2026/05/15 06:08:50.113, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.13, 66 +2026-05-15T06:08:55+08:00 +2026/05/15 06:08:55.188, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.60, 65 +2026-05-15T06:09:00+08:00 +2026/05/15 06:09:00.212, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.11, 65 +2026-05-15T06:09:05+08:00 +2026/05/15 06:09:05.254, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.06, 65 +2026-05-15T06:09:10+08:00 +2026/05/15 06:09:10.278, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.20, 66 +2026-05-15T06:09:15+08:00 +2026/05/15 06:09:15.338, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.33, 66 +2026-05-15T06:09:20+08:00 +2026/05/15 06:09:20.361, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 365.40, 66 +2026-05-15T06:09:25+08:00 +2026/05/15 06:09:25.385, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.39, 66 +2026-05-15T06:09:30+08:00 +2026/05/15 06:09:30.457, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.72, 66 +2026-05-15T06:09:35+08:00 +2026/05/15 06:09:35.481, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.23, 66 +2026-05-15T06:09:40+08:00 +2026/05/15 06:09:40.506, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.47, 66 +2026-05-15T06:09:45+08:00 +2026/05/15 06:09:45.530, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.16, 66 +2026-05-15T06:09:50+08:00 +2026/05/15 06:09:50.572, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.71, 66 +2026-05-15T06:09:55+08:00 +2026/05/15 06:09:55.633, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.27, 66 +2026-05-15T06:10:00+08:00 +2026/05/15 06:10:00.657, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.43, 66 +2026-05-15T06:10:05+08:00 +2026/05/15 06:10:05.681, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.61, 66 +2026-05-15T06:10:10+08:00 +2026/05/15 06:10:10.704, NVIDIA GeForce RTX 5090, 1, 0, 9607, 32607, 300.76, 60 +2026-05-15T06:10:15+08:00 +2026/05/15 06:10:15.729, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.32, 66 +2026-05-15T06:10:20+08:00 +2026/05/15 06:10:20.757, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.59, 66 +2026-05-15T06:10:25+08:00 +2026/05/15 06:10:25.780, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.66, 66 +2026-05-15T06:10:30+08:00 +2026/05/15 06:10:30.804, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.51, 65 +2026-05-15T06:10:35+08:00 +2026/05/15 06:10:35.829, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.57, 65 +2026-05-15T06:10:40+08:00 +2026/05/15 06:10:40.853, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.75, 65 +2026-05-15T06:10:45+08:00 +2026/05/15 06:10:45.878, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.11, 65 +2026-05-15T06:10:50+08:00 +2026/05/15 06:10:50.901, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 363.73, 65 +2026-05-15T06:10:55+08:00 +2026/05/15 06:10:55.924, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.75, 66 +2026-05-15T06:11:00+08:00 +2026/05/15 06:11:00.950, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.10, 65 +2026-05-15T06:11:05+08:00 +2026/05/15 06:11:05.975, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.25, 66 +2026-05-15T06:11:10+08:00 +2026/05/15 06:11:11.000, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.37, 66 +2026-05-15T06:11:16+08:00 +2026/05/15 06:11:16.024, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.57, 66 +2026-05-15T06:11:21+08:00 +2026/05/15 06:11:21.053, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.67, 66 +2026-05-15T06:11:26+08:00 +2026/05/15 06:11:26.077, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.33, 66 +2026-05-15T06:11:31+08:00 +2026/05/15 06:11:31.099, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 366.05, 66 +2026-05-15T06:11:36+08:00 +2026/05/15 06:11:36.124, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.06, 64 +2026-05-15T06:11:41+08:00 +2026/05/15 06:11:41.147, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.50, 66 +2026-05-15T06:11:46+08:00 +2026/05/15 06:11:46.172, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.77, 65 +2026-05-15T06:11:51+08:00 +2026/05/15 06:11:51.201, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.46, 66 +2026-05-15T06:11:56+08:00 +2026/05/15 06:11:56.224, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.55, 66 +2026-05-15T06:12:01+08:00 +2026/05/15 06:12:01.247, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 363.98, 66 +2026-05-15T06:12:06+08:00 +2026/05/15 06:12:06.271, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.09, 64 +2026-05-15T06:12:11+08:00 +2026/05/15 06:12:11.295, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.34, 65 +2026-05-15T06:12:16+08:00 +2026/05/15 06:12:16.318, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.95, 65 +2026-05-15T06:12:21+08:00 +2026/05/15 06:12:21.340, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.51, 66 +2026-05-15T06:12:26+08:00 +2026/05/15 06:12:26.364, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.60, 66 +2026-05-15T06:12:31+08:00 +2026/05/15 06:12:31.387, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.63, 65 +2026-05-15T06:12:36+08:00 +2026/05/15 06:12:36.411, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.56, 64 +2026-05-15T06:12:41+08:00 +2026/05/15 06:12:41.435, NVIDIA GeForce RTX 5090, 75, 34, 9607, 32607, 361.63, 64 +2026-05-15T06:12:46+08:00 +2026/05/15 06:12:46.456, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.48, 65 +2026-05-15T06:12:51+08:00 +2026/05/15 06:12:51.479, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.78, 65 +2026-05-15T06:12:56+08:00 +2026/05/15 06:12:56.502, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.92, 66 +2026-05-15T06:13:01+08:00 +2026/05/15 06:13:01.526, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.54, 66 +2026-05-15T06:13:06+08:00 +2026/05/15 06:13:06.550, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.64, 66 +2026-05-15T06:13:11+08:00 +2026/05/15 06:13:11.574, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.50, 65 +2026-05-15T06:13:16+08:00 +2026/05/15 06:13:16.599, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.67, 66 +2026-05-15T06:13:21+08:00 +2026/05/15 06:13:21.622, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 366.01, 65 +2026-05-15T06:13:26+08:00 +2026/05/15 06:13:26.646, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.09, 66 +2026-05-15T06:13:31+08:00 +2026/05/15 06:13:31.670, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.35, 66 +2026-05-15T06:13:36+08:00 +2026/05/15 06:13:36.694, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.15, 65 +2026-05-15T06:13:41+08:00 +2026/05/15 06:13:41.718, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.53, 66 +2026-05-15T06:13:46+08:00 +2026/05/15 06:13:46.741, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 66 +2026-05-15T06:13:51+08:00 +2026/05/15 06:13:51.764, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.52, 66 +2026-05-15T06:13:56+08:00 +2026/05/15 06:13:56.792, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.56, 66 +2026-05-15T06:14:01+08:00 +2026/05/15 06:14:01.835, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.15, 66 +2026-05-15T06:14:06+08:00 +2026/05/15 06:14:06.858, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.65, 65 +2026-05-15T06:14:11+08:00 +2026/05/15 06:14:11.899, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.29, 66 +2026-05-15T06:14:16+08:00 +2026/05/15 06:14:16.921, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.77, 66 +2026-05-15T06:14:21+08:00 +2026/05/15 06:14:21.945, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.98, 65 +2026-05-15T06:14:26+08:00 +2026/05/15 06:14:27.021, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.36, 66 +2026-05-15T06:14:32+08:00 +2026/05/15 06:14:32.044, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.99, 66 +2026-05-15T06:14:37+08:00 +2026/05/15 06:14:37.068, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.76, 65 +2026-05-15T06:14:42+08:00 +2026/05/15 06:14:42.111, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.07, 65 +2026-05-15T06:14:47+08:00 +2026/05/15 06:14:47.150, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.07, 66 +2026-05-15T06:14:52+08:00 +2026/05/15 06:14:52.176, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 66 +2026-05-15T06:14:57+08:00 +2026/05/15 06:14:57.200, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 65 +2026-05-15T06:15:02+08:00 +2026/05/15 06:15:02.241, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.37, 66 +2026-05-15T06:15:07+08:00 +2026/05/15 06:15:07.264, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.56, 66 +2026-05-15T06:15:12+08:00 +2026/05/15 06:15:12.290, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.56, 66 +2026-05-15T06:15:17+08:00 +2026/05/15 06:15:17.333, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.50, 65 +2026-05-15T06:15:22+08:00 +2026/05/15 06:15:22.356, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.19, 66 +2026-05-15T06:15:27+08:00 +2026/05/15 06:15:27.376, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.74, 65 +2026-05-15T06:15:32+08:00 +2026/05/15 06:15:32.418, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.57, 66 +2026-05-15T06:15:37+08:00 +2026/05/15 06:15:37.500, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.45, 66 +2026-05-15T06:15:42+08:00 +2026/05/15 06:15:42.539, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.55, 65 +2026-05-15T06:15:47+08:00 +2026/05/15 06:15:47.598, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.82, 66 +2026-05-15T06:15:52+08:00 +2026/05/15 06:15:52.622, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.92, 66 +2026-05-15T06:15:57+08:00 +2026/05/15 06:15:57.645, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.23, 66 +2026-05-15T06:16:02+08:00 +2026/05/15 06:16:02.668, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.90, 66 +2026-05-15T06:16:07+08:00 +2026/05/15 06:16:07.692, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.15, 66 +2026-05-15T06:16:12+08:00 +2026/05/15 06:16:12.718, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.33, 66 +2026-05-15T06:16:17+08:00 +2026/05/15 06:16:17.746, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.60, 64 +2026-05-15T06:16:22+08:00 +2026/05/15 06:16:22.770, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.77, 66 +2026-05-15T06:16:27+08:00 +2026/05/15 06:16:27.793, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.66, 66 +2026-05-15T06:16:32+08:00 +2026/05/15 06:16:32.818, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.76, 65 +2026-05-15T06:16:37+08:00 +2026/05/15 06:16:37.845, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.05, 66 +2026-05-15T06:16:42+08:00 +2026/05/15 06:16:42.870, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.28, 66 +2026-05-15T06:16:47+08:00 +2026/05/15 06:16:47.893, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.83, 66 +2026-05-15T06:16:52+08:00 +2026/05/15 06:16:52.921, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.16, 66 +2026-05-15T06:16:57+08:00 +2026/05/15 06:16:57.944, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.97, 66 +2026-05-15T06:17:02+08:00 +2026/05/15 06:17:02.972, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.44, 65 +2026-05-15T06:17:07+08:00 +2026/05/15 06:17:07.996, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.90, 65 +2026-05-15T06:17:13+08:00 +2026/05/15 06:17:13.019, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.07, 66 +2026-05-15T06:17:18+08:00 +2026/05/15 06:17:18.042, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.48, 66 +2026-05-15T06:17:23+08:00 +2026/05/15 06:17:23.065, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 366.35, 66 +2026-05-15T06:17:28+08:00 +2026/05/15 06:17:28.088, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.05, 64 +2026-05-15T06:17:33+08:00 +2026/05/15 06:17:33.113, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.79, 66 +2026-05-15T06:17:38+08:00 +2026/05/15 06:17:38.137, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.38, 66 +2026-05-15T06:17:43+08:00 +2026/05/15 06:17:43.161, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.09, 65 +2026-05-15T06:17:48+08:00 +2026/05/15 06:17:48.184, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 215.96, 66 +2026-05-15T06:17:53+08:00 +2026/05/15 06:17:53.210, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.61, 65 +2026-05-15T06:17:58+08:00 +2026/05/15 06:17:58.235, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.57, 66 +2026-05-15T06:18:03+08:00 +2026/05/15 06:18:03.261, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.84, 66 +2026-05-15T06:18:08+08:00 +2026/05/15 06:18:08.284, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.96, 66 +2026-05-15T06:18:13+08:00 +2026/05/15 06:18:13.308, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.16, 66 +2026-05-15T06:18:18+08:00 +2026/05/15 06:18:18.330, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.48, 65 +2026-05-15T06:18:23+08:00 +2026/05/15 06:18:23.351, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.73, 66 +2026-05-15T06:18:28+08:00 +2026/05/15 06:18:28.376, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.55, 65 +2026-05-15T06:18:33+08:00 +2026/05/15 06:18:33.400, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.27, 66 +2026-05-15T06:18:38+08:00 +2026/05/15 06:18:38.423, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.03, 66 +2026-05-15T06:18:43+08:00 +2026/05/15 06:18:43.448, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.91, 66 +2026-05-15T06:18:48+08:00 +2026/05/15 06:18:48.472, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.74, 65 +2026-05-15T06:18:53+08:00 +2026/05/15 06:18:53.497, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.11, 66 +2026-05-15T06:18:58+08:00 +2026/05/15 06:18:58.519, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 292.46, 65 +2026-05-15T06:19:03+08:00 +2026/05/15 06:19:03.578, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.58, 65 +2026-05-15T06:19:08+08:00 +2026/05/15 06:19:08.633, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 367.06, 66 +2026-05-15T06:19:13+08:00 +2026/05/15 06:19:13.657, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.62, 65 +2026-05-15T06:19:18+08:00 +2026/05/15 06:19:18.680, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.16, 66 +2026-05-15T06:19:23+08:00 +2026/05/15 06:19:23.704, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.92, 65 +2026-05-15T06:19:28+08:00 +2026/05/15 06:19:28.728, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.19, 65 +2026-05-15T06:19:33+08:00 +2026/05/15 06:19:33.752, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.86, 66 +2026-05-15T06:19:38+08:00 +2026/05/15 06:19:38.795, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.52, 66 +2026-05-15T06:19:43+08:00 +2026/05/15 06:19:43.842, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.67, 66 +2026-05-15T06:19:48+08:00 +2026/05/15 06:19:48.866, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 365.97, 65 +2026-05-15T06:19:53+08:00 +2026/05/15 06:19:53.890, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.13, 65 +2026-05-15T06:19:58+08:00 +2026/05/15 06:19:58.915, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.18, 67 +2026-05-15T06:20:03+08:00 +2026/05/15 06:20:03.954, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.79, 66 +2026-05-15T06:20:08+08:00 +2026/05/15 06:20:08.979, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.99, 66 +2026-05-15T06:20:14+08:00 +2026/05/15 06:20:14.017, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 257.64, 65 +2026-05-15T06:20:19+08:00 +2026/05/15 06:20:19.081, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.99, 65 +2026-05-15T06:20:24+08:00 +2026/05/15 06:20:24.106, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.56, 66 +2026-05-15T06:20:29+08:00 +2026/05/15 06:20:29.145, NVIDIA GeForce RTX 5090, 87, 36, 9607, 32607, 362.41, 65 +2026-05-15T06:20:34+08:00 +2026/05/15 06:20:34.222, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.60, 66 +2026-05-15T06:20:39+08:00 +2026/05/15 06:20:39.248, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.73, 65 +2026-05-15T06:20:44+08:00 +2026/05/15 06:20:44.272, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.56, 66 +2026-05-15T06:20:49+08:00 +2026/05/15 06:20:49.311, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.55, 66 +2026-05-15T06:20:54+08:00 +2026/05/15 06:20:54.335, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 336.24, 60 +2026-05-15T06:20:59+08:00 +2026/05/15 06:20:59.376, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.12, 66 +2026-05-15T06:21:04+08:00 +2026/05/15 06:21:04.441, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.42, 65 +2026-05-15T06:21:09+08:00 +2026/05/15 06:21:09.465, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 365.07, 65 +2026-05-15T06:21:14+08:00 +2026/05/15 06:21:14.532, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.36, 66 +2026-05-15T06:21:19+08:00 +2026/05/15 06:21:19.556, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.52, 65 +2026-05-15T06:21:24+08:00 +2026/05/15 06:21:24.627, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.20, 66 +2026-05-15T06:21:29+08:00 +2026/05/15 06:21:29.650, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.72, 66 +2026-05-15T06:21:34+08:00 +2026/05/15 06:21:34.694, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.81, 65 +2026-05-15T06:21:39+08:00 +2026/05/15 06:21:39.734, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.98, 66 +2026-05-15T06:21:44+08:00 +2026/05/15 06:21:44.757, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.56, 66 +2026-05-15T06:21:49+08:00 +2026/05/15 06:21:49.779, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 64 +2026-05-15T06:21:54+08:00 +2026/05/15 06:21:54.804, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.94, 66 +2026-05-15T06:21:59+08:00 +2026/05/15 06:21:59.829, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.76, 66 +2026-05-15T06:22:04+08:00 +2026/05/15 06:22:04.853, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 343.04, 65 +2026-05-15T06:22:09+08:00 +2026/05/15 06:22:09.878, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 304.38, 59 +2026-05-15T06:22:14+08:00 +2026/05/15 06:22:14.902, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.05, 66 +2026-05-15T06:22:19+08:00 +2026/05/15 06:22:19.925, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.10, 66 +2026-05-15T06:22:24+08:00 +2026/05/15 06:22:24.949, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.39, 66 +2026-05-15T06:22:29+08:00 +2026/05/15 06:22:29.973, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 65 +2026-05-15T06:22:34+08:00 +2026/05/15 06:22:34.996, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 367.00, 66 +2026-05-15T06:22:40+08:00 +2026/05/15 06:22:40.019, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.06, 66 +2026-05-15T06:22:45+08:00 +2026/05/15 06:22:45.043, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.14, 66 +2026-05-15T06:22:50+08:00 +2026/05/15 06:22:50.066, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.28, 66 +2026-05-15T06:22:55+08:00 +2026/05/15 06:22:55.090, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.86, 66 +2026-05-15T06:23:00+08:00 +2026/05/15 06:23:00.116, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 66 +2026-05-15T06:23:05+08:00 +2026/05/15 06:23:05.139, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.14, 65 +2026-05-15T06:23:10+08:00 +2026/05/15 06:23:10.163, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.89, 66 +2026-05-15T06:23:15+08:00 +2026/05/15 06:23:15.186, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.93, 66 +2026-05-15T06:23:20+08:00 +2026/05/15 06:23:20.212, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.76, 66 +2026-05-15T06:23:25+08:00 +2026/05/15 06:23:25.236, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.59, 65 +2026-05-15T06:23:30+08:00 +2026/05/15 06:23:30.260, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.78, 66 +2026-05-15T06:23:35+08:00 +2026/05/15 06:23:35.287, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.81, 65 +2026-05-15T06:23:40+08:00 +2026/05/15 06:23:40.309, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.55, 66 +2026-05-15T06:23:45+08:00 +2026/05/15 06:23:45.334, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.99, 66 +2026-05-15T06:23:50+08:00 +2026/05/15 06:23:50.358, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.13, 66 +2026-05-15T06:23:55+08:00 +2026/05/15 06:23:55.379, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 356.12, 65 +2026-05-15T06:24:00+08:00 +2026/05/15 06:24:00.402, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.49, 66 +2026-05-15T06:24:05+08:00 +2026/05/15 06:24:05.430, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.98, 65 +2026-05-15T06:24:10+08:00 +2026/05/15 06:24:10.453, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.12, 66 +2026-05-15T06:24:15+08:00 +2026/05/15 06:24:15.476, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.33, 66 +2026-05-15T06:24:20+08:00 +2026/05/15 06:24:20.500, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.36, 66 +2026-05-15T06:24:25+08:00 +2026/05/15 06:24:25.524, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.77, 66 +2026-05-15T06:24:30+08:00 +2026/05/15 06:24:30.547, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.98, 65 +2026-05-15T06:24:35+08:00 +2026/05/15 06:24:35.571, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.38, 66 +2026-05-15T06:24:40+08:00 +2026/05/15 06:24:40.594, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.58, 65 +2026-05-15T06:24:45+08:00 +2026/05/15 06:24:45.617, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.28, 65 +2026-05-15T06:24:50+08:00 +2026/05/15 06:24:50.642, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.34, 65 +2026-05-15T06:24:55+08:00 +2026/05/15 06:24:55.664, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.18, 66 +2026-05-15T06:25:00+08:00 +2026/05/15 06:25:00.689, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.91, 65 +2026-05-15T06:25:05+08:00 +2026/05/15 06:25:05.712, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.58, 66 +2026-05-15T06:25:10+08:00 +2026/05/15 06:25:10.736, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.06, 65 +2026-05-15T06:25:15+08:00 +2026/05/15 06:25:15.759, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.07, 67 +2026-05-15T06:25:20+08:00 +2026/05/15 06:25:20.783, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.05, 65 +2026-05-15T06:25:25+08:00 +2026/05/15 06:25:25.807, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.03, 66 +2026-05-15T06:25:30+08:00 +2026/05/15 06:25:30.831, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 365.22, 66 +2026-05-15T06:25:35+08:00 +2026/05/15 06:25:35.855, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.91, 66 +2026-05-15T06:25:40+08:00 +2026/05/15 06:25:40.878, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.21, 65 +2026-05-15T06:25:45+08:00 +2026/05/15 06:25:45.903, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.06, 65 +2026-05-15T06:25:50+08:00 +2026/05/15 06:25:50.926, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.16, 65 +2026-05-15T06:25:55+08:00 +2026/05/15 06:25:55.952, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.75, 65 +2026-05-15T06:26:00+08:00 +2026/05/15 06:26:00.975, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.57, 65 +2026-05-15T06:26:05+08:00 +2026/05/15 06:26:05.998, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.57, 65 +2026-05-15T06:26:11+08:00 +2026/05/15 06:26:11.023, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 241.74, 59 +2026-05-15T06:26:16+08:00 +2026/05/15 06:26:16.045, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.80, 65 +2026-05-15T06:26:21+08:00 +2026/05/15 06:26:21.068, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.92, 65 +2026-05-15T06:26:26+08:00 +2026/05/15 06:26:26.092, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.43, 66 +2026-05-15T06:26:31+08:00 +2026/05/15 06:26:31.116, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.73, 65 +2026-05-15T06:26:36+08:00 +2026/05/15 06:26:36.142, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 307.93, 60 +2026-05-15T06:26:41+08:00 +2026/05/15 06:26:41.167, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.50, 64 +2026-05-15T06:26:46+08:00 +2026/05/15 06:26:46.191, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.60, 66 +2026-05-15T06:26:51+08:00 +2026/05/15 06:26:51.215, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.32, 65 +2026-05-15T06:26:56+08:00 +2026/05/15 06:26:56.240, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.44, 66 +2026-05-15T06:27:01+08:00 +2026/05/15 06:27:01.264, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.95, 66 +2026-05-15T06:27:06+08:00 +2026/05/15 06:27:06.286, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.25, 66 +2026-05-15T06:27:11+08:00 +2026/05/15 06:27:11.309, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.81, 65 +2026-05-15T06:27:16+08:00 +2026/05/15 06:27:16.334, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.13, 65 +2026-05-15T06:27:21+08:00 +2026/05/15 06:27:21.357, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.40, 65 +2026-05-15T06:27:26+08:00 +2026/05/15 06:27:26.380, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.76, 65 +2026-05-15T06:27:31+08:00 +2026/05/15 06:27:31.406, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 363.79, 65 +2026-05-15T06:27:36+08:00 +2026/05/15 06:27:36.428, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.77, 66 +2026-05-15T06:27:41+08:00 +2026/05/15 06:27:41.450, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.62, 65 +2026-05-15T06:27:46+08:00 +2026/05/15 06:27:46.474, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 257.60, 59 +2026-05-15T06:27:51+08:00 +2026/05/15 06:27:51.495, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.24, 65 +2026-05-15T06:27:56+08:00 +2026/05/15 06:27:56.518, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.60, 64 +2026-05-15T06:28:01+08:00 +2026/05/15 06:28:01.541, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.95, 65 +2026-05-15T06:28:06+08:00 +2026/05/15 06:28:06.565, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.82, 66 +2026-05-15T06:28:11+08:00 +2026/05/15 06:28:11.588, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 365.51, 65 +2026-05-15T06:28:16+08:00 +2026/05/15 06:28:16.612, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.82, 66 +2026-05-15T06:28:21+08:00 +2026/05/15 06:28:21.636, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.74, 65 +2026-05-15T06:28:26+08:00 +2026/05/15 06:28:26.676, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 66 +2026-05-15T06:28:31+08:00 +2026/05/15 06:28:31.700, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 299.38, 65 +2026-05-15T06:28:36+08:00 +2026/05/15 06:28:36.745, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.75, 65 +2026-05-15T06:28:41+08:00 +2026/05/15 06:28:41.769, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.67, 65 +2026-05-15T06:28:46+08:00 +2026/05/15 06:28:46.811, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.27, 66 +2026-05-15T06:28:51+08:00 +2026/05/15 06:28:51.856, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.84, 67 +2026-05-15T06:28:56+08:00 +2026/05/15 06:28:56.880, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.77, 66 +2026-05-15T06:29:01+08:00 +2026/05/15 06:29:01.905, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.31, 65 +2026-05-15T06:29:06+08:00 +2026/05/15 06:29:06.946, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 329.47, 61 +2026-05-15T06:29:11+08:00 +2026/05/15 06:29:11.968, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.96, 66 +2026-05-15T06:29:16+08:00 +2026/05/15 06:29:17.027, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.32, 65 +2026-05-15T06:29:22+08:00 +2026/05/15 06:29:22.051, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.09, 65 +2026-05-15T06:29:27+08:00 +2026/05/15 06:29:27.071, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.36, 66 +2026-05-15T06:29:32+08:00 +2026/05/15 06:29:32.095, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.05, 65 +2026-05-15T06:29:37+08:00 +2026/05/15 06:29:37.134, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.70, 66 +2026-05-15T06:29:42+08:00 +2026/05/15 06:29:42.206, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.38, 65 +2026-05-15T06:29:47+08:00 +2026/05/15 06:29:47.233, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.14, 66 +2026-05-15T06:29:52+08:00 +2026/05/15 06:29:52.273, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.89, 66 +2026-05-15T06:29:57+08:00 +2026/05/15 06:29:57.334, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.09, 66 +2026-05-15T06:30:02+08:00 +2026/05/15 06:30:02.358, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.37, 65 +2026-05-15T06:30:07+08:00 +2026/05/15 06:30:07.381, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 356.27, 65 +2026-05-15T06:30:12+08:00 +2026/05/15 06:30:12.410, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.06, 66 +2026-05-15T06:30:17+08:00 +2026/05/15 06:30:17.434, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.55, 65 +2026-05-15T06:30:22+08:00 +2026/05/15 06:30:22.457, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.88, 66 +2026-05-15T06:30:27+08:00 +2026/05/15 06:30:27.481, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.60, 66 +2026-05-15T06:30:32+08:00 +2026/05/15 06:30:32.507, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.32, 64 +2026-05-15T06:30:37+08:00 +2026/05/15 06:30:37.530, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.37, 65 +2026-05-15T06:30:42+08:00 +2026/05/15 06:30:42.554, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.48, 64 +2026-05-15T06:30:47+08:00 +2026/05/15 06:30:47.577, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.73, 65 +2026-05-15T06:30:52+08:00 +2026/05/15 06:30:52.600, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.47, 65 +2026-05-15T06:30:57+08:00 +2026/05/15 06:30:57.624, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.78, 65 +2026-05-15T06:31:02+08:00 +2026/05/15 06:31:02.647, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.09, 65 +2026-05-15T06:31:07+08:00 +2026/05/15 06:31:07.675, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.49, 65 +2026-05-15T06:31:12+08:00 +2026/05/15 06:31:12.698, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.99, 66 +2026-05-15T06:31:17+08:00 +2026/05/15 06:31:17.727, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.57, 66 +2026-05-15T06:31:22+08:00 +2026/05/15 06:31:22.750, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.28, 65 +2026-05-15T06:31:27+08:00 +2026/05/15 06:31:27.773, NVIDIA GeForce RTX 5090, 6, 3, 9607, 32607, 344.27, 62 +2026-05-15T06:31:32+08:00 +2026/05/15 06:31:32.794, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.85, 64 +2026-05-15T06:31:37+08:00 +2026/05/15 06:31:37.817, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.57, 64 +2026-05-15T06:31:42+08:00 +2026/05/15 06:31:42.841, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.89, 65 +2026-05-15T06:31:47+08:00 +2026/05/15 06:31:47.863, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.76, 66 +2026-05-15T06:31:52+08:00 +2026/05/15 06:31:52.884, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.36, 65 +2026-05-15T06:31:57+08:00 +2026/05/15 06:31:57.908, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.42, 66 +2026-05-15T06:32:02+08:00 +2026/05/15 06:32:02.932, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.72, 65 +2026-05-15T06:32:07+08:00 +2026/05/15 06:32:07.959, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.26, 65 +2026-05-15T06:32:12+08:00 +2026/05/15 06:32:12.983, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.81, 65 +2026-05-15T06:32:17+08:00 +2026/05/15 06:32:18.007, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 66 +2026-05-15T06:32:23+08:00 +2026/05/15 06:32:23.029, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.83, 66 +2026-05-15T06:32:28+08:00 +2026/05/15 06:32:28.056, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.58, 66 +2026-05-15T06:32:33+08:00 +2026/05/15 06:32:33.081, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 66 +2026-05-15T06:32:38+08:00 +2026/05/15 06:32:38.112, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.44, 66 +2026-05-15T06:32:43+08:00 +2026/05/15 06:32:43.136, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.46, 66 +2026-05-15T06:32:48+08:00 +2026/05/15 06:32:48.160, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.98, 66 +2026-05-15T06:32:53+08:00 +2026/05/15 06:32:53.186, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.64, 67 +2026-05-15T06:32:58+08:00 +2026/05/15 06:32:58.210, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.67, 66 +2026-05-15T06:33:03+08:00 +2026/05/15 06:33:03.233, NVIDIA GeForce RTX 5090, 35, 20, 9607, 32607, 233.76, 59 +2026-05-15T06:33:08+08:00 +2026/05/15 06:33:08.261, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.99, 65 +2026-05-15T06:33:13+08:00 +2026/05/15 06:33:13.286, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.59, 65 +2026-05-15T06:33:18+08:00 +2026/05/15 06:33:18.313, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.68, 66 +2026-05-15T06:33:23+08:00 +2026/05/15 06:33:23.336, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.66, 66 +2026-05-15T06:33:28+08:00 +2026/05/15 06:33:28.362, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.65, 66 +2026-05-15T06:33:33+08:00 +2026/05/15 06:33:33.387, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.68, 66 +2026-05-15T06:33:38+08:00 +2026/05/15 06:33:38.410, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.83, 66 +2026-05-15T06:33:43+08:00 +2026/05/15 06:33:43.433, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.25, 65 +2026-05-15T06:33:48+08:00 +2026/05/15 06:33:48.457, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.17, 66 +2026-05-15T06:33:53+08:00 +2026/05/15 06:33:53.482, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 211.21, 64 +2026-05-15T06:33:58+08:00 +2026/05/15 06:33:58.506, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.45, 66 +2026-05-15T06:34:03+08:00 +2026/05/15 06:34:03.531, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.89, 65 +2026-05-15T06:34:08+08:00 +2026/05/15 06:34:08.555, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.14, 64 +2026-05-15T06:34:13+08:00 +2026/05/15 06:34:13.582, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.60, 66 +2026-05-15T06:34:18+08:00 +2026/05/15 06:34:18.606, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.33, 66 +2026-05-15T06:34:23+08:00 +2026/05/15 06:34:23.632, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.80, 66 +2026-05-15T06:34:28+08:00 +2026/05/15 06:34:28.655, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 366.86, 66 +2026-05-15T06:34:33+08:00 +2026/05/15 06:34:33.677, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.92, 64 +2026-05-15T06:34:38+08:00 +2026/05/15 06:34:38.700, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.45, 66 +2026-05-15T06:34:43+08:00 +2026/05/15 06:34:43.721, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.36, 66 +2026-05-15T06:34:48+08:00 +2026/05/15 06:34:48.745, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.97, 66 +2026-05-15T06:34:53+08:00 +2026/05/15 06:34:53.770, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.96, 65 +2026-05-15T06:34:58+08:00 +2026/05/15 06:34:58.795, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.12, 64 +2026-05-15T06:35:03+08:00 +2026/05/15 06:35:03.819, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 355.85, 65 +2026-05-15T06:35:08+08:00 +2026/05/15 06:35:08.844, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.82, 66 +2026-05-15T06:35:13+08:00 +2026/05/15 06:35:13.870, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 66 +2026-05-15T06:35:18+08:00 +2026/05/15 06:35:18.895, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.90, 65 +2026-05-15T06:35:23+08:00 +2026/05/15 06:35:23.922, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.73, 66 +2026-05-15T06:35:28+08:00 +2026/05/15 06:35:28.947, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.65, 66 +2026-05-15T06:35:33+08:00 +2026/05/15 06:35:33.972, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.58, 66 +2026-05-15T06:35:38+08:00 +2026/05/15 06:35:38.996, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.48, 66 +2026-05-15T06:35:44+08:00 +2026/05/15 06:35:44.019, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 349.76, 64 +2026-05-15T06:35:49+08:00 +2026/05/15 06:35:49.043, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.60, 66 +2026-05-15T06:35:54+08:00 +2026/05/15 06:35:54.084, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.85, 66 +2026-05-15T06:35:59+08:00 +2026/05/15 06:35:59.109, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.05, 65 +2026-05-15T06:36:04+08:00 +2026/05/15 06:36:04.136, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.71, 66 +2026-05-15T06:36:09+08:00 +2026/05/15 06:36:09.161, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.95, 65 +2026-05-15T06:36:14+08:00 +2026/05/15 06:36:14.191, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.27, 66 +2026-05-15T06:36:19+08:00 +2026/05/15 06:36:19.215, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 367.16, 66 +2026-05-15T06:36:24+08:00 +2026/05/15 06:36:24.238, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.56, 65 +2026-05-15T06:36:29+08:00 +2026/05/15 06:36:29.262, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.26, 65 +2026-05-15T06:36:34+08:00 +2026/05/15 06:36:34.286, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.80, 66 +2026-05-15T06:36:39+08:00 +2026/05/15 06:36:39.310, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.79, 66 +2026-05-15T06:36:44+08:00 +2026/05/15 06:36:44.333, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.73, 65 +2026-05-15T06:36:49+08:00 +2026/05/15 06:36:49.358, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.20, 66 +2026-05-15T06:36:54+08:00 +2026/05/15 06:36:54.383, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.85, 65 +2026-05-15T06:36:59+08:00 +2026/05/15 06:36:59.407, NVIDIA GeForce RTX 5090, 4, 1, 9607, 32607, 256.74, 64 +2026-05-15T06:37:04+08:00 +2026/05/15 06:37:04.430, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 365.05, 65 +2026-05-15T06:37:09+08:00 +2026/05/15 06:37:09.454, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.97, 66 +2026-05-15T06:37:14+08:00 +2026/05/15 06:37:14.477, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.57, 66 +2026-05-15T06:37:19+08:00 +2026/05/15 06:37:19.500, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.49, 65 +2026-05-15T06:37:24+08:00 +2026/05/15 06:37:24.522, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.20, 65 +2026-05-15T06:37:29+08:00 +2026/05/15 06:37:29.546, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.77, 65 +2026-05-15T06:37:34+08:00 +2026/05/15 06:37:34.569, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.69, 66 +2026-05-15T06:37:39+08:00 +2026/05/15 06:37:39.592, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.99, 65 +2026-05-15T06:37:44+08:00 +2026/05/15 06:37:44.618, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.71, 65 +2026-05-15T06:37:49+08:00 +2026/05/15 06:37:49.641, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.22, 66 +2026-05-15T06:37:54+08:00 +2026/05/15 06:37:54.665, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.57, 65 +2026-05-15T06:37:59+08:00 +2026/05/15 06:37:59.688, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.47, 65 +2026-05-15T06:38:04+08:00 +2026/05/15 06:38:04.714, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.71, 65 +2026-05-15T06:38:09+08:00 +2026/05/15 06:38:09.736, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.03, 65 +2026-05-15T06:38:14+08:00 +2026/05/15 06:38:14.759, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.30, 65 +2026-05-15T06:38:19+08:00 +2026/05/15 06:38:19.783, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.80, 65 +2026-05-15T06:38:24+08:00 +2026/05/15 06:38:24.809, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.19, 66 +2026-05-15T06:38:29+08:00 +2026/05/15 06:38:29.834, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.05, 66 +2026-05-15T06:38:34+08:00 +2026/05/15 06:38:34.858, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.56, 65 +2026-05-15T06:38:39+08:00 +2026/05/15 06:38:39.883, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.24, 65 +2026-05-15T06:38:44+08:00 +2026/05/15 06:38:44.908, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.18, 64 +2026-05-15T06:38:49+08:00 +2026/05/15 06:38:49.932, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.07, 65 +2026-05-15T06:38:54+08:00 +2026/05/15 06:38:54.957, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.70, 65 +2026-05-15T06:38:59+08:00 +2026/05/15 06:38:59.980, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.05, 65 +2026-05-15T06:39:04+08:00 +2026/05/15 06:39:05.007, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.95, 65 +2026-05-15T06:39:10+08:00 +2026/05/15 06:39:10.031, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.54, 66 +2026-05-15T06:39:15+08:00 +2026/05/15 06:39:15.055, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.73, 66 +2026-05-15T06:39:20+08:00 +2026/05/15 06:39:20.078, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.27, 66 +2026-05-15T06:39:25+08:00 +2026/05/15 06:39:25.102, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.27, 66 +2026-05-15T06:39:30+08:00 +2026/05/15 06:39:30.127, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 363.63, 65 +2026-05-15T06:39:35+08:00 +2026/05/15 06:39:35.153, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 64 +2026-05-15T06:39:40+08:00 +2026/05/15 06:39:40.176, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.33, 65 +2026-05-15T06:39:45+08:00 +2026/05/15 06:39:45.202, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.88, 65 +2026-05-15T06:39:50+08:00 +2026/05/15 06:39:50.226, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.63, 65 +2026-05-15T06:39:55+08:00 +2026/05/15 06:39:55.250, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.61, 66 +2026-05-15T06:40:00+08:00 +2026/05/15 06:40:00.273, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.05, 66 +2026-05-15T06:40:05+08:00 +2026/05/15 06:40:05.297, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 245.15, 65 +2026-05-15T06:40:10+08:00 +2026/05/15 06:40:10.321, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 360.10, 65 +2026-05-15T06:40:15+08:00 +2026/05/15 06:40:15.345, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 197.64, 58 +2026-05-15T06:40:20+08:00 +2026/05/15 06:40:20.368, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 361.17, 65 +2026-05-15T06:40:25+08:00 +2026/05/15 06:40:25.395, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.48, 65 +2026-05-15T06:40:30+08:00 +2026/05/15 06:40:30.419, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 361.11, 65 +2026-05-15T06:40:35+08:00 +2026/05/15 06:40:35.442, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.98, 65 +2026-05-15T06:40:40+08:00 +2026/05/15 06:40:40.466, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.11, 65 +2026-05-15T06:40:45+08:00 +2026/05/15 06:40:45.491, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 304.48, 65 +2026-05-15T06:40:50+08:00 +2026/05/15 06:40:50.514, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 361.64, 65 +2026-05-15T06:40:55+08:00 +2026/05/15 06:40:55.538, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.76, 65 +2026-05-15T06:41:00+08:00 +2026/05/15 06:41:00.561, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.87, 65 +2026-05-15T06:41:05+08:00 +2026/05/15 06:41:05.584, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.21, 65 +2026-05-15T06:41:10+08:00 +2026/05/15 06:41:10.610, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.13, 66 +2026-05-15T06:41:15+08:00 +2026/05/15 06:41:15.635, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.66, 65 +2026-05-15T06:41:20+08:00 +2026/05/15 06:41:20.660, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.44, 65 +2026-05-15T06:41:25+08:00 +2026/05/15 06:41:25.683, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 183.00, 58 +2026-05-15T06:41:30+08:00 +2026/05/15 06:41:30.705, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.70, 65 +2026-05-15T06:41:35+08:00 +2026/05/15 06:41:35.729, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.03, 65 +2026-05-15T06:41:40+08:00 +2026/05/15 06:41:40.752, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.21, 65 +2026-05-15T06:41:45+08:00 +2026/05/15 06:41:45.778, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.46, 65 +2026-05-15T06:41:50+08:00 +2026/05/15 06:41:50.804, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.19, 65 +2026-05-15T06:41:55+08:00 +2026/05/15 06:41:55.827, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.38, 65 +2026-05-15T06:42:00+08:00 +2026/05/15 06:42:00.849, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.02, 65 +2026-05-15T06:42:05+08:00 +2026/05/15 06:42:05.872, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.93, 65 +2026-05-15T06:42:10+08:00 +2026/05/15 06:42:10.900, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.53, 65 +2026-05-15T06:42:15+08:00 +2026/05/15 06:42:15.923, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 65 +2026-05-15T06:42:20+08:00 +2026/05/15 06:42:20.948, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.76, 66 +2026-05-15T06:42:25+08:00 +2026/05/15 06:42:25.972, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.20, 65 +2026-05-15T06:42:30+08:00 +2026/05/15 06:42:30.997, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.26, 65 +2026-05-15T06:42:36+08:00 +2026/05/15 06:42:36.020, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.67, 65 +2026-05-15T06:42:41+08:00 +2026/05/15 06:42:41.044, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.66, 66 +2026-05-15T06:42:46+08:00 +2026/05/15 06:42:46.067, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.67, 66 +2026-05-15T06:42:51+08:00 +2026/05/15 06:42:51.089, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.80, 65 +2026-05-15T06:42:56+08:00 +2026/05/15 06:42:56.112, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.42, 66 +2026-05-15T06:43:01+08:00 +2026/05/15 06:43:01.134, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 363.91, 65 +2026-05-15T06:43:06+08:00 +2026/05/15 06:43:06.157, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 364.48, 65 +2026-05-15T06:43:11+08:00 +2026/05/15 06:43:11.179, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 65 +2026-05-15T06:43:16+08:00 +2026/05/15 06:43:16.202, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.89, 65 +2026-05-15T06:43:21+08:00 +2026/05/15 06:43:21.225, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.32, 64 +2026-05-15T06:43:26+08:00 +2026/05/15 06:43:26.248, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.60, 65 +2026-05-15T06:43:31+08:00 +2026/05/15 06:43:31.275, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.71, 66 +2026-05-15T06:43:36+08:00 +2026/05/15 06:43:36.299, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.45, 65 +2026-05-15T06:43:41+08:00 +2026/05/15 06:43:41.323, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.25, 66 +2026-05-15T06:43:46+08:00 +2026/05/15 06:43:46.346, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.40, 66 +2026-05-15T06:43:51+08:00 +2026/05/15 06:43:51.380, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.87, 66 +2026-05-15T06:43:56+08:00 +2026/05/15 06:43:56.400, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.79, 65 +2026-05-15T06:44:01+08:00 +2026/05/15 06:44:01.423, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.40, 65 +2026-05-15T06:44:06+08:00 +2026/05/15 06:44:06.450, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.52, 65 +2026-05-15T06:44:11+08:00 +2026/05/15 06:44:11.475, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.84, 66 +2026-05-15T06:44:16+08:00 +2026/05/15 06:44:16.499, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.94, 64 +2026-05-15T06:44:21+08:00 +2026/05/15 06:44:21.523, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.93, 65 +2026-05-15T06:44:26+08:00 +2026/05/15 06:44:26.549, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.53, 65 +2026-05-15T06:44:31+08:00 +2026/05/15 06:44:31.574, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.15, 65 +2026-05-15T06:44:36+08:00 +2026/05/15 06:44:36.600, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.96, 64 +2026-05-15T06:44:41+08:00 +2026/05/15 06:44:41.622, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.26, 66 +2026-05-15T06:44:46+08:00 +2026/05/15 06:44:46.645, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.96, 65 +2026-05-15T06:44:51+08:00 +2026/05/15 06:44:51.668, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.36, 64 +2026-05-15T06:44:56+08:00 +2026/05/15 06:44:56.691, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 364.55, 65 +2026-05-15T06:45:01+08:00 +2026/05/15 06:45:01.716, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.77, 65 +2026-05-15T06:45:06+08:00 +2026/05/15 06:45:06.739, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.50, 66 +2026-05-15T06:45:11+08:00 +2026/05/15 06:45:11.763, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.21, 64 +2026-05-15T06:45:16+08:00 +2026/05/15 06:45:16.788, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.36, 65 +2026-05-15T06:45:21+08:00 +2026/05/15 06:45:21.811, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.30, 64 +2026-05-15T06:45:26+08:00 +2026/05/15 06:45:26.836, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 65 +2026-05-15T06:45:31+08:00 +2026/05/15 06:45:31.858, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 364.14, 65 +2026-05-15T06:45:36+08:00 +2026/05/15 06:45:36.882, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.13, 65 +2026-05-15T06:45:41+08:00 +2026/05/15 06:45:41.905, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.63, 65 +2026-05-15T06:45:46+08:00 +2026/05/15 06:45:46.930, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.33, 66 +2026-05-15T06:45:51+08:00 +2026/05/15 06:45:51.954, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.70, 65 +2026-05-15T06:45:56+08:00 +2026/05/15 06:45:56.978, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.27, 66 +2026-05-15T06:46:01+08:00 +2026/05/15 06:46:02.002, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.32, 65 +2026-05-15T06:46:07+08:00 +2026/05/15 06:46:07.025, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.41, 66 +2026-05-15T06:46:12+08:00 +2026/05/15 06:46:12.064, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.91, 65 +2026-05-15T06:46:17+08:00 +2026/05/15 06:46:17.088, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.44, 66 +2026-05-15T06:46:22+08:00 +2026/05/15 06:46:22.113, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.35, 64 +2026-05-15T06:46:27+08:00 +2026/05/15 06:46:27.183, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.99, 65 +2026-05-15T06:46:32+08:00 +2026/05/15 06:46:32.207, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 251.26, 62 +2026-05-15T06:46:37+08:00 +2026/05/15 06:46:37.230, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.35, 65 +2026-05-15T06:46:42+08:00 +2026/05/15 06:46:42.302, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.69, 64 +2026-05-15T06:46:47+08:00 +2026/05/15 06:46:47.349, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.35, 65 +2026-05-15T06:46:52+08:00 +2026/05/15 06:46:52.373, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 363.56, 66 +2026-05-15T06:46:57+08:00 +2026/05/15 06:46:57.399, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.45, 64 +2026-05-15T06:47:02+08:00 +2026/05/15 06:47:02.442, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.45, 65 +2026-05-15T06:47:07+08:00 +2026/05/15 06:47:07.465, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.09, 65 +2026-05-15T06:47:12+08:00 +2026/05/15 06:47:12.490, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.34, 65 +2026-05-15T06:47:17+08:00 +2026/05/15 06:47:17.531, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.33, 65 +2026-05-15T06:47:22+08:00 +2026/05/15 06:47:22.556, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 363.06, 65 +2026-05-15T06:47:27+08:00 +2026/05/15 06:47:27.579, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.98, 66 +2026-05-15T06:47:32+08:00 +2026/05/15 06:47:32.603, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.44, 65 +2026-05-15T06:47:37+08:00 +2026/05/15 06:47:37.626, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.66, 65 +2026-05-15T06:47:42+08:00 +2026/05/15 06:47:42.649, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.52, 64 +2026-05-15T06:47:47+08:00 +2026/05/15 06:47:47.673, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.82, 64 +2026-05-15T06:47:52+08:00 +2026/05/15 06:47:52.696, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.07, 64 +2026-05-15T06:47:57+08:00 +2026/05/15 06:47:57.719, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.63, 64 +2026-05-15T06:48:02+08:00 +2026/05/15 06:48:02.742, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.85, 63 +2026-05-15T06:48:07+08:00 +2026/05/15 06:48:07.768, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.30, 63 +2026-05-15T06:48:12+08:00 +2026/05/15 06:48:12.791, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.21, 64 +2026-05-15T06:48:17+08:00 +2026/05/15 06:48:17.815, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 333.97, 60 +2026-05-15T06:48:22+08:00 +2026/05/15 06:48:22.836, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.86, 65 +2026-05-15T06:48:27+08:00 +2026/05/15 06:48:27.861, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.71, 64 +2026-05-15T06:48:32+08:00 +2026/05/15 06:48:32.885, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.45, 64 +2026-05-15T06:48:37+08:00 +2026/05/15 06:48:37.908, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.36, 66 +2026-05-15T06:48:42+08:00 +2026/05/15 06:48:42.932, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.01, 65 +2026-05-15T06:48:47+08:00 +2026/05/15 06:48:47.957, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.32, 66 +2026-05-15T06:48:52+08:00 +2026/05/15 06:48:52.985, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.00, 65 +2026-05-15T06:48:57+08:00 +2026/05/15 06:48:58.008, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.62, 64 +2026-05-15T06:49:03+08:00 +2026/05/15 06:49:03.032, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 355.69, 61 +2026-05-15T06:49:08+08:00 +2026/05/15 06:49:08.053, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.15, 65 +2026-05-15T06:49:13+08:00 +2026/05/15 06:49:13.079, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.68, 65 +2026-05-15T06:49:18+08:00 +2026/05/15 06:49:18.102, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.77, 66 +2026-05-15T06:49:23+08:00 +2026/05/15 06:49:23.127, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.73, 65 +2026-05-15T06:49:28+08:00 +2026/05/15 06:49:28.149, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.64, 65 +2026-05-15T06:49:33+08:00 +2026/05/15 06:49:33.174, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.85, 65 +2026-05-15T06:49:38+08:00 +2026/05/15 06:49:38.198, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.74, 66 +2026-05-15T06:49:43+08:00 +2026/05/15 06:49:43.221, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.03, 64 +2026-05-15T06:49:48+08:00 +2026/05/15 06:49:48.245, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.77, 64 +2026-05-15T06:49:53+08:00 +2026/05/15 06:49:53.271, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.85, 64 +2026-05-15T06:49:58+08:00 +2026/05/15 06:49:58.295, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.43, 65 +2026-05-15T06:50:03+08:00 +2026/05/15 06:50:03.318, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.34, 65 +2026-05-15T06:50:08+08:00 +2026/05/15 06:50:08.343, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.61, 65 +2026-05-15T06:50:13+08:00 +2026/05/15 06:50:13.365, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.20, 65 +2026-05-15T06:50:18+08:00 +2026/05/15 06:50:18.389, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.76, 64 +2026-05-15T06:50:23+08:00 +2026/05/15 06:50:23.411, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.13, 66 +2026-05-15T06:50:28+08:00 +2026/05/15 06:50:28.433, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.30, 65 +2026-05-15T06:50:33+08:00 +2026/05/15 06:50:33.457, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.16, 65 +2026-05-15T06:50:38+08:00 +2026/05/15 06:50:38.480, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.14, 65 +2026-05-15T06:50:43+08:00 +2026/05/15 06:50:43.503, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.92, 65 +2026-05-15T06:50:48+08:00 +2026/05/15 06:50:48.526, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.82, 64 +2026-05-15T06:50:53+08:00 +2026/05/15 06:50:53.549, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.92, 65 +2026-05-15T06:50:58+08:00 +2026/05/15 06:50:58.572, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 254.42, 64 +2026-05-15T06:51:03+08:00 +2026/05/15 06:51:03.595, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.48, 65 +2026-05-15T06:51:08+08:00 +2026/05/15 06:51:08.618, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.64, 64 +2026-05-15T06:51:13+08:00 +2026/05/15 06:51:13.642, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.03, 65 +2026-05-15T06:51:18+08:00 +2026/05/15 06:51:18.665, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.24, 66 +2026-05-15T06:51:23+08:00 +2026/05/15 06:51:23.687, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.91, 63 +2026-05-15T06:51:28+08:00 +2026/05/15 06:51:28.711, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 359.10, 66 +2026-05-15T06:51:33+08:00 +2026/05/15 06:51:33.735, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.35, 65 +2026-05-15T06:51:38+08:00 +2026/05/15 06:51:38.763, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.69, 65 +2026-05-15T06:51:43+08:00 +2026/05/15 06:51:43.787, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.58, 65 +2026-05-15T06:51:48+08:00 +2026/05/15 06:51:48.809, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 316.82, 65 +2026-05-15T06:51:53+08:00 +2026/05/15 06:51:53.831, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.13, 65 +2026-05-15T06:51:58+08:00 +2026/05/15 06:51:58.857, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.92, 65 +2026-05-15T06:52:03+08:00 +2026/05/15 06:52:03.878, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.46, 65 +2026-05-15T06:52:08+08:00 +2026/05/15 06:52:08.901, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.45, 65 +2026-05-15T06:52:13+08:00 +2026/05/15 06:52:13.924, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.03, 65 +2026-05-15T06:52:18+08:00 +2026/05/15 06:52:18.946, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.81, 65 +2026-05-15T06:52:23+08:00 +2026/05/15 06:52:23.968, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.68, 65 +2026-05-15T06:52:28+08:00 +2026/05/15 06:52:28.989, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.93, 65 +2026-05-15T06:52:33+08:00 +2026/05/15 06:52:34.011, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.25, 65 +2026-05-15T06:52:39+08:00 +2026/05/15 06:52:39.035, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.06, 65 +2026-05-15T06:52:44+08:00 +2026/05/15 06:52:44.057, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.39, 65 +2026-05-15T06:52:49+08:00 +2026/05/15 06:52:49.079, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.93, 65 +2026-05-15T06:52:54+08:00 +2026/05/15 06:52:54.103, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.45, 64 +2026-05-15T06:52:59+08:00 +2026/05/15 06:52:59.124, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.10, 65 +2026-05-15T06:53:04+08:00 +2026/05/15 06:53:04.145, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.44, 64 +2026-05-15T06:53:09+08:00 +2026/05/15 06:53:09.173, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.45, 65 +2026-05-15T06:53:14+08:00 +2026/05/15 06:53:14.196, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.45, 65 +2026-05-15T06:53:19+08:00 +2026/05/15 06:53:19.220, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.26, 65 +2026-05-15T06:53:24+08:00 +2026/05/15 06:53:24.243, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.82, 65 +2026-05-15T06:53:29+08:00 +2026/05/15 06:53:29.266, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.28, 65 +2026-05-15T06:53:34+08:00 +2026/05/15 06:53:34.289, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.82, 64 +2026-05-15T06:53:39+08:00 +2026/05/15 06:53:39.313, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.98, 65 +2026-05-15T06:53:44+08:00 +2026/05/15 06:53:44.335, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.66, 65 +2026-05-15T06:53:49+08:00 +2026/05/15 06:53:49.359, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.50, 65 +2026-05-15T06:53:54+08:00 +2026/05/15 06:53:54.383, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.04, 64 +2026-05-15T06:53:59+08:00 +2026/05/15 06:53:59.406, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 65 +2026-05-15T06:54:04+08:00 +2026/05/15 06:54:04.429, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.41, 64 +2026-05-15T06:54:09+08:00 +2026/05/15 06:54:09.456, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.82, 65 +2026-05-15T06:54:14+08:00 +2026/05/15 06:54:14.482, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.66, 65 +2026-05-15T06:54:19+08:00 +2026/05/15 06:54:19.505, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.10, 65 +2026-05-15T06:54:24+08:00 +2026/05/15 06:54:24.528, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 243.36, 58 +2026-05-15T06:54:29+08:00 +2026/05/15 06:54:29.549, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.37, 65 +2026-05-15T06:54:34+08:00 +2026/05/15 06:54:34.573, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.54, 64 +2026-05-15T06:54:39+08:00 +2026/05/15 06:54:39.597, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.83, 65 +2026-05-15T06:54:44+08:00 +2026/05/15 06:54:44.619, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.32, 64 +2026-05-15T06:54:49+08:00 +2026/05/15 06:54:49.643, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.76, 65 +2026-05-15T06:54:54+08:00 +2026/05/15 06:54:54.666, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.64, 65 +2026-05-15T06:54:59+08:00 +2026/05/15 06:54:59.689, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.72, 64 +2026-05-15T06:55:04+08:00 +2026/05/15 06:55:04.711, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.03, 65 +2026-05-15T06:55:09+08:00 +2026/05/15 06:55:09.735, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.89, 65 +2026-05-15T06:55:14+08:00 +2026/05/15 06:55:14.760, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.64, 66 +2026-05-15T06:55:19+08:00 +2026/05/15 06:55:19.783, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.02, 64 +2026-05-15T06:55:24+08:00 +2026/05/15 06:55:24.807, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.89, 65 +2026-05-15T06:55:29+08:00 +2026/05/15 06:55:29.831, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.23, 65 +2026-05-15T06:55:34+08:00 +2026/05/15 06:55:34.855, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.53, 65 +2026-05-15T06:55:39+08:00 +2026/05/15 06:55:39.878, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.76, 64 +2026-05-15T06:55:44+08:00 +2026/05/15 06:55:44.903, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.09, 65 +2026-05-15T06:55:49+08:00 +2026/05/15 06:55:49.928, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.31, 64 +2026-05-15T06:55:54+08:00 +2026/05/15 06:55:54.951, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.29, 65 +2026-05-15T06:55:59+08:00 +2026/05/15 06:55:59.975, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.74, 65 +2026-05-15T06:56:04+08:00 +2026/05/15 06:56:05.001, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.78, 65 +2026-05-15T06:56:10+08:00 +2026/05/15 06:56:10.025, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.59, 66 +2026-05-15T06:56:15+08:00 +2026/05/15 06:56:15.052, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.51, 65 +2026-05-15T06:56:20+08:00 +2026/05/15 06:56:20.078, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 361.90, 65 +2026-05-15T06:56:25+08:00 +2026/05/15 06:56:25.103, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 363.08, 65 +2026-05-15T06:56:30+08:00 +2026/05/15 06:56:30.127, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.24, 65 +2026-05-15T06:56:35+08:00 +2026/05/15 06:56:35.150, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.24, 66 +2026-05-15T06:56:40+08:00 +2026/05/15 06:56:40.173, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 296.10, 65 +2026-05-15T06:56:45+08:00 +2026/05/15 06:56:45.196, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.66, 65 +2026-05-15T06:56:50+08:00 +2026/05/15 06:56:50.220, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 326.34, 60 +2026-05-15T06:56:55+08:00 +2026/05/15 06:56:55.263, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.36, 65 +2026-05-15T06:57:00+08:00 +2026/05/15 06:57:00.341, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.38, 64 +2026-05-15T06:57:05+08:00 +2026/05/15 06:57:05.365, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.75, 65 +2026-05-15T06:57:10+08:00 +2026/05/15 06:57:10.442, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.69, 64 +2026-05-15T06:57:15+08:00 +2026/05/15 06:57:15.465, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.32, 65 +2026-05-15T06:57:20+08:00 +2026/05/15 06:57:20.506, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.16, 65 +2026-05-15T06:57:25+08:00 +2026/05/15 06:57:25.530, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.00, 64 +2026-05-15T06:57:30+08:00 +2026/05/15 06:57:30.555, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 364.33, 65 +2026-05-15T06:57:35+08:00 +2026/05/15 06:57:35.579, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 363.58, 65 +2026-05-15T06:57:40+08:00 +2026/05/15 06:57:40.603, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.62, 65 +2026-05-15T06:57:45+08:00 +2026/05/15 06:57:45.626, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.29, 64 +2026-05-15T06:57:50+08:00 +2026/05/15 06:57:50.649, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.77, 65 +2026-05-15T06:57:55+08:00 +2026/05/15 06:57:55.673, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.82, 64 +2026-05-15T06:58:00+08:00 +2026/05/15 06:58:00.697, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.57, 65 +2026-05-15T06:58:05+08:00 +2026/05/15 06:58:05.723, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.99, 64 +2026-05-15T06:58:10+08:00 +2026/05/15 06:58:10.746, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.21, 64 +2026-05-15T06:58:15+08:00 +2026/05/15 06:58:15.770, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.72, 64 +2026-05-15T06:58:20+08:00 +2026/05/15 06:58:20.794, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.94, 64 +2026-05-15T06:58:25+08:00 +2026/05/15 06:58:25.816, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.90, 64 +2026-05-15T06:58:30+08:00 +2026/05/15 06:58:30.840, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.78, 63 +2026-05-15T06:58:35+08:00 +2026/05/15 06:58:35.867, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.02, 64 +2026-05-15T06:58:40+08:00 +2026/05/15 06:58:40.891, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.90, 65 +2026-05-15T06:58:45+08:00 +2026/05/15 06:58:45.915, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.50, 64 +2026-05-15T06:58:50+08:00 +2026/05/15 06:58:50.938, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.68, 64 +2026-05-15T06:58:55+08:00 +2026/05/15 06:58:55.965, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.71, 64 +2026-05-15T06:59:00+08:00 +2026/05/15 06:59:00.988, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.47, 64 +2026-05-15T06:59:05+08:00 +2026/05/15 06:59:06.011, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.00, 64 +2026-05-15T06:59:11+08:00 +2026/05/15 06:59:11.033, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.82, 63 +2026-05-15T06:59:16+08:00 +2026/05/15 06:59:16.059, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.45, 65 +2026-05-15T06:59:21+08:00 +2026/05/15 06:59:21.085, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.44, 65 +2026-05-15T06:59:26+08:00 +2026/05/15 06:59:26.109, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 65 +2026-05-15T06:59:31+08:00 +2026/05/15 06:59:31.132, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.51, 65 +2026-05-15T06:59:36+08:00 +2026/05/15 06:59:36.158, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.36, 64 +2026-05-15T06:59:41+08:00 +2026/05/15 06:59:41.186, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.69, 64 +2026-05-15T06:59:46+08:00 +2026/05/15 06:59:46.208, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 361.24, 65 +2026-05-15T06:59:51+08:00 +2026/05/15 06:59:51.231, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.59, 64 +2026-05-15T06:59:56+08:00 +2026/05/15 06:59:56.254, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.68, 65 +2026-05-15T07:00:01+08:00 +2026/05/15 07:00:01.279, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.91, 64 +2026-05-15T07:00:06+08:00 +2026/05/15 07:00:06.303, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.21, 64 +2026-05-15T07:00:11+08:00 +2026/05/15 07:00:11.327, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.48, 65 +2026-05-15T07:00:16+08:00 +2026/05/15 07:00:16.355, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 361.99, 64 +2026-05-15T07:00:21+08:00 +2026/05/15 07:00:21.379, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.85, 64 +2026-05-15T07:00:26+08:00 +2026/05/15 07:00:26.404, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 360.17, 64 +2026-05-15T07:00:31+08:00 +2026/05/15 07:00:31.427, NVIDIA GeForce RTX 5090, 88, 36, 9607, 32607, 269.59, 64 +2026-05-15T07:00:36+08:00 +2026/05/15 07:00:36.450, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.23, 63 +2026-05-15T07:00:41+08:00 +2026/05/15 07:00:41.478, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.08, 65 +2026-05-15T07:00:46+08:00 +2026/05/15 07:00:46.501, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.34, 65 +2026-05-15T07:00:51+08:00 +2026/05/15 07:00:51.529, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.56, 65 +2026-05-15T07:00:56+08:00 +2026/05/15 07:00:56.554, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.50, 65 +2026-05-15T07:01:01+08:00 +2026/05/15 07:01:01.576, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.18, 65 +2026-05-15T07:01:06+08:00 +2026/05/15 07:01:06.600, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.14, 65 +2026-05-15T07:01:11+08:00 +2026/05/15 07:01:11.628, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.89, 65 +2026-05-15T07:01:16+08:00 +2026/05/15 07:01:16.651, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 224.92, 58 +2026-05-15T07:01:21+08:00 +2026/05/15 07:01:21.674, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.58, 64 +2026-05-15T07:01:26+08:00 +2026/05/15 07:01:26.697, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.68, 65 +2026-05-15T07:01:31+08:00 +2026/05/15 07:01:31.722, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.18, 65 +2026-05-15T07:01:36+08:00 +2026/05/15 07:01:36.747, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.34, 64 +2026-05-15T07:01:41+08:00 +2026/05/15 07:01:41.771, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.11, 64 +2026-05-15T07:01:46+08:00 +2026/05/15 07:01:46.794, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.08, 65 +2026-05-15T07:01:51+08:00 +2026/05/15 07:01:51.816, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.01, 65 +2026-05-15T07:01:56+08:00 +2026/05/15 07:01:56.839, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.83, 64 +2026-05-15T07:02:01+08:00 +2026/05/15 07:02:01.863, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.11, 64 +2026-05-15T07:02:06+08:00 +2026/05/15 07:02:06.885, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.03, 64 +2026-05-15T07:02:11+08:00 +2026/05/15 07:02:11.909, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.00, 64 +2026-05-15T07:02:16+08:00 +2026/05/15 07:02:16.932, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.97, 65 +2026-05-15T07:02:21+08:00 +2026/05/15 07:02:21.957, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.99, 64 +2026-05-15T07:02:26+08:00 +2026/05/15 07:02:26.981, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.00, 65 +2026-05-15T07:02:31+08:00 +2026/05/15 07:02:32.006, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.42, 65 +2026-05-15T07:02:37+08:00 +2026/05/15 07:02:37.030, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.90, 65 +2026-05-15T07:02:42+08:00 +2026/05/15 07:02:42.052, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.45, 65 +2026-05-15T07:02:47+08:00 +2026/05/15 07:02:47.075, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.46, 65 +2026-05-15T07:02:52+08:00 +2026/05/15 07:02:52.097, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.56, 64 +2026-05-15T07:02:57+08:00 +2026/05/15 07:02:57.123, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 65 +2026-05-15T07:03:02+08:00 +2026/05/15 07:03:02.147, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.75, 65 +2026-05-15T07:03:07+08:00 +2026/05/15 07:03:07.171, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.44, 64 +2026-05-15T07:03:12+08:00 +2026/05/15 07:03:12.197, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.33, 65 +2026-05-15T07:03:17+08:00 +2026/05/15 07:03:17.223, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.00, 65 +2026-05-15T07:03:22+08:00 +2026/05/15 07:03:22.248, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.46, 65 +2026-05-15T07:03:27+08:00 +2026/05/15 07:03:27.271, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.53, 64 +2026-05-15T07:03:32+08:00 +2026/05/15 07:03:32.299, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.27, 65 +2026-05-15T07:03:37+08:00 +2026/05/15 07:03:37.322, NVIDIA GeForce RTX 5090, 16, 6, 9607, 32607, 254.22, 64 +2026-05-15T07:03:42+08:00 +2026/05/15 07:03:42.347, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.12, 65 +2026-05-15T07:03:47+08:00 +2026/05/15 07:03:47.371, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.98, 65 +2026-05-15T07:03:52+08:00 +2026/05/15 07:03:52.395, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.43, 64 +2026-05-15T07:03:57+08:00 +2026/05/15 07:03:57.418, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.06, 65 +2026-05-15T07:04:02+08:00 +2026/05/15 07:04:02.443, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.61, 65 +2026-05-15T07:04:07+08:00 +2026/05/15 07:04:07.467, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 362.58, 64 +2026-05-15T07:04:12+08:00 +2026/05/15 07:04:12.493, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 363.01, 64 +2026-05-15T07:04:17+08:00 +2026/05/15 07:04:17.517, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.25, 65 +2026-05-15T07:04:22+08:00 +2026/05/15 07:04:22.540, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.62, 65 +2026-05-15T07:04:27+08:00 +2026/05/15 07:04:27.564, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.01, 65 +2026-05-15T07:04:32+08:00 +2026/05/15 07:04:32.588, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.06, 64 +2026-05-15T07:04:37+08:00 +2026/05/15 07:04:37.613, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.51, 64 +2026-05-15T07:04:42+08:00 +2026/05/15 07:04:42.637, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.03, 64 +2026-05-15T07:04:47+08:00 +2026/05/15 07:04:47.659, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.21, 63 +2026-05-15T07:04:52+08:00 +2026/05/15 07:04:52.685, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 217.15, 58 +2026-05-15T07:04:57+08:00 +2026/05/15 07:04:57.709, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.54, 64 +2026-05-15T07:05:02+08:00 +2026/05/15 07:05:02.732, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.77, 64 +2026-05-15T07:05:07+08:00 +2026/05/15 07:05:07.754, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.42, 64 +2026-05-15T07:05:12+08:00 +2026/05/15 07:05:12.783, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.48, 64 +2026-05-15T07:05:17+08:00 +2026/05/15 07:05:17.808, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.61, 65 +2026-05-15T07:05:22+08:00 +2026/05/15 07:05:22.830, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.23, 64 +2026-05-15T07:05:27+08:00 +2026/05/15 07:05:27.855, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.31, 65 +2026-05-15T07:05:32+08:00 +2026/05/15 07:05:32.879, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.07, 65 +2026-05-15T07:05:37+08:00 +2026/05/15 07:05:37.905, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.55, 65 +2026-05-15T07:05:42+08:00 +2026/05/15 07:05:42.932, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.41, 65 +2026-05-15T07:05:47+08:00 +2026/05/15 07:05:47.956, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.10, 65 +2026-05-15T07:05:52+08:00 +2026/05/15 07:05:52.980, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.15, 65 +2026-05-15T07:05:57+08:00 +2026/05/15 07:05:58.004, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 363.78, 65 +2026-05-15T07:06:03+08:00 +2026/05/15 07:06:03.028, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.17, 65 +2026-05-15T07:06:08+08:00 +2026/05/15 07:06:08.052, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 363.63, 64 +2026-05-15T07:06:13+08:00 +2026/05/15 07:06:13.076, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.56, 64 +2026-05-15T07:06:18+08:00 +2026/05/15 07:06:18.105, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 364.88, 65 +2026-05-15T07:06:23+08:00 +2026/05/15 07:06:23.129, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.71, 65 +2026-05-15T07:06:28+08:00 +2026/05/15 07:06:28.152, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.78, 65 +2026-05-15T07:06:33+08:00 +2026/05/15 07:06:33.176, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.77, 65 +2026-05-15T07:06:38+08:00 +2026/05/15 07:06:38.200, NVIDIA GeForce RTX 5090, 88, 39, 9607, 32607, 364.17, 65 +2026-05-15T07:06:43+08:00 +2026/05/15 07:06:43.222, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.15, 64 +2026-05-15T07:06:48+08:00 +2026/05/15 07:06:48.247, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.90, 65 +2026-05-15T07:06:53+08:00 +2026/05/15 07:06:53.271, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.54, 64 +2026-05-15T07:06:58+08:00 +2026/05/15 07:06:58.293, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 363.68, 63 +2026-05-15T07:07:03+08:00 +2026/05/15 07:07:03.317, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.77, 65 +2026-05-15T07:07:08+08:00 +2026/05/15 07:07:08.341, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.87, 65 +2026-05-15T07:07:13+08:00 +2026/05/15 07:07:13.363, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.94, 65 +2026-05-15T07:07:18+08:00 +2026/05/15 07:07:18.387, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.75, 64 +2026-05-15T07:07:23+08:00 +2026/05/15 07:07:23.409, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.17, 64 +2026-05-15T07:07:28+08:00 +2026/05/15 07:07:28.432, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.54, 63 +2026-05-15T07:07:33+08:00 +2026/05/15 07:07:33.460, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.36, 64 +2026-05-15T07:07:38+08:00 +2026/05/15 07:07:38.484, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.78, 63 +2026-05-15T07:07:43+08:00 +2026/05/15 07:07:43.507, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.68, 63 +2026-05-15T07:07:48+08:00 +2026/05/15 07:07:48.535, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 360.08, 65 +2026-05-15T07:07:53+08:00 +2026/05/15 07:07:53.560, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.42, 65 +2026-05-15T07:07:58+08:00 +2026/05/15 07:07:58.584, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.63, 64 +2026-05-15T07:08:03+08:00 +2026/05/15 07:08:03.609, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.54, 65 +2026-05-15T07:08:08+08:00 +2026/05/15 07:08:08.631, NVIDIA GeForce RTX 5090, 18, 13, 9607, 32607, 345.28, 61 +2026-05-15T07:08:13+08:00 +2026/05/15 07:08:13.652, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 364.00, 64 +2026-05-15T07:08:18+08:00 +2026/05/15 07:08:18.678, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.27, 65 +2026-05-15T07:08:23+08:00 +2026/05/15 07:08:23.702, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 363.48, 65 +2026-05-15T07:08:28+08:00 +2026/05/15 07:08:28.730, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.63, 64 +2026-05-15T07:08:33+08:00 +2026/05/15 07:08:33.753, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.01, 65 +2026-05-15T07:08:38+08:00 +2026/05/15 07:08:38.777, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.56, 64 +2026-05-15T07:08:43+08:00 +2026/05/15 07:08:43.799, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.33, 64 +2026-05-15T07:08:48+08:00 +2026/05/15 07:08:48.825, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.87, 65 +2026-05-15T07:08:53+08:00 +2026/05/15 07:08:53.848, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.54, 65 +2026-05-15T07:08:58+08:00 +2026/05/15 07:08:58.872, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.90, 64 +2026-05-15T07:09:03+08:00 +2026/05/15 07:09:03.895, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.50, 64 +2026-05-15T07:09:08+08:00 +2026/05/15 07:09:08.918, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.37, 65 +2026-05-15T07:09:13+08:00 +2026/05/15 07:09:13.942, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.11, 64 +2026-05-15T07:09:18+08:00 +2026/05/15 07:09:18.966, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.88, 64 +2026-05-15T07:09:23+08:00 +2026/05/15 07:09:23.989, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.68, 65 +2026-05-15T07:09:28+08:00 +2026/05/15 07:09:29.012, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.22, 65 +2026-05-15T07:09:34+08:00 +2026/05/15 07:09:34.035, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.67, 65 +2026-05-15T07:09:39+08:00 +2026/05/15 07:09:39.059, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.52, 64 +2026-05-15T07:09:44+08:00 +2026/05/15 07:09:44.083, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.13, 64 +2026-05-15T07:09:49+08:00 +2026/05/15 07:09:49.110, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.00, 64 +2026-05-15T07:09:54+08:00 +2026/05/15 07:09:54.134, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.88, 63 +2026-05-15T07:09:59+08:00 +2026/05/15 07:09:59.159, NVIDIA GeForce RTX 5090, 40, 21, 9607, 32607, 245.63, 62 +2026-05-15T07:10:04+08:00 +2026/05/15 07:10:04.184, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.38, 65 +2026-05-15T07:10:09+08:00 +2026/05/15 07:10:09.208, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.23, 64 +2026-05-15T07:10:14+08:00 +2026/05/15 07:10:14.271, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.52, 65 +2026-05-15T07:10:19+08:00 +2026/05/15 07:10:19.320, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.30, 64 +2026-05-15T07:10:24+08:00 +2026/05/15 07:10:24.361, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.11, 65 +2026-05-15T07:10:29+08:00 +2026/05/15 07:10:29.384, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.95, 65 +2026-05-15T07:10:34+08:00 +2026/05/15 07:10:34.408, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.15, 64 +2026-05-15T07:10:39+08:00 +2026/05/15 07:10:39.432, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 313.76, 64 +2026-05-15T07:10:44+08:00 +2026/05/15 07:10:44.455, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.62, 65 +2026-05-15T07:10:49+08:00 +2026/05/15 07:10:49.478, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.01, 66 +2026-05-15T07:10:54+08:00 +2026/05/15 07:10:54.501, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.43, 66 +2026-05-15T07:10:59+08:00 +2026/05/15 07:10:59.525, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.54, 64 +2026-05-15T07:11:04+08:00 +2026/05/15 07:11:04.548, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.71, 65 +2026-05-15T07:11:09+08:00 +2026/05/15 07:11:09.572, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.38, 64 +2026-05-15T07:11:14+08:00 +2026/05/15 07:11:14.596, NVIDIA GeForce RTX 5090, 88, 39, 9607, 32607, 362.96, 65 +2026-05-15T07:11:19+08:00 +2026/05/15 07:11:19.619, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.39, 64 +2026-05-15T07:11:24+08:00 +2026/05/15 07:11:24.642, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.02, 64 +2026-05-15T07:11:29+08:00 +2026/05/15 07:11:29.664, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.11, 63 +2026-05-15T07:11:34+08:00 +2026/05/15 07:11:34.690, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.58, 65 +2026-05-15T07:11:39+08:00 +2026/05/15 07:11:39.713, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.07, 64 +2026-05-15T07:11:44+08:00 +2026/05/15 07:11:44.737, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 361.46, 65 +2026-05-15T07:11:49+08:00 +2026/05/15 07:11:49.761, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.86, 65 +2026-05-15T07:11:54+08:00 +2026/05/15 07:11:54.785, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.34, 65 +2026-05-15T07:11:59+08:00 +2026/05/15 07:11:59.809, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 211.64, 58 +2026-05-15T07:12:04+08:00 +2026/05/15 07:12:04.832, NVIDIA GeForce RTX 5090, 88, 36, 9607, 32607, 359.60, 64 +2026-05-15T07:12:09+08:00 +2026/05/15 07:12:09.867, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.04, 63 +2026-05-15T07:12:14+08:00 +2026/05/15 07:12:14.890, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.58, 65 +2026-05-15T07:12:19+08:00 +2026/05/15 07:12:19.912, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.38, 64 +2026-05-15T07:12:24+08:00 +2026/05/15 07:12:24.935, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 361.60, 64 +2026-05-15T07:12:29+08:00 +2026/05/15 07:12:29.956, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.63, 64 +2026-05-15T07:12:34+08:00 +2026/05/15 07:12:34.980, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.11, 64 +2026-05-15T07:12:39+08:00 +2026/05/15 07:12:40.004, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.40, 64 +2026-05-15T07:12:45+08:00 +2026/05/15 07:12:45.030, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 362.00, 64 +2026-05-15T07:12:50+08:00 +2026/05/15 07:12:50.056, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.71, 63 +2026-05-15T07:12:55+08:00 +2026/05/15 07:12:55.083, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.62, 64 +2026-05-15T07:13:00+08:00 +2026/05/15 07:13:00.108, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.67, 64 +2026-05-15T07:13:05+08:00 +2026/05/15 07:13:05.131, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.52, 63 +2026-05-15T07:13:10+08:00 +2026/05/15 07:13:10.154, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.37, 65 +2026-05-15T07:13:15+08:00 +2026/05/15 07:13:15.177, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 291.92, 58 +2026-05-15T07:13:20+08:00 +2026/05/15 07:13:20.201, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.19, 63 +2026-05-15T07:13:25+08:00 +2026/05/15 07:13:25.224, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.64, 65 +2026-05-15T07:13:30+08:00 +2026/05/15 07:13:30.253, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.67, 63 +2026-05-15T07:13:35+08:00 +2026/05/15 07:13:35.276, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.78, 64 +2026-05-15T07:13:40+08:00 +2026/05/15 07:13:40.299, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.54, 64 +2026-05-15T07:13:45+08:00 +2026/05/15 07:13:45.322, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.75, 65 +2026-05-15T07:13:50+08:00 +2026/05/15 07:13:50.349, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.00, 64 +2026-05-15T07:13:55+08:00 +2026/05/15 07:13:55.375, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.01, 64 +2026-05-15T07:14:00+08:00 +2026/05/15 07:14:00.398, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.62, 64 +2026-05-15T07:14:05+08:00 +2026/05/15 07:14:05.422, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.45, 65 +2026-05-15T07:14:10+08:00 +2026/05/15 07:14:10.444, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.61, 64 +2026-05-15T07:14:15+08:00 +2026/05/15 07:14:15.468, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.13, 63 +2026-05-15T07:14:20+08:00 +2026/05/15 07:14:20.493, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.62, 64 +2026-05-15T07:14:25+08:00 +2026/05/15 07:14:25.521, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.72, 64 +2026-05-15T07:14:30+08:00 +2026/05/15 07:14:30.545, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.60, 64 +2026-05-15T07:14:35+08:00 +2026/05/15 07:14:35.568, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 302.30, 59 +2026-05-15T07:14:40+08:00 +2026/05/15 07:14:40.590, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.67, 64 +2026-05-15T07:14:45+08:00 +2026/05/15 07:14:45.614, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.42, 63 +2026-05-15T07:14:50+08:00 +2026/05/15 07:14:50.639, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 359.02, 65 +2026-05-15T07:14:55+08:00 +2026/05/15 07:14:55.664, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.88, 64 +2026-05-15T07:15:00+08:00 +2026/05/15 07:15:00.686, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.91, 65 +2026-05-15T07:15:05+08:00 +2026/05/15 07:15:05.714, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.01, 65 +2026-05-15T07:15:10+08:00 +2026/05/15 07:15:10.737, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.55, 63 +2026-05-15T07:15:15+08:00 +2026/05/15 07:15:15.760, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 238.01, 63 +2026-05-15T07:15:20+08:00 +2026/05/15 07:15:20.784, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.05, 64 +2026-05-15T07:15:25+08:00 +2026/05/15 07:15:25.809, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.89, 65 +2026-05-15T07:15:30+08:00 +2026/05/15 07:15:30.831, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.73, 65 +2026-05-15T07:15:35+08:00 +2026/05/15 07:15:35.856, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.63, 64 +2026-05-15T07:15:40+08:00 +2026/05/15 07:15:40.879, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.45, 64 +2026-05-15T07:15:45+08:00 +2026/05/15 07:15:45.906, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.09, 65 +2026-05-15T07:15:50+08:00 +2026/05/15 07:15:50.932, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.33, 64 +2026-05-15T07:15:55+08:00 +2026/05/15 07:15:55.963, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.54, 61 +2026-05-15T07:16:00+08:00 +2026/05/15 07:16:00.990, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.61, 64 +2026-05-15T07:16:05+08:00 +2026/05/15 07:16:06.014, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.07, 63 +2026-05-15T07:16:11+08:00 +2026/05/15 07:16:11.038, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.88, 64 +2026-05-15T07:16:16+08:00 +2026/05/15 07:16:16.061, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.32, 64 +2026-05-15T07:16:21+08:00 +2026/05/15 07:16:21.086, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.89, 64 +2026-05-15T07:16:26+08:00 +2026/05/15 07:16:26.107, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.19, 65 +2026-05-15T07:16:31+08:00 +2026/05/15 07:16:31.131, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.95, 64 +2026-05-15T07:16:36+08:00 +2026/05/15 07:16:36.154, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.12, 64 +2026-05-15T07:16:41+08:00 +2026/05/15 07:16:41.177, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.86, 64 +2026-05-15T07:16:46+08:00 +2026/05/15 07:16:46.204, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 360.56, 63 +2026-05-15T07:16:51+08:00 +2026/05/15 07:16:51.234, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.10, 63 +2026-05-15T07:16:56+08:00 +2026/05/15 07:16:56.260, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.79, 64 +2026-05-15T07:17:01+08:00 +2026/05/15 07:17:01.305, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.18, 64 +2026-05-15T07:17:06+08:00 +2026/05/15 07:17:06.328, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.30, 64 +2026-05-15T07:17:11+08:00 +2026/05/15 07:17:11.352, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 363.42, 65 +2026-05-15T07:17:16+08:00 +2026/05/15 07:17:16.395, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.27, 64 +2026-05-15T07:17:21+08:00 +2026/05/15 07:17:21.436, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.24, 64 +2026-05-15T07:17:26+08:00 +2026/05/15 07:17:26.460, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.14, 65 +2026-05-15T07:17:31+08:00 +2026/05/15 07:17:31.486, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.36, 65 +2026-05-15T07:17:36+08:00 +2026/05/15 07:17:36.511, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.93, 65 +2026-05-15T07:17:41+08:00 +2026/05/15 07:17:41.533, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.22, 64 +2026-05-15T07:17:46+08:00 +2026/05/15 07:17:46.557, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.37, 64 +2026-05-15T07:17:51+08:00 +2026/05/15 07:17:51.581, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.22, 65 +2026-05-15T07:17:56+08:00 +2026/05/15 07:17:56.605, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.32, 64 +2026-05-15T07:18:01+08:00 +2026/05/15 07:18:01.629, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.53, 64 +2026-05-15T07:18:06+08:00 +2026/05/15 07:18:06.653, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.76, 65 +2026-05-15T07:18:11+08:00 +2026/05/15 07:18:11.677, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.59, 65 +2026-05-15T07:18:16+08:00 +2026/05/15 07:18:16.702, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.90, 65 +2026-05-15T07:18:21+08:00 +2026/05/15 07:18:21.725, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.92, 64 +2026-05-15T07:18:26+08:00 +2026/05/15 07:18:26.749, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.88, 64 +2026-05-15T07:18:31+08:00 +2026/05/15 07:18:31.774, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.51, 64 +2026-05-15T07:18:36+08:00 +2026/05/15 07:18:36.797, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.78, 64 +2026-05-15T07:18:41+08:00 +2026/05/15 07:18:41.821, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.13, 64 +2026-05-15T07:18:46+08:00 +2026/05/15 07:18:46.846, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.03, 65 +2026-05-15T07:18:51+08:00 +2026/05/15 07:18:51.872, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.73, 63 +2026-05-15T07:18:56+08:00 +2026/05/15 07:18:56.896, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.23, 63 +2026-05-15T07:19:01+08:00 +2026/05/15 07:19:01.920, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.46, 63 +2026-05-15T07:19:06+08:00 +2026/05/15 07:19:06.944, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.29, 63 +2026-05-15T07:19:11+08:00 +2026/05/15 07:19:11.968, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.92, 64 +2026-05-15T07:19:16+08:00 +2026/05/15 07:19:16.992, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.52, 65 +2026-05-15T07:19:22+08:00 +2026/05/15 07:19:22.016, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.38, 64 +2026-05-15T07:19:27+08:00 +2026/05/15 07:19:27.043, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.55, 64 +2026-05-15T07:19:32+08:00 +2026/05/15 07:19:32.066, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.33, 65 +2026-05-15T07:19:37+08:00 +2026/05/15 07:19:37.091, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.73, 65 +2026-05-15T07:19:42+08:00 +2026/05/15 07:19:42.114, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.06, 65 +2026-05-15T07:19:47+08:00 +2026/05/15 07:19:47.139, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.27, 65 +2026-05-15T07:19:52+08:00 +2026/05/15 07:19:52.163, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 212.10, 63 +2026-05-15T07:19:57+08:00 +2026/05/15 07:19:57.186, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.67, 64 +2026-05-15T07:20:02+08:00 +2026/05/15 07:20:02.214, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.30, 64 +2026-05-15T07:20:07+08:00 +2026/05/15 07:20:07.237, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.79, 64 +2026-05-15T07:20:12+08:00 +2026/05/15 07:20:12.260, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.59, 64 +2026-05-15T07:20:17+08:00 +2026/05/15 07:20:17.284, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.01, 64 +2026-05-15T07:20:22+08:00 +2026/05/15 07:20:22.312, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.08, 64 +2026-05-15T07:20:27+08:00 +2026/05/15 07:20:27.335, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 295.51, 64 +2026-05-15T07:20:32+08:00 +2026/05/15 07:20:32.359, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.97, 64 +2026-05-15T07:20:37+08:00 +2026/05/15 07:20:37.382, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.61, 65 +2026-05-15T07:20:42+08:00 +2026/05/15 07:20:42.405, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.25, 63 +2026-05-15T07:20:47+08:00 +2026/05/15 07:20:47.428, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.35, 64 +2026-05-15T07:20:52+08:00 +2026/05/15 07:20:52.452, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.56, 64 +2026-05-15T07:20:57+08:00 +2026/05/15 07:20:57.475, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.60, 65 +2026-05-15T07:21:02+08:00 +2026/05/15 07:21:02.497, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.66, 65 +2026-05-15T07:21:07+08:00 +2026/05/15 07:21:07.521, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.67, 63 +2026-05-15T07:21:12+08:00 +2026/05/15 07:21:12.545, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.05, 64 +2026-05-15T07:21:17+08:00 +2026/05/15 07:21:17.570, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.32, 63 +2026-05-15T07:21:22+08:00 +2026/05/15 07:21:22.593, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.41, 63 +2026-05-15T07:21:27+08:00 +2026/05/15 07:21:27.617, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.41, 63 +2026-05-15T07:21:32+08:00 +2026/05/15 07:21:32.641, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.42, 64 +2026-05-15T07:21:37+08:00 +2026/05/15 07:21:37.665, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.48, 64 +2026-05-15T07:21:42+08:00 +2026/05/15 07:21:42.688, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.58, 64 +2026-05-15T07:21:47+08:00 +2026/05/15 07:21:47.712, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.57, 65 +2026-05-15T07:21:52+08:00 +2026/05/15 07:21:52.736, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.83, 64 +2026-05-15T07:21:57+08:00 +2026/05/15 07:21:57.759, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.76, 64 +2026-05-15T07:22:02+08:00 +2026/05/15 07:22:02.781, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.00, 64 +2026-05-15T07:22:07+08:00 +2026/05/15 07:22:07.808, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.86, 63 +2026-05-15T07:22:12+08:00 +2026/05/15 07:22:12.831, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 352.47, 64 +2026-05-15T07:22:17+08:00 +2026/05/15 07:22:17.854, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.39, 64 +2026-05-15T07:22:22+08:00 +2026/05/15 07:22:22.877, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 351.90, 65 +2026-05-15T07:22:27+08:00 +2026/05/15 07:22:27.903, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.71, 65 +2026-05-15T07:22:32+08:00 +2026/05/15 07:22:32.926, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.29, 65 +2026-05-15T07:22:37+08:00 +2026/05/15 07:22:37.950, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.99, 64 +2026-05-15T07:22:42+08:00 +2026/05/15 07:22:42.974, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.09, 64 +2026-05-15T07:22:47+08:00 +2026/05/15 07:22:48.000, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.99, 64 +2026-05-15T07:22:53+08:00 +2026/05/15 07:22:53.024, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.59, 64 +2026-05-15T07:22:58+08:00 +2026/05/15 07:22:58.048, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.47, 64 +2026-05-15T07:23:03+08:00 +2026/05/15 07:23:03.106, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.14, 64 +2026-05-15T07:23:08+08:00 +2026/05/15 07:23:08.130, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.79, 64 +2026-05-15T07:23:13+08:00 +2026/05/15 07:23:13.154, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.11, 64 +2026-05-15T07:23:18+08:00 +2026/05/15 07:23:18.202, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.27, 65 +2026-05-15T07:23:23+08:00 +2026/05/15 07:23:23.224, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.92, 65 +2026-05-15T07:23:28+08:00 +2026/05/15 07:23:28.267, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.88, 65 +2026-05-15T07:23:33+08:00 +2026/05/15 07:23:33.292, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.49, 64 +2026-05-15T07:23:38+08:00 +2026/05/15 07:23:38.334, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.30, 64 +2026-05-15T07:23:43+08:00 +2026/05/15 07:23:43.358, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.31, 65 +2026-05-15T07:23:48+08:00 +2026/05/15 07:23:48.401, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.36, 63 +2026-05-15T07:23:53+08:00 +2026/05/15 07:23:53.470, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.44, 64 +2026-05-15T07:23:58+08:00 +2026/05/15 07:23:58.492, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.85, 64 +2026-05-15T07:24:03+08:00 +2026/05/15 07:24:03.536, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.83, 64 +2026-05-15T07:24:08+08:00 +2026/05/15 07:24:08.611, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.35, 64 +2026-05-15T07:24:13+08:00 +2026/05/15 07:24:13.636, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.59, 64 +2026-05-15T07:24:18+08:00 +2026/05/15 07:24:18.679, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.32, 64 +2026-05-15T07:24:23+08:00 +2026/05/15 07:24:23.703, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.47, 64 +2026-05-15T07:24:28+08:00 +2026/05/15 07:24:28.728, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.65, 64 +2026-05-15T07:24:33+08:00 +2026/05/15 07:24:33.752, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 361.93, 64 +2026-05-15T07:24:38+08:00 +2026/05/15 07:24:38.775, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.93, 65 +2026-05-15T07:24:43+08:00 +2026/05/15 07:24:43.800, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 362.39, 65 +2026-05-15T07:24:48+08:00 +2026/05/15 07:24:48.825, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 362.17, 64 +2026-05-15T07:24:53+08:00 +2026/05/15 07:24:53.848, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 361.82, 64 +2026-05-15T07:24:58+08:00 +2026/05/15 07:24:58.869, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.98, 63 +2026-05-15T07:25:03+08:00 +2026/05/15 07:25:03.897, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.45, 63 +2026-05-15T07:25:08+08:00 +2026/05/15 07:25:08.920, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.87, 63 +2026-05-15T07:25:13+08:00 +2026/05/15 07:25:13.944, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.85, 63 +2026-05-15T07:25:18+08:00 +2026/05/15 07:25:18.965, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 361.74, 64 +2026-05-15T07:25:23+08:00 +2026/05/15 07:25:23.987, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 361.92, 64 +2026-05-15T07:25:28+08:00 +2026/05/15 07:25:29.012, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 361.77, 65 +2026-05-15T07:25:34+08:00 +2026/05/15 07:25:34.036, NVIDIA GeForce RTX 5090, 80, 36, 9607, 32607, 253.23, 61 +2026-05-15T07:25:39+08:00 +2026/05/15 07:25:39.062, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.55, 64 +2026-05-15T07:25:44+08:00 +2026/05/15 07:25:44.085, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 363.28, 64 +2026-05-15T07:25:49+08:00 +2026/05/15 07:25:49.109, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.79, 64 +2026-05-15T07:25:54+08:00 +2026/05/15 07:25:54.134, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.92, 64 +2026-05-15T07:25:59+08:00 +2026/05/15 07:25:59.157, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.25, 63 +2026-05-15T07:26:04+08:00 +2026/05/15 07:26:04.180, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.51, 63 +2026-05-15T07:26:09+08:00 +2026/05/15 07:26:09.202, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.37, 63 +2026-05-15T07:26:14+08:00 +2026/05/15 07:26:14.227, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 340.77, 60 +2026-05-15T07:26:19+08:00 +2026/05/15 07:26:19.248, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.12, 63 +2026-05-15T07:26:24+08:00 +2026/05/15 07:26:24.272, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.00, 64 +2026-05-15T07:26:29+08:00 +2026/05/15 07:26:29.295, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.16, 64 +2026-05-15T07:26:34+08:00 +2026/05/15 07:26:34.320, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.37, 64 +2026-05-15T07:26:39+08:00 +2026/05/15 07:26:39.345, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.53, 64 +2026-05-15T07:26:44+08:00 +2026/05/15 07:26:44.369, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.33, 65 +2026-05-15T07:26:49+08:00 +2026/05/15 07:26:49.393, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 270.38, 64 +2026-05-15T07:26:54+08:00 +2026/05/15 07:26:54.416, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.77, 64 +2026-05-15T07:26:59+08:00 +2026/05/15 07:26:59.438, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.43, 64 +2026-05-15T07:27:04+08:00 +2026/05/15 07:27:04.461, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.42, 63 +2026-05-15T07:27:09+08:00 +2026/05/15 07:27:09.485, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.98, 64 +2026-05-15T07:27:14+08:00 +2026/05/15 07:27:14.507, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.92, 64 +2026-05-15T07:27:19+08:00 +2026/05/15 07:27:19.531, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.61, 64 +2026-05-15T07:27:24+08:00 +2026/05/15 07:27:24.553, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.57, 65 +2026-05-15T07:27:29+08:00 +2026/05/15 07:27:29.579, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.90, 64 +2026-05-15T07:27:34+08:00 +2026/05/15 07:27:34.602, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.07, 64 +2026-05-15T07:27:39+08:00 +2026/05/15 07:27:39.625, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.38, 65 +2026-05-15T07:27:44+08:00 +2026/05/15 07:27:44.650, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.44, 64 +2026-05-15T07:27:49+08:00 +2026/05/15 07:27:49.674, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.07, 64 +2026-05-15T07:27:54+08:00 +2026/05/15 07:27:54.698, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.66, 64 +2026-05-15T07:27:59+08:00 +2026/05/15 07:27:59.722, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.78, 63 +2026-05-15T07:28:04+08:00 +2026/05/15 07:28:04.746, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.63, 64 +2026-05-15T07:28:09+08:00 +2026/05/15 07:28:09.770, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.00, 64 +2026-05-15T07:28:14+08:00 +2026/05/15 07:28:14.812, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.90, 63 +2026-05-15T07:28:19+08:00 +2026/05/15 07:28:19.836, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.19, 64 +2026-05-15T07:28:24+08:00 +2026/05/15 07:28:24.891, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.12, 65 +2026-05-15T07:28:29+08:00 +2026/05/15 07:28:29.918, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.95, 64 +2026-05-15T07:28:34+08:00 +2026/05/15 07:28:34.941, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.33, 63 +2026-05-15T07:28:39+08:00 +2026/05/15 07:28:39.963, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.24, 64 +2026-05-15T07:28:44+08:00 +2026/05/15 07:28:45.006, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 259.03, 64 +2026-05-15T07:28:50+08:00 +2026/05/15 07:28:50.030, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 213.82, 64 +2026-05-15T07:28:55+08:00 +2026/05/15 07:28:55.071, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.55, 64 +2026-05-15T07:29:00+08:00 +2026/05/15 07:29:00.141, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.60, 63 +2026-05-15T07:29:05+08:00 +2026/05/15 07:29:05.165, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.63, 64 +2026-05-15T07:29:10+08:00 +2026/05/15 07:29:10.216, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.72, 66 +2026-05-15T07:29:15+08:00 +2026/05/15 07:29:15.241, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.35, 64 +2026-05-15T07:29:20+08:00 +2026/05/15 07:29:20.291, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.24, 64 +2026-05-15T07:29:25+08:00 +2026/05/15 07:29:25.319, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.72, 64 +2026-05-15T07:29:30+08:00 +2026/05/15 07:29:30.358, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.80, 64 +2026-05-15T07:29:35+08:00 +2026/05/15 07:29:35.397, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.29, 64 +2026-05-15T07:29:40+08:00 +2026/05/15 07:29:40.420, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.85, 65 +2026-05-15T07:29:45+08:00 +2026/05/15 07:29:45.464, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.43, 64 +2026-05-15T07:29:50+08:00 +2026/05/15 07:29:50.539, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.52, 63 +2026-05-15T07:29:55+08:00 +2026/05/15 07:29:55.561, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.67, 63 +2026-05-15T07:30:00+08:00 +2026/05/15 07:30:00.634, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 244.00, 63 +2026-05-15T07:30:05+08:00 +2026/05/15 07:30:05.659, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.14, 64 +2026-05-15T07:30:10+08:00 +2026/05/15 07:30:10.684, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 362.21, 64 +2026-05-15T07:30:15+08:00 +2026/05/15 07:30:15.707, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.19, 64 +2026-05-15T07:30:20+08:00 +2026/05/15 07:30:20.731, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.39, 64 +2026-05-15T07:30:25+08:00 +2026/05/15 07:30:25.754, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 328.25, 63 +2026-05-15T07:30:30+08:00 +2026/05/15 07:30:30.778, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.90, 63 +2026-05-15T07:30:35+08:00 +2026/05/15 07:30:35.799, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.95, 63 +2026-05-15T07:30:40+08:00 +2026/05/15 07:30:40.823, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.84, 64 +2026-05-15T07:30:45+08:00 +2026/05/15 07:30:45.847, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.02, 64 +2026-05-15T07:30:50+08:00 +2026/05/15 07:30:50.868, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.15, 63 +2026-05-15T07:30:55+08:00 +2026/05/15 07:30:55.892, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.29, 63 +2026-05-15T07:31:00+08:00 +2026/05/15 07:31:00.918, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.99, 63 +2026-05-15T07:31:05+08:00 +2026/05/15 07:31:05.943, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.38, 63 +2026-05-15T07:31:10+08:00 +2026/05/15 07:31:10.966, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.79, 63 +2026-05-15T07:31:15+08:00 +2026/05/15 07:31:15.987, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.78, 64 +2026-05-15T07:31:20+08:00 +2026/05/15 07:31:21.012, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.18, 64 +2026-05-15T07:31:26+08:00 +2026/05/15 07:31:26.033, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.54, 64 +2026-05-15T07:31:31+08:00 +2026/05/15 07:31:31.057, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.02, 64 +2026-05-15T07:31:36+08:00 +2026/05/15 07:31:36.081, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.90, 64 +2026-05-15T07:31:41+08:00 +2026/05/15 07:31:41.104, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.03, 64 +2026-05-15T07:31:46+08:00 +2026/05/15 07:31:46.125, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.82, 64 +2026-05-15T07:31:51+08:00 +2026/05/15 07:31:51.150, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.37, 65 +2026-05-15T07:31:56+08:00 +2026/05/15 07:31:56.173, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.70, 63 +2026-05-15T07:32:01+08:00 +2026/05/15 07:32:01.195, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.37, 64 +2026-05-15T07:32:06+08:00 +2026/05/15 07:32:06.219, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.64, 64 +2026-05-15T07:32:11+08:00 +2026/05/15 07:32:11.243, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.02, 64 +2026-05-15T07:32:16+08:00 +2026/05/15 07:32:16.266, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.50, 64 +2026-05-15T07:32:21+08:00 +2026/05/15 07:32:21.295, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.58, 64 +2026-05-15T07:32:26+08:00 +2026/05/15 07:32:26.318, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.94, 64 +2026-05-15T07:32:31+08:00 +2026/05/15 07:32:31.343, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.99, 64 +2026-05-15T07:32:36+08:00 +2026/05/15 07:32:36.369, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.48, 64 +2026-05-15T07:32:41+08:00 +2026/05/15 07:32:41.392, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.74, 63 +2026-05-15T07:32:46+08:00 +2026/05/15 07:32:46.415, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.60, 64 +2026-05-15T07:32:51+08:00 +2026/05/15 07:32:51.438, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.92, 63 +2026-05-15T07:32:56+08:00 +2026/05/15 07:32:56.465, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.71, 64 +2026-05-15T07:33:01+08:00 +2026/05/15 07:33:01.487, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.00, 64 +2026-05-15T07:33:06+08:00 +2026/05/15 07:33:06.511, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.68, 64 +2026-05-15T07:33:11+08:00 +2026/05/15 07:33:11.536, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 362.84, 63 +2026-05-15T07:33:16+08:00 +2026/05/15 07:33:16.560, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.27, 64 +2026-05-15T07:33:21+08:00 +2026/05/15 07:33:21.586, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.22, 63 +2026-05-15T07:33:26+08:00 +2026/05/15 07:33:26.608, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.58, 64 +2026-05-15T07:33:31+08:00 +2026/05/15 07:33:31.633, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.88, 64 +2026-05-15T07:33:36+08:00 +2026/05/15 07:33:36.656, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.46, 65 +2026-05-15T07:33:41+08:00 +2026/05/15 07:33:41.682, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.04, 63 +2026-05-15T07:33:46+08:00 +2026/05/15 07:33:46.706, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.98, 64 +2026-05-15T07:33:51+08:00 +2026/05/15 07:33:51.729, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.63, 64 +2026-05-15T07:33:56+08:00 +2026/05/15 07:33:56.754, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.84, 64 +2026-05-15T07:34:01+08:00 +2026/05/15 07:34:01.778, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.85, 64 +2026-05-15T07:34:06+08:00 +2026/05/15 07:34:06.801, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.43, 63 +2026-05-15T07:34:11+08:00 +2026/05/15 07:34:11.850, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.85, 63 +2026-05-15T07:34:16+08:00 +2026/05/15 07:34:16.875, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.40, 64 +2026-05-15T07:34:21+08:00 +2026/05/15 07:34:21.915, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.78, 63 +2026-05-15T07:34:26+08:00 +2026/05/15 07:34:26.979, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.61, 64 +2026-05-15T07:34:31+08:00 +2026/05/15 07:34:32.000, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.33, 63 +2026-05-15T07:34:37+08:00 +2026/05/15 07:34:37.022, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.92, 64 +2026-05-15T07:34:42+08:00 +2026/05/15 07:34:42.090, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.02, 64 +2026-05-15T07:34:47+08:00 +2026/05/15 07:34:47.114, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.40, 64 +2026-05-15T07:34:52+08:00 +2026/05/15 07:34:52.161, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.52, 64 +2026-05-15T07:34:57+08:00 +2026/05/15 07:34:57.185, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.22, 64 +2026-05-15T07:35:02+08:00 +2026/05/15 07:35:02.226, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.81, 64 +2026-05-15T07:35:07+08:00 +2026/05/15 07:35:07.252, NVIDIA GeForce RTX 5090, 27, 9, 9607, 32607, 260.43, 61 +2026-05-15T07:35:12+08:00 +2026/05/15 07:35:12.275, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.82, 64 +2026-05-15T07:35:17+08:00 +2026/05/15 07:35:17.308, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.73, 64 +2026-05-15T07:35:22+08:00 +2026/05/15 07:35:22.331, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.11, 64 +2026-05-15T07:35:27+08:00 +2026/05/15 07:35:27.382, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.28, 65 +2026-05-15T07:35:32+08:00 +2026/05/15 07:35:32.406, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.28, 63 +2026-05-15T07:35:37+08:00 +2026/05/15 07:35:37.449, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.60, 64 +2026-05-15T07:35:42+08:00 +2026/05/15 07:35:42.473, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.49, 64 +2026-05-15T07:35:47+08:00 +2026/05/15 07:35:47.514, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.50, 64 +2026-05-15T07:35:52+08:00 +2026/05/15 07:35:52.590, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.58, 65 +2026-05-15T07:35:57+08:00 +2026/05/15 07:35:57.614, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 345.06, 63 +2026-05-15T07:36:02+08:00 +2026/05/15 07:36:02.663, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.38, 64 +2026-05-15T07:36:07+08:00 +2026/05/15 07:36:07.687, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.85, 64 +2026-05-15T07:36:12+08:00 +2026/05/15 07:36:12.728, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.73, 62 +2026-05-15T07:36:17+08:00 +2026/05/15 07:36:17.751, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.70, 63 +2026-05-15T07:36:22+08:00 +2026/05/15 07:36:22.774, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.26, 62 +2026-05-15T07:36:27+08:00 +2026/05/15 07:36:27.817, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.03, 64 +2026-05-15T07:36:32+08:00 +2026/05/15 07:36:32.839, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.96, 64 +2026-05-15T07:36:37+08:00 +2026/05/15 07:36:37.864, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.85, 65 +2026-05-15T07:36:42+08:00 +2026/05/15 07:36:42.886, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.57, 65 +2026-05-15T07:36:47+08:00 +2026/05/15 07:36:47.911, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 229.65, 57 +2026-05-15T07:36:52+08:00 +2026/05/15 07:36:52.933, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.75, 62 +2026-05-15T07:36:57+08:00 +2026/05/15 07:36:57.955, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.36, 63 +2026-05-15T07:37:02+08:00 +2026/05/15 07:37:02.977, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 242.85, 64 +2026-05-15T07:37:07+08:00 +2026/05/15 07:37:08.000, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.21, 64 +2026-05-15T07:37:13+08:00 +2026/05/15 07:37:13.026, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.27, 64 +2026-05-15T07:37:18+08:00 +2026/05/15 07:37:18.049, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 363.08, 64 +2026-05-15T07:37:23+08:00 +2026/05/15 07:37:23.074, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.78, 63 +2026-05-15T07:37:28+08:00 +2026/05/15 07:37:28.100, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.02, 64 +2026-05-15T07:37:33+08:00 +2026/05/15 07:37:33.126, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.63, 64 +2026-05-15T07:37:38+08:00 +2026/05/15 07:37:38.150, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.27, 64 +2026-05-15T07:37:43+08:00 +2026/05/15 07:37:43.174, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.04, 64 +2026-05-15T07:37:48+08:00 +2026/05/15 07:37:48.198, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.18, 64 +2026-05-15T07:37:53+08:00 +2026/05/15 07:37:53.223, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.53, 65 +2026-05-15T07:37:58+08:00 +2026/05/15 07:37:58.247, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.87, 64 +2026-05-15T07:38:03+08:00 +2026/05/15 07:38:03.269, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.14, 63 +2026-05-15T07:38:08+08:00 +2026/05/15 07:38:08.339, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.38, 64 +2026-05-15T07:38:13+08:00 +2026/05/15 07:38:13.363, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.31, 64 +2026-05-15T07:38:18+08:00 +2026/05/15 07:38:18.408, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.81, 64 +2026-05-15T07:38:23+08:00 +2026/05/15 07:38:23.449, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.93, 65 +2026-05-15T07:38:28+08:00 +2026/05/15 07:38:28.492, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.35, 64 +2026-05-15T07:38:33+08:00 +2026/05/15 07:38:33.533, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.56, 64 +2026-05-15T07:38:38+08:00 +2026/05/15 07:38:38.578, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.55, 63 +2026-05-15T07:38:43+08:00 +2026/05/15 07:38:43.622, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.84, 63 +2026-05-15T07:38:48+08:00 +2026/05/15 07:38:48.662, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.49, 64 +2026-05-15T07:38:53+08:00 +2026/05/15 07:38:53.720, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.11, 64 +2026-05-15T07:38:58+08:00 +2026/05/15 07:38:58.744, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.82, 64 +2026-05-15T07:39:03+08:00 +2026/05/15 07:39:03.785, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.44, 64 +2026-05-15T07:39:08+08:00 +2026/05/15 07:39:08.826, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.17, 64 +2026-05-15T07:39:13+08:00 +2026/05/15 07:39:13.878, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.82, 64 +2026-05-15T07:39:18+08:00 +2026/05/15 07:39:18.901, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.85, 64 +2026-05-15T07:39:23+08:00 +2026/05/15 07:39:23.945, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.19, 64 +2026-05-15T07:39:28+08:00 +2026/05/15 07:39:28.970, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.32, 64 +2026-05-15T07:39:33+08:00 +2026/05/15 07:39:33.993, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 343.33, 64 +2026-05-15T07:39:39+08:00 +2026/05/15 07:39:39.019, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.17, 64 +2026-05-15T07:39:44+08:00 +2026/05/15 07:39:44.041, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.02, 64 +2026-05-15T07:39:49+08:00 +2026/05/15 07:39:49.065, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.01, 63 +2026-05-15T07:39:54+08:00 +2026/05/15 07:39:54.092, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.63, 64 +2026-05-15T07:39:59+08:00 +2026/05/15 07:39:59.116, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 363.31, 64 +2026-05-15T07:40:04+08:00 +2026/05/15 07:40:04.141, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.43, 65 +2026-05-15T07:40:09+08:00 +2026/05/15 07:40:09.165, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.19, 63 +2026-05-15T07:40:14+08:00 +2026/05/15 07:40:14.189, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.51, 64 +2026-05-15T07:40:19+08:00 +2026/05/15 07:40:19.213, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.57, 64 +2026-05-15T07:40:24+08:00 +2026/05/15 07:40:24.239, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.92, 64 +2026-05-15T07:40:29+08:00 +2026/05/15 07:40:29.262, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 361.93, 64 +2026-05-15T07:40:34+08:00 +2026/05/15 07:40:34.287, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.51, 63 +2026-05-15T07:40:39+08:00 +2026/05/15 07:40:39.312, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.30, 64 +2026-05-15T07:40:44+08:00 +2026/05/15 07:40:44.336, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.97, 63 +2026-05-15T07:40:49+08:00 +2026/05/15 07:40:49.360, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 361.38, 63 +2026-05-15T07:40:54+08:00 +2026/05/15 07:40:54.385, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.01, 64 +2026-05-15T07:40:59+08:00 +2026/05/15 07:40:59.413, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.98, 63 +2026-05-15T07:41:04+08:00 +2026/05/15 07:41:04.437, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.66, 64 +2026-05-15T07:41:09+08:00 +2026/05/15 07:41:09.463, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.04, 64 +2026-05-15T07:41:14+08:00 +2026/05/15 07:41:14.489, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.51, 63 +2026-05-15T07:41:19+08:00 +2026/05/15 07:41:19.531, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.13, 63 +2026-05-15T07:41:24+08:00 +2026/05/15 07:41:24.554, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.70, 64 +2026-05-15T07:41:29+08:00 +2026/05/15 07:41:29.581, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 310.06, 63 +2026-05-15T07:41:34+08:00 +2026/05/15 07:41:34.634, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.26, 63 +2026-05-15T07:41:39+08:00 +2026/05/15 07:41:39.658, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.70, 64 +2026-05-15T07:41:44+08:00 +2026/05/15 07:41:44.682, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.78, 64 +2026-05-15T07:41:49+08:00 +2026/05/15 07:41:49.707, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.28, 64 +2026-05-15T07:41:54+08:00 +2026/05/15 07:41:54.731, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.77, 64 +2026-05-15T07:41:59+08:00 +2026/05/15 07:41:59.755, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.19, 65 +2026-05-15T07:42:04+08:00 +2026/05/15 07:42:04.779, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.64, 64 +2026-05-15T07:42:09+08:00 +2026/05/15 07:42:09.803, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 314.25, 63 +2026-05-15T07:42:14+08:00 +2026/05/15 07:42:14.825, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.88, 64 +2026-05-15T07:42:19+08:00 +2026/05/15 07:42:19.849, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.24, 64 +2026-05-15T07:42:24+08:00 +2026/05/15 07:42:24.872, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.63, 65 +2026-05-15T07:42:29+08:00 +2026/05/15 07:42:29.896, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.13, 65 +2026-05-15T07:42:34+08:00 +2026/05/15 07:42:34.919, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.70, 63 +2026-05-15T07:42:39+08:00 +2026/05/15 07:42:39.943, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.52, 64 +2026-05-15T07:42:44+08:00 +2026/05/15 07:42:44.972, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.11, 64 +2026-05-15T07:42:49+08:00 +2026/05/15 07:42:49.994, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.43, 64 +2026-05-15T07:42:55+08:00 +2026/05/15 07:42:55.017, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.23, 64 +2026-05-15T07:43:00+08:00 +2026/05/15 07:43:00.041, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.53, 63 +2026-05-15T07:43:05+08:00 +2026/05/15 07:43:05.065, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.25, 64 +2026-05-15T07:43:10+08:00 +2026/05/15 07:43:10.088, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 363.25, 64 +2026-05-15T07:43:15+08:00 +2026/05/15 07:43:15.114, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.89, 65 +2026-05-15T07:43:20+08:00 +2026/05/15 07:43:20.137, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.61, 63 +2026-05-15T07:43:25+08:00 +2026/05/15 07:43:25.162, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.64, 64 +2026-05-15T07:43:30+08:00 +2026/05/15 07:43:30.184, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 257.32, 62 +2026-05-15T07:43:35+08:00 +2026/05/15 07:43:35.208, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.99, 64 +2026-05-15T07:43:40+08:00 +2026/05/15 07:43:40.234, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.43, 64 +2026-05-15T07:43:45+08:00 +2026/05/15 07:43:45.262, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.55, 64 +2026-05-15T07:43:50+08:00 +2026/05/15 07:43:50.285, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.12, 62 +2026-05-15T07:43:55+08:00 +2026/05/15 07:43:55.313, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.84, 64 +2026-05-15T07:44:00+08:00 +2026/05/15 07:44:00.338, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.01, 64 +2026-05-15T07:44:05+08:00 +2026/05/15 07:44:05.363, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.22, 64 +2026-05-15T07:44:10+08:00 +2026/05/15 07:44:10.388, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.22, 64 +2026-05-15T07:44:15+08:00 +2026/05/15 07:44:15.412, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 353.45, 64 +2026-05-15T07:44:20+08:00 +2026/05/15 07:44:20.437, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.02, 64 +2026-05-15T07:44:25+08:00 +2026/05/15 07:44:25.459, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.46, 64 +2026-05-15T07:44:30+08:00 +2026/05/15 07:44:30.483, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.50, 63 +2026-05-15T07:44:35+08:00 +2026/05/15 07:44:35.507, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.03, 64 +2026-05-15T07:44:40+08:00 +2026/05/15 07:44:40.530, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.08, 64 +2026-05-15T07:44:45+08:00 +2026/05/15 07:44:45.554, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.89, 64 +2026-05-15T07:44:50+08:00 +2026/05/15 07:44:50.579, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.80, 64 +2026-05-15T07:44:55+08:00 +2026/05/15 07:44:55.604, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.25, 65 +2026-05-15T07:45:00+08:00 +2026/05/15 07:45:00.628, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.37, 62 +2026-05-15T07:45:05+08:00 +2026/05/15 07:45:05.652, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.71, 64 +2026-05-15T07:45:10+08:00 +2026/05/15 07:45:10.674, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.46, 64 +2026-05-15T07:45:15+08:00 +2026/05/15 07:45:15.699, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.79, 64 +2026-05-15T07:45:20+08:00 +2026/05/15 07:45:20.722, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.02, 63 +2026-05-15T07:45:25+08:00 +2026/05/15 07:45:25.747, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 327.80, 63 +2026-05-15T07:45:30+08:00 +2026/05/15 07:45:30.772, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.06, 63 +2026-05-15T07:45:35+08:00 +2026/05/15 07:45:35.796, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.33, 64 +2026-05-15T07:45:40+08:00 +2026/05/15 07:45:40.820, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.70, 64 +2026-05-15T07:45:45+08:00 +2026/05/15 07:45:45.846, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.07, 64 +2026-05-15T07:45:50+08:00 +2026/05/15 07:45:50.869, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.29, 63 +2026-05-15T07:45:55+08:00 +2026/05/15 07:45:55.895, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.98, 64 +2026-05-15T07:46:00+08:00 +2026/05/15 07:46:00.919, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.68, 63 +2026-05-15T07:46:05+08:00 +2026/05/15 07:46:05.942, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.85, 64 +2026-05-15T07:46:10+08:00 +2026/05/15 07:46:10.969, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.12, 64 +2026-05-15T07:46:15+08:00 +2026/05/15 07:46:15.994, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.26, 63 +2026-05-15T07:46:21+08:00 +2026/05/15 07:46:21.019, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.58, 64 +2026-05-15T07:46:26+08:00 +2026/05/15 07:46:26.044, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.00, 63 +2026-05-15T07:46:31+08:00 +2026/05/15 07:46:31.067, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.59, 64 +2026-05-15T07:46:36+08:00 +2026/05/15 07:46:36.093, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 154.72, 56 +2026-05-15T07:46:41+08:00 +2026/05/15 07:46:41.120, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.34, 63 +2026-05-15T07:46:46+08:00 +2026/05/15 07:46:46.146, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.70, 64 +2026-05-15T07:46:51+08:00 +2026/05/15 07:46:51.194, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.91, 64 +2026-05-15T07:46:56+08:00 +2026/05/15 07:46:56.218, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.65, 64 +2026-05-15T07:47:01+08:00 +2026/05/15 07:47:01.272, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.67, 63 +2026-05-15T07:47:06+08:00 +2026/05/15 07:47:06.297, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.80, 63 +2026-05-15T07:47:11+08:00 +2026/05/15 07:47:11.346, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.75, 63 +2026-05-15T07:47:16+08:00 +2026/05/15 07:47:16.369, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 362.07, 64 +2026-05-15T07:47:21+08:00 +2026/05/15 07:47:21.411, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.42, 63 +2026-05-15T07:47:26+08:00 +2026/05/15 07:47:26.435, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.88, 65 +2026-05-15T07:47:31+08:00 +2026/05/15 07:47:31.459, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.70, 64 +2026-05-15T07:47:36+08:00 +2026/05/15 07:47:36.481, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.00, 64 +2026-05-15T07:47:41+08:00 +2026/05/15 07:47:41.505, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.05, 62 +2026-05-15T07:47:46+08:00 +2026/05/15 07:47:46.528, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.20, 64 +2026-05-15T07:47:51+08:00 +2026/05/15 07:47:51.551, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.93, 64 +2026-05-15T07:47:56+08:00 +2026/05/15 07:47:56.575, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.95, 64 +2026-05-15T07:48:01+08:00 +2026/05/15 07:48:01.599, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.38, 64 +2026-05-15T07:48:06+08:00 +2026/05/15 07:48:06.622, NVIDIA GeForce RTX 5090, 6, 2, 9607, 32607, 218.46, 63 +2026-05-15T07:48:11+08:00 +2026/05/15 07:48:11.646, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.17, 64 +2026-05-15T07:48:16+08:00 +2026/05/15 07:48:16.675, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.27, 64 +2026-05-15T07:48:21+08:00 +2026/05/15 07:48:21.698, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.68, 63 +2026-05-15T07:48:26+08:00 +2026/05/15 07:48:26.721, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.46, 64 +2026-05-15T07:48:31+08:00 +2026/05/15 07:48:31.745, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 263.45, 62 +2026-05-15T07:48:36+08:00 +2026/05/15 07:48:36.769, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.02, 64 +2026-05-15T07:48:41+08:00 +2026/05/15 07:48:41.793, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.58, 64 +2026-05-15T07:48:46+08:00 +2026/05/15 07:48:46.817, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.20, 63 +2026-05-15T07:48:51+08:00 +2026/05/15 07:48:51.841, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.50, 64 +2026-05-15T07:48:56+08:00 +2026/05/15 07:48:56.865, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 274.12, 57 +2026-05-15T07:49:01+08:00 +2026/05/15 07:49:01.887, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.23, 64 +2026-05-15T07:49:06+08:00 +2026/05/15 07:49:06.911, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.69, 64 +2026-05-15T07:49:11+08:00 +2026/05/15 07:49:11.934, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.57, 64 +2026-05-15T07:49:16+08:00 +2026/05/15 07:49:16.958, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.49, 63 +2026-05-15T07:49:21+08:00 +2026/05/15 07:49:21.981, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.03, 64 +2026-05-15T07:49:26+08:00 +2026/05/15 07:49:27.005, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.98, 64 +2026-05-15T07:49:32+08:00 +2026/05/15 07:49:32.029, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.61, 65 +2026-05-15T07:49:37+08:00 +2026/05/15 07:49:37.052, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.34, 63 +2026-05-15T07:49:42+08:00 +2026/05/15 07:49:42.078, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.04, 64 +2026-05-15T07:49:47+08:00 +2026/05/15 07:49:47.102, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 321.98, 58 +2026-05-15T07:49:52+08:00 +2026/05/15 07:49:52.125, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.30, 64 +2026-05-15T07:49:57+08:00 +2026/05/15 07:49:57.150, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.26, 64 +2026-05-15T07:50:02+08:00 +2026/05/15 07:50:02.176, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 362.88, 64 +2026-05-15T07:50:07+08:00 +2026/05/15 07:50:07.200, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.04, 64 +2026-05-15T07:50:12+08:00 +2026/05/15 07:50:12.231, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.76, 63 +2026-05-15T07:50:17+08:00 +2026/05/15 07:50:17.258, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.25, 64 +2026-05-15T07:50:22+08:00 +2026/05/15 07:50:22.306, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.63, 64 +2026-05-15T07:50:27+08:00 +2026/05/15 07:50:27.331, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 256.92, 61 +2026-05-15T07:50:32+08:00 +2026/05/15 07:50:32.372, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.06, 64 +2026-05-15T07:50:37+08:00 +2026/05/15 07:50:37.445, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.87, 63 +2026-05-15T07:50:42+08:00 +2026/05/15 07:50:42.469, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.57, 63 +2026-05-15T07:50:47+08:00 +2026/05/15 07:50:47.493, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.20, 64 +2026-05-15T07:50:52+08:00 +2026/05/15 07:50:52.530, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.67, 64 +2026-05-15T07:50:57+08:00 +2026/05/15 07:50:57.554, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.73, 64 +2026-05-15T07:51:02+08:00 +2026/05/15 07:51:02.623, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.17, 64 +2026-05-15T07:51:07+08:00 +2026/05/15 07:51:07.678, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.69, 64 +2026-05-15T07:51:12+08:00 +2026/05/15 07:51:12.701, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.83, 64 +2026-05-15T07:51:17+08:00 +2026/05/15 07:51:17.729, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.84, 63 +2026-05-15T07:51:22+08:00 +2026/05/15 07:51:22.767, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.92, 63 +2026-05-15T07:51:27+08:00 +2026/05/15 07:51:27.791, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.02, 63 +2026-05-15T07:51:32+08:00 +2026/05/15 07:51:32.833, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 358.95, 64 +2026-05-15T07:51:37+08:00 +2026/05/15 07:51:37.908, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.12, 64 +2026-05-15T07:51:42+08:00 +2026/05/15 07:51:42.969, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.63, 64 +2026-05-15T07:51:47+08:00 +2026/05/15 07:51:47.995, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.25, 63 +2026-05-15T07:51:53+08:00 +2026/05/15 07:51:53.017, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.92, 64 +2026-05-15T07:51:58+08:00 +2026/05/15 07:51:58.040, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.86, 65 +2026-05-15T07:52:03+08:00 +2026/05/15 07:52:03.117, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.67, 64 +2026-05-15T07:52:08+08:00 +2026/05/15 07:52:08.171, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.65, 64 +2026-05-15T07:52:13+08:00 +2026/05/15 07:52:13.196, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.88, 64 +2026-05-15T07:52:18+08:00 +2026/05/15 07:52:18.237, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.92, 64 +2026-05-15T07:52:23+08:00 +2026/05/15 07:52:23.260, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 356.79, 63 +2026-05-15T07:52:28+08:00 +2026/05/15 07:52:28.284, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.19, 64 +2026-05-15T07:52:33+08:00 +2026/05/15 07:52:33.307, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.60, 63 +2026-05-15T07:52:38+08:00 +2026/05/15 07:52:38.332, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.76, 64 +2026-05-15T07:52:43+08:00 +2026/05/15 07:52:43.354, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.88, 64 +2026-05-15T07:52:48+08:00 +2026/05/15 07:52:48.385, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.15, 64 +2026-05-15T07:52:53+08:00 +2026/05/15 07:52:53.408, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.52, 64 +2026-05-15T07:52:58+08:00 +2026/05/15 07:52:58.434, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.05, 64 +2026-05-15T07:53:03+08:00 +2026/05/15 07:53:03.457, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.14, 64 +2026-05-15T07:53:08+08:00 +2026/05/15 07:53:08.481, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.82, 64 +2026-05-15T07:53:13+08:00 +2026/05/15 07:53:13.504, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.27, 64 +2026-05-15T07:53:18+08:00 +2026/05/15 07:53:18.532, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.82, 64 +2026-05-15T07:53:23+08:00 +2026/05/15 07:53:23.556, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.28, 65 +2026-05-15T07:53:28+08:00 +2026/05/15 07:53:28.583, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.64, 64 +2026-05-15T07:53:33+08:00 +2026/05/15 07:53:33.606, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.32, 64 +2026-05-15T07:53:38+08:00 +2026/05/15 07:53:38.630, NVIDIA GeForce RTX 5090, 4, 1, 9607, 32607, 259.96, 63 +2026-05-15T07:53:43+08:00 +2026/05/15 07:53:43.654, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.93, 64 +2026-05-15T07:53:48+08:00 +2026/05/15 07:53:48.678, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.56, 64 +2026-05-15T07:53:53+08:00 +2026/05/15 07:53:53.700, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.13, 64 +2026-05-15T07:53:58+08:00 +2026/05/15 07:53:58.728, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.12, 62 +2026-05-15T07:54:03+08:00 +2026/05/15 07:54:03.755, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 353.04, 64 +2026-05-15T07:54:08+08:00 +2026/05/15 07:54:08.776, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.46, 63 +2026-05-15T07:54:13+08:00 +2026/05/15 07:54:13.801, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.36, 63 +2026-05-15T07:54:18+08:00 +2026/05/15 07:54:18.824, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.84, 64 +2026-05-15T07:54:23+08:00 +2026/05/15 07:54:23.852, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 353.36, 64 +2026-05-15T07:54:28+08:00 +2026/05/15 07:54:28.879, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.24, 64 +2026-05-15T07:54:33+08:00 +2026/05/15 07:54:33.902, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.34, 64 +2026-05-15T07:54:38+08:00 +2026/05/15 07:54:38.925, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.45, 64 +2026-05-15T07:54:43+08:00 +2026/05/15 07:54:43.950, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.43, 64 +2026-05-15T07:54:48+08:00 +2026/05/15 07:54:48.975, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.66, 64 +2026-05-15T07:54:53+08:00 +2026/05/15 07:54:53.998, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.69, 64 +2026-05-15T07:54:59+08:00 +2026/05/15 07:54:59.020, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.59, 63 +2026-05-15T07:55:04+08:00 +2026/05/15 07:55:04.079, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.62, 63 +2026-05-15T07:55:09+08:00 +2026/05/15 07:55:09.103, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.09, 63 +2026-05-15T07:55:14+08:00 +2026/05/15 07:55:14.127, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.80, 63 +2026-05-15T07:55:19+08:00 +2026/05/15 07:55:19.167, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.09, 64 +2026-05-15T07:55:24+08:00 +2026/05/15 07:55:24.223, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.26, 64 +2026-05-15T07:55:29+08:00 +2026/05/15 07:55:29.249, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.76, 64 +2026-05-15T07:55:34+08:00 +2026/05/15 07:55:34.321, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.02, 64 +2026-05-15T07:55:39+08:00 +2026/05/15 07:55:39.345, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.90, 64 +2026-05-15T07:55:44+08:00 +2026/05/15 07:55:44.395, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.00, 64 +2026-05-15T07:55:49+08:00 +2026/05/15 07:55:49.418, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.42, 63 +2026-05-15T07:55:54+08:00 +2026/05/15 07:55:54.459, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 197.56, 64 +2026-05-15T07:55:59+08:00 +2026/05/15 07:55:59.501, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.65, 64 +2026-05-15T07:56:04+08:00 +2026/05/15 07:56:04.542, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.22, 64 +2026-05-15T07:56:09+08:00 +2026/05/15 07:56:09.595, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.57, 64 +2026-05-15T07:56:14+08:00 +2026/05/15 07:56:14.617, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 320.15, 64 +2026-05-15T07:56:19+08:00 +2026/05/15 07:56:19.639, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.62, 64 +2026-05-15T07:56:24+08:00 +2026/05/15 07:56:24.690, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.70, 63 +2026-05-15T07:56:29+08:00 +2026/05/15 07:56:29.715, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.08, 64 +2026-05-15T07:56:34+08:00 +2026/05/15 07:56:34.755, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.85, 64 +2026-05-15T07:56:39+08:00 +2026/05/15 07:56:39.777, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 357.35, 63 +2026-05-15T07:56:44+08:00 +2026/05/15 07:56:44.800, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.71, 64 +2026-05-15T07:56:49+08:00 +2026/05/15 07:56:49.823, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 260.44, 64 +2026-05-15T07:56:54+08:00 +2026/05/15 07:56:54.847, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 362.28, 64 +2026-05-15T07:56:59+08:00 +2026/05/15 07:56:59.888, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.27, 64 +2026-05-15T07:57:04+08:00 +2026/05/15 07:57:04.960, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.05, 63 +2026-05-15T07:57:09+08:00 +2026/05/15 07:57:09.985, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.86, 64 +2026-05-15T07:57:15+08:00 +2026/05/15 07:57:15.027, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.95, 64 +2026-05-15T07:57:20+08:00 +2026/05/15 07:57:20.067, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.92, 64 +2026-05-15T07:57:25+08:00 +2026/05/15 07:57:25.091, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.23, 63 +2026-05-15T07:57:30+08:00 +2026/05/15 07:57:30.116, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.51, 63 +2026-05-15T07:57:35+08:00 +2026/05/15 07:57:35.139, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.98, 64 +2026-05-15T07:57:40+08:00 +2026/05/15 07:57:40.163, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.14, 64 +2026-05-15T07:57:45+08:00 +2026/05/15 07:57:45.191, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.21, 65 +2026-05-15T07:57:50+08:00 +2026/05/15 07:57:50.215, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.20, 64 +2026-05-15T07:57:55+08:00 +2026/05/15 07:57:55.237, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.26, 64 +2026-05-15T07:58:00+08:00 +2026/05/15 07:58:00.260, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.23, 63 +2026-05-15T07:58:05+08:00 +2026/05/15 07:58:05.283, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.63, 64 +2026-05-15T07:58:10+08:00 +2026/05/15 07:58:10.304, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.70, 65 +2026-05-15T07:58:15+08:00 +2026/05/15 07:58:15.329, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.74, 64 +2026-05-15T07:58:20+08:00 +2026/05/15 07:58:20.351, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 362.19, 64 +2026-05-15T07:58:25+08:00 +2026/05/15 07:58:25.382, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.81, 64 +2026-05-15T07:58:30+08:00 +2026/05/15 07:58:30.408, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.80, 64 +2026-05-15T07:58:35+08:00 +2026/05/15 07:58:35.431, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.98, 64 +2026-05-15T07:58:40+08:00 +2026/05/15 07:58:40.454, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.99, 64 +2026-05-15T07:58:45+08:00 +2026/05/15 07:58:45.478, NVIDIA GeForce RTX 5090, 47, 17, 9607, 32607, 253.51, 61 +2026-05-15T07:58:50+08:00 +2026/05/15 07:58:50.499, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.95, 64 +2026-05-15T07:58:55+08:00 +2026/05/15 07:58:55.522, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.00, 63 +2026-05-15T07:59:00+08:00 +2026/05/15 07:59:00.547, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.83, 64 +2026-05-15T07:59:05+08:00 +2026/05/15 07:59:05.571, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.00, 64 +2026-05-15T07:59:10+08:00 +2026/05/15 07:59:10.595, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.74, 64 +2026-05-15T07:59:15+08:00 +2026/05/15 07:59:15.618, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.92, 63 +2026-05-15T07:59:20+08:00 +2026/05/15 07:59:20.643, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.97, 63 +2026-05-15T07:59:25+08:00 +2026/05/15 07:59:25.666, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.24, 63 +2026-05-15T07:59:30+08:00 +2026/05/15 07:59:30.689, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.56, 63 +2026-05-15T07:59:35+08:00 +2026/05/15 07:59:35.715, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.51, 63 +2026-05-15T07:59:40+08:00 +2026/05/15 07:59:40.739, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.25, 63 +2026-05-15T07:59:45+08:00 +2026/05/15 07:59:45.765, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.63, 62 +2026-05-15T07:59:50+08:00 +2026/05/15 07:59:50.789, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.42, 64 +2026-05-15T07:59:55+08:00 +2026/05/15 07:59:55.814, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.70, 64 +2026-05-15T08:00:00+08:00 +2026/05/15 08:00:00.838, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.13, 62 +2026-05-15T08:00:05+08:00 +2026/05/15 08:00:05.865, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.89, 63 +2026-05-15T08:00:10+08:00 +2026/05/15 08:00:10.886, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.00, 63 +2026-05-15T08:00:15+08:00 +2026/05/15 08:00:15.914, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.03, 63 +2026-05-15T08:00:20+08:00 +2026/05/15 08:00:20.939, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 246.49, 63 +2026-05-15T08:00:25+08:00 +2026/05/15 08:00:25.965, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 361.79, 64 +2026-05-15T08:00:30+08:00 +2026/05/15 08:00:30.988, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 361.55, 64 +2026-05-15T08:00:35+08:00 +2026/05/15 08:00:36.012, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 361.51, 64 +2026-05-15T08:00:41+08:00 +2026/05/15 08:00:41.036, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.49, 63 +2026-05-15T08:00:46+08:00 +2026/05/15 08:00:46.060, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.28, 63 +2026-05-15T08:00:51+08:00 +2026/05/15 08:00:51.084, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.55, 63 +2026-05-15T08:00:56+08:00 +2026/05/15 08:00:56.112, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.16, 63 +2026-05-15T08:01:01+08:00 +2026/05/15 08:01:01.136, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 351.94, 63 +2026-05-15T08:01:06+08:00 +2026/05/15 08:01:06.159, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.73, 63 +2026-05-15T08:01:11+08:00 +2026/05/15 08:01:11.183, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.80, 64 +2026-05-15T08:01:16+08:00 +2026/05/15 08:01:16.207, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.60, 62 +2026-05-15T08:01:21+08:00 +2026/05/15 08:01:21.230, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.85, 64 +2026-05-15T08:01:26+08:00 +2026/05/15 08:01:26.254, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.51, 64 +2026-05-15T08:01:31+08:00 +2026/05/15 08:01:31.276, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 362.58, 63 +2026-05-15T08:01:36+08:00 +2026/05/15 08:01:36.301, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 301.19, 64 +2026-05-15T08:01:41+08:00 +2026/05/15 08:01:41.326, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 360.61, 64 +2026-05-15T08:01:46+08:00 +2026/05/15 08:01:46.353, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.72, 63 +2026-05-15T08:01:51+08:00 +2026/05/15 08:01:51.376, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 348.49, 60 +2026-05-15T08:01:56+08:00 +2026/05/15 08:01:56.417, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.01, 63 +2026-05-15T08:02:01+08:00 +2026/05/15 08:02:01.483, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.53, 63 +2026-05-15T08:02:06+08:00 +2026/05/15 08:02:06.507, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.90, 63 +2026-05-15T08:02:11+08:00 +2026/05/15 08:02:11.559, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.34, 62 +2026-05-15T08:02:16+08:00 +2026/05/15 08:02:16.583, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.71, 64 +2026-05-15T08:02:21+08:00 +2026/05/15 08:02:21.627, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.17, 64 +2026-05-15T08:02:26+08:00 +2026/05/15 08:02:26.650, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.90, 63 +2026-05-15T08:02:31+08:00 +2026/05/15 08:02:31.671, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.18, 63 +2026-05-15T08:02:36+08:00 +2026/05/15 08:02:36.695, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.45, 63 +2026-05-15T08:02:41+08:00 +2026/05/15 08:02:41.719, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.62, 63 +2026-05-15T08:02:46+08:00 +2026/05/15 08:02:46.742, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.18, 63 +2026-05-15T08:02:51+08:00 +2026/05/15 08:02:51.765, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 360.14, 64 +2026-05-15T08:02:56+08:00 +2026/05/15 08:02:56.788, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 359.97, 63 +2026-05-15T08:03:01+08:00 +2026/05/15 08:03:01.813, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.51, 63 +2026-05-15T08:03:06+08:00 +2026/05/15 08:03:06.837, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.75, 63 +2026-05-15T08:03:11+08:00 +2026/05/15 08:03:11.883, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.36, 63 +2026-05-15T08:03:16+08:00 +2026/05/15 08:03:16.906, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.40, 63 +2026-05-15T08:03:21+08:00 +2026/05/15 08:03:21.955, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.59, 63 +2026-05-15T08:03:26+08:00 +2026/05/15 08:03:26.981, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.95, 63 +2026-05-15T08:03:32+08:00 +2026/05/15 08:03:32.020, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.22, 64 +2026-05-15T08:03:37+08:00 +2026/05/15 08:03:37.043, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.48, 64 +2026-05-15T08:03:42+08:00 +2026/05/15 08:03:42.069, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.35, 63 +2026-05-15T08:03:47+08:00 +2026/05/15 08:03:47.145, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.05, 63 +2026-05-15T08:03:52+08:00 +2026/05/15 08:03:52.169, NVIDIA GeForce RTX 5090, 43, 22, 9607, 32607, 349.88, 61 +2026-05-15T08:03:57+08:00 +2026/05/15 08:03:57.225, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.40, 63 +2026-05-15T08:04:02+08:00 +2026/05/15 08:04:02.247, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.82, 63 +2026-05-15T08:04:07+08:00 +2026/05/15 08:04:07.271, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.24, 64 +2026-05-15T08:04:12+08:00 +2026/05/15 08:04:12.329, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.00, 63 +2026-05-15T08:04:17+08:00 +2026/05/15 08:04:17.388, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.73, 64 +2026-05-15T08:04:22+08:00 +2026/05/15 08:04:22.423, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.28, 64 +2026-05-15T08:04:27+08:00 +2026/05/15 08:04:27.447, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.38, 64 +2026-05-15T08:04:32+08:00 +2026/05/15 08:04:32.489, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 293.32, 63 +2026-05-15T08:04:37+08:00 +2026/05/15 08:04:37.530, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.52, 64 +2026-05-15T08:04:42+08:00 +2026/05/15 08:04:42.585, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.74, 64 +2026-05-15T08:04:47+08:00 +2026/05/15 08:04:47.622, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.94, 64 +2026-05-15T08:04:52+08:00 +2026/05/15 08:04:52.647, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.87, 64 +2026-05-15T08:04:57+08:00 +2026/05/15 08:04:57.718, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.29, 64 +2026-05-15T08:05:02+08:00 +2026/05/15 08:05:02.741, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.92, 64 +2026-05-15T08:05:07+08:00 +2026/05/15 08:05:07.783, NVIDIA GeForce RTX 5090, 39, 21, 9607, 32607, 260.31, 62 +2026-05-15T08:05:12+08:00 +2026/05/15 08:05:12.842, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.93, 63 +2026-05-15T08:05:17+08:00 +2026/05/15 08:05:17.864, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.70, 63 +2026-05-15T08:05:22+08:00 +2026/05/15 08:05:22.887, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.88, 63 +2026-05-15T08:05:27+08:00 +2026/05/15 08:05:27.911, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.02, 63 +2026-05-15T08:05:32+08:00 +2026/05/15 08:05:32.936, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.17, 63 +2026-05-15T08:05:37+08:00 +2026/05/15 08:05:37.959, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 290.45, 64 +2026-05-15T08:05:42+08:00 +2026/05/15 08:05:42.983, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.78, 64 +2026-05-15T08:05:47+08:00 +2026/05/15 08:05:48.007, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.67, 63 +2026-05-15T08:05:53+08:00 +2026/05/15 08:05:53.029, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.87, 63 +2026-05-15T08:05:58+08:00 +2026/05/15 08:05:58.053, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.80, 63 +2026-05-15T08:06:03+08:00 +2026/05/15 08:06:03.079, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.56, 63 +2026-05-15T08:06:08+08:00 +2026/05/15 08:06:08.105, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.07, 63 +2026-05-15T08:06:13+08:00 +2026/05/15 08:06:13.126, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.31, 63 +2026-05-15T08:06:18+08:00 +2026/05/15 08:06:18.150, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.32, 63 +2026-05-15T08:06:23+08:00 +2026/05/15 08:06:23.175, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.30, 64 +2026-05-15T08:06:28+08:00 +2026/05/15 08:06:28.198, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.98, 65 +2026-05-15T08:06:33+08:00 +2026/05/15 08:06:33.220, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.57, 64 +2026-05-15T08:06:38+08:00 +2026/05/15 08:06:38.245, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.29, 64 +2026-05-15T08:06:43+08:00 +2026/05/15 08:06:43.269, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.35, 64 +2026-05-15T08:06:48+08:00 +2026/05/15 08:06:48.292, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.60, 64 +2026-05-15T08:06:53+08:00 +2026/05/15 08:06:53.317, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.77, 64 +2026-05-15T08:06:58+08:00 +2026/05/15 08:06:58.340, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 254.44, 57 +2026-05-15T08:07:03+08:00 +2026/05/15 08:07:03.367, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 359.98, 64 +2026-05-15T08:07:08+08:00 +2026/05/15 08:07:08.390, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 359.80, 64 +2026-05-15T08:07:13+08:00 +2026/05/15 08:07:13.415, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.46, 63 +2026-05-15T08:07:18+08:00 +2026/05/15 08:07:18.440, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.33, 63 +2026-05-15T08:07:23+08:00 +2026/05/15 08:07:23.463, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.01, 63 +2026-05-15T08:07:28+08:00 +2026/05/15 08:07:28.489, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.15, 64 +2026-05-15T08:07:33+08:00 +2026/05/15 08:07:33.513, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.93, 63 +2026-05-15T08:07:38+08:00 +2026/05/15 08:07:38.537, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.24, 64 +2026-05-15T08:07:43+08:00 +2026/05/15 08:07:43.561, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.48, 64 +2026-05-15T08:07:48+08:00 +2026/05/15 08:07:48.583, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.17, 63 +2026-05-15T08:07:53+08:00 +2026/05/15 08:07:53.607, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 359.51, 63 +2026-05-15T08:07:58+08:00 +2026/05/15 08:07:58.629, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.22, 65 +2026-05-15T08:08:03+08:00 +2026/05/15 08:08:03.653, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.39, 63 +2026-05-15T08:08:08+08:00 +2026/05/15 08:08:08.676, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.30, 64 +2026-05-15T08:08:13+08:00 +2026/05/15 08:08:13.700, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 361.57, 64 +2026-05-15T08:08:18+08:00 +2026/05/15 08:08:18.724, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.37, 64 +2026-05-15T08:08:23+08:00 +2026/05/15 08:08:23.749, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.69, 64 +2026-05-15T08:08:28+08:00 +2026/05/15 08:08:28.774, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.32, 63 +2026-05-15T08:08:33+08:00 +2026/05/15 08:08:33.820, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.80, 64 +2026-05-15T08:08:38+08:00 +2026/05/15 08:08:38.846, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.01, 63 +2026-05-15T08:08:43+08:00 +2026/05/15 08:08:43.874, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.55, 64 +2026-05-15T08:08:48+08:00 +2026/05/15 08:08:48.901, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 264.98, 63 +2026-05-15T08:08:53+08:00 +2026/05/15 08:08:53.925, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.05, 64 +2026-05-15T08:08:58+08:00 +2026/05/15 08:08:58.991, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.41, 64 +2026-05-15T08:09:03+08:00 +2026/05/15 08:09:04.013, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 362.79, 63 +2026-05-15T08:09:09+08:00 +2026/05/15 08:09:09.036, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.63, 64 +2026-05-15T08:09:14+08:00 +2026/05/15 08:09:14.059, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.35, 64 +2026-05-15T08:09:19+08:00 +2026/05/15 08:09:19.083, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.67, 63 +2026-05-15T08:09:24+08:00 +2026/05/15 08:09:24.125, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.56, 64 +2026-05-15T08:09:29+08:00 +2026/05/15 08:09:29.167, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 263.80, 63 +2026-05-15T08:09:34+08:00 +2026/05/15 08:09:34.226, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.00, 63 +2026-05-15T08:09:39+08:00 +2026/05/15 08:09:39.249, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.05, 63 +2026-05-15T08:09:44+08:00 +2026/05/15 08:09:44.271, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.06, 64 +2026-05-15T08:09:49+08:00 +2026/05/15 08:09:49.324, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.05, 64 +2026-05-15T08:09:54+08:00 +2026/05/15 08:09:54.349, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.06, 64 +2026-05-15T08:09:59+08:00 +2026/05/15 08:09:59.397, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.06, 64 +2026-05-15T08:10:04+08:00 +2026/05/15 08:10:04.457, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.67, 63 +2026-05-15T08:10:09+08:00 +2026/05/15 08:10:09.479, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.48, 65 +2026-05-15T08:10:14+08:00 +2026/05/15 08:10:14.539, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.78, 64 +2026-05-15T08:10:19+08:00 +2026/05/15 08:10:19.566, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.76, 64 +2026-05-15T08:10:24+08:00 +2026/05/15 08:10:24.591, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.55, 64 +2026-05-15T08:10:29+08:00 +2026/05/15 08:10:29.668, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.86, 64 +2026-05-15T08:10:34+08:00 +2026/05/15 08:10:34.692, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.90, 63 +2026-05-15T08:10:39+08:00 +2026/05/15 08:10:39.743, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.77, 63 +2026-05-15T08:10:44+08:00 +2026/05/15 08:10:44.767, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 315.11, 59 +2026-05-15T08:10:49+08:00 +2026/05/15 08:10:49.793, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.25, 63 +2026-05-15T08:10:54+08:00 +2026/05/15 08:10:54.850, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.68, 63 +2026-05-15T08:10:59+08:00 +2026/05/15 08:10:59.872, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.06, 64 +2026-05-15T08:11:04+08:00 +2026/05/15 08:11:04.918, NVIDIA GeForce RTX 5090, 88, 39, 9607, 32607, 362.87, 64 +2026-05-15T08:11:09+08:00 +2026/05/15 08:11:09.943, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.27, 63 +2026-05-15T08:11:14+08:00 +2026/05/15 08:11:14.964, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.49, 63 +2026-05-15T08:11:19+08:00 +2026/05/15 08:11:19.990, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.77, 63 +2026-05-15T08:11:24+08:00 +2026/05/15 08:11:25.013, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 360.47, 63 +2026-05-15T08:11:30+08:00 +2026/05/15 08:11:30.039, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.61, 63 +2026-05-15T08:11:35+08:00 +2026/05/15 08:11:35.061, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.13, 63 +2026-05-15T08:11:40+08:00 +2026/05/15 08:11:40.086, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.92, 64 +2026-05-15T08:11:45+08:00 +2026/05/15 08:11:45.111, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.66, 64 +2026-05-15T08:11:50+08:00 +2026/05/15 08:11:50.135, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.65, 63 +2026-05-15T08:11:55+08:00 +2026/05/15 08:11:55.160, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.04, 63 +2026-05-15T08:12:00+08:00 +2026/05/15 08:12:00.183, NVIDIA GeForce RTX 5090, 43, 23, 9607, 32607, 352.96, 59 +2026-05-15T08:12:05+08:00 +2026/05/15 08:12:05.207, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.32, 63 +2026-05-15T08:12:10+08:00 +2026/05/15 08:12:10.230, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.42, 63 +2026-05-15T08:12:15+08:00 +2026/05/15 08:12:15.255, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 303.07, 64 +2026-05-15T08:12:20+08:00 +2026/05/15 08:12:20.278, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.14, 63 +2026-05-15T08:12:25+08:00 +2026/05/15 08:12:25.301, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.77, 63 +2026-05-15T08:12:30+08:00 +2026/05/15 08:12:30.324, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.81, 65 +2026-05-15T08:12:35+08:00 +2026/05/15 08:12:35.348, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 361.60, 64 +2026-05-15T08:12:40+08:00 +2026/05/15 08:12:40.371, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 355.46, 64 +2026-05-15T08:12:45+08:00 +2026/05/15 08:12:45.395, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.38, 63 +2026-05-15T08:12:50+08:00 +2026/05/15 08:12:50.419, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.72, 63 +2026-05-15T08:12:55+08:00 +2026/05/15 08:12:55.442, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.53, 64 +2026-05-15T08:13:00+08:00 +2026/05/15 08:13:00.472, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.63, 64 +2026-05-15T08:13:05+08:00 +2026/05/15 08:13:05.495, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 360.89, 64 +2026-05-15T08:13:10+08:00 +2026/05/15 08:13:10.519, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.87, 64 +2026-05-15T08:13:15+08:00 +2026/05/15 08:13:15.544, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.37, 64 +2026-05-15T08:13:20+08:00 +2026/05/15 08:13:20.566, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.27, 64 +2026-05-15T08:13:25+08:00 +2026/05/15 08:13:25.595, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.94, 64 +2026-05-15T08:13:30+08:00 +2026/05/15 08:13:30.618, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.61, 64 +2026-05-15T08:13:35+08:00 +2026/05/15 08:13:35.642, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.16, 64 +2026-05-15T08:13:40+08:00 +2026/05/15 08:13:40.664, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.05, 64 +2026-05-15T08:13:45+08:00 +2026/05/15 08:13:45.693, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.47, 64 +2026-05-15T08:13:50+08:00 +2026/05/15 08:13:50.717, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 359.99, 63 +2026-05-15T08:13:55+08:00 +2026/05/15 08:13:55.744, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.28, 63 +2026-05-15T08:14:00+08:00 +2026/05/15 08:14:00.766, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.12, 63 +2026-05-15T08:14:05+08:00 +2026/05/15 08:14:05.795, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.63, 63 +2026-05-15T08:14:10+08:00 +2026/05/15 08:14:10.819, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.83, 63 +2026-05-15T08:14:15+08:00 +2026/05/15 08:14:15.842, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.29, 64 +2026-05-15T08:14:20+08:00 +2026/05/15 08:14:20.865, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.80, 64 +2026-05-15T08:14:25+08:00 +2026/05/15 08:14:25.893, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.98, 63 +2026-05-15T08:14:30+08:00 +2026/05/15 08:14:30.917, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 243.01, 63 +2026-05-15T08:14:35+08:00 +2026/05/15 08:14:35.941, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.60, 63 +2026-05-15T08:14:40+08:00 +2026/05/15 08:14:40.964, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.33, 64 +2026-05-15T08:14:45+08:00 +2026/05/15 08:14:45.988, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.59, 64 +2026-05-15T08:14:50+08:00 +2026/05/15 08:14:51.011, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.90, 63 +2026-05-15T08:14:56+08:00 +2026/05/15 08:14:56.036, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.00, 64 +2026-05-15T08:15:01+08:00 +2026/05/15 08:15:01.060, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.27, 64 +2026-05-15T08:15:06+08:00 +2026/05/15 08:15:06.084, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.75, 63 +2026-05-15T08:15:11+08:00 +2026/05/15 08:15:11.107, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.64, 64 +2026-05-15T08:15:16+08:00 +2026/05/15 08:15:16.131, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.71, 63 +2026-05-15T08:15:21+08:00 +2026/05/15 08:15:21.162, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.47, 64 +2026-05-15T08:15:26+08:00 +2026/05/15 08:15:26.185, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.35, 63 +2026-05-15T08:15:31+08:00 +2026/05/15 08:15:31.208, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.12, 63 +2026-05-15T08:15:36+08:00 +2026/05/15 08:15:36.242, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.76, 63 +2026-05-15T08:15:41+08:00 +2026/05/15 08:15:41.317, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.14, 64 +2026-05-15T08:15:46+08:00 +2026/05/15 08:15:46.341, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.12, 64 +2026-05-15T08:15:51+08:00 +2026/05/15 08:15:51.383, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 358.36, 63 +2026-05-15T08:15:56+08:00 +2026/05/15 08:15:56.423, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 360.36, 64 +2026-05-15T08:16:01+08:00 +2026/05/15 08:16:01.467, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 339.12, 58 +2026-05-15T08:16:06+08:00 +2026/05/15 08:16:06.509, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 357.95, 64 +2026-05-15T08:16:11+08:00 +2026/05/15 08:16:11.552, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.26, 64 +2026-05-15T08:16:16+08:00 +2026/05/15 08:16:16.596, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 358.92, 62 +2026-05-15T08:16:21+08:00 +2026/05/15 08:16:21.668, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.67, 63 +2026-05-15T08:16:26+08:00 +2026/05/15 08:16:26.703, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.39, 64 +2026-05-15T08:16:31+08:00 +2026/05/15 08:16:31.724, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 357.21, 62 +2026-05-15T08:16:36+08:00 +2026/05/15 08:16:36.767, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.85, 63 +2026-05-15T08:16:41+08:00 +2026/05/15 08:16:41.809, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.71, 63 +2026-05-15T08:16:46+08:00 +2026/05/15 08:16:46.849, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.21, 64 +2026-05-15T08:16:51+08:00 +2026/05/15 08:16:51.874, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.27, 63 +2026-05-15T08:16:56+08:00 +2026/05/15 08:16:56.898, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.01, 63 +2026-05-15T08:17:01+08:00 +2026/05/15 08:17:01.921, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.43, 63 +2026-05-15T08:17:06+08:00 +2026/05/15 08:17:06.945, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.54, 63 +2026-05-15T08:17:11+08:00 +2026/05/15 08:17:11.970, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.59, 64 +2026-05-15T08:17:16+08:00 +2026/05/15 08:17:16.995, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.99, 63 +2026-05-15T08:17:22+08:00 +2026/05/15 08:17:22.018, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.83, 63 +2026-05-15T08:17:27+08:00 +2026/05/15 08:17:27.039, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.13, 64 +2026-05-15T08:17:32+08:00 +2026/05/15 08:17:32.065, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 362.12, 64 +2026-05-15T08:17:37+08:00 +2026/05/15 08:17:37.088, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 237.23, 63 +2026-05-15T08:17:42+08:00 +2026/05/15 08:17:42.110, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.96, 64 +2026-05-15T08:17:47+08:00 +2026/05/15 08:17:47.133, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 279.39, 63 +2026-05-15T08:17:52+08:00 +2026/05/15 08:17:52.157, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 361.58, 64 +2026-05-15T08:17:57+08:00 +2026/05/15 08:17:57.181, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 358.16, 64 +2026-05-15T08:18:02+08:00 +2026/05/15 08:18:02.204, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.32, 63 +2026-05-15T08:18:07+08:00 +2026/05/15 08:18:07.227, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.53, 64 +2026-05-15T08:18:12+08:00 +2026/05/15 08:18:12.252, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.17, 64 +2026-05-15T08:18:17+08:00 +2026/05/15 08:18:17.276, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.69, 62 +2026-05-15T08:18:22+08:00 +2026/05/15 08:18:22.300, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.64, 64 +2026-05-15T08:18:27+08:00 +2026/05/15 08:18:27.323, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.88, 63 +2026-05-15T08:18:32+08:00 +2026/05/15 08:18:32.352, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.17, 62 +2026-05-15T08:18:37+08:00 +2026/05/15 08:18:37.383, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.34, 64 +2026-05-15T08:18:42+08:00 +2026/05/15 08:18:42.410, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.86, 63 +2026-05-15T08:18:47+08:00 +2026/05/15 08:18:47.436, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.99, 64 +2026-05-15T08:18:52+08:00 +2026/05/15 08:18:52.459, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 361.62, 63 +2026-05-15T08:18:57+08:00 +2026/05/15 08:18:57.481, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.57, 62 +2026-05-15T08:19:02+08:00 +2026/05/15 08:19:02.506, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.93, 63 +2026-05-15T08:19:07+08:00 +2026/05/15 08:19:07.528, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.87, 63 +2026-05-15T08:19:12+08:00 +2026/05/15 08:19:12.553, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.90, 63 +2026-05-15T08:19:17+08:00 +2026/05/15 08:19:17.577, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.21, 64 +2026-05-15T08:19:22+08:00 +2026/05/15 08:19:22.601, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.89, 64 +2026-05-15T08:19:27+08:00 +2026/05/15 08:19:27.624, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 361.26, 64 +2026-05-15T08:19:32+08:00 +2026/05/15 08:19:32.653, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.78, 63 +2026-05-15T08:19:37+08:00 +2026/05/15 08:19:37.678, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.15, 63 +2026-05-15T08:19:42+08:00 +2026/05/15 08:19:42.701, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.82, 63 +2026-05-15T08:19:47+08:00 +2026/05/15 08:19:47.724, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.67, 63 +2026-05-15T08:19:52+08:00 +2026/05/15 08:19:52.746, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.64, 64 +2026-05-15T08:19:57+08:00 +2026/05/15 08:19:57.770, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.99, 64 +2026-05-15T08:20:02+08:00 +2026/05/15 08:20:02.801, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.46, 63 +2026-05-15T08:20:07+08:00 +2026/05/15 08:20:07.825, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 360.93, 64 +2026-05-15T08:20:12+08:00 +2026/05/15 08:20:12.848, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.65, 63 +2026-05-15T08:20:17+08:00 +2026/05/15 08:20:17.871, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 265.21, 59 +2026-05-15T08:20:22+08:00 +2026/05/15 08:20:22.898, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.02, 64 +2026-05-15T08:20:27+08:00 +2026/05/15 08:20:27.920, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.60, 63 +2026-05-15T08:20:32+08:00 +2026/05/15 08:20:32.944, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.99, 63 +2026-05-15T08:20:37+08:00 +2026/05/15 08:20:37.970, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.83, 63 +2026-05-15T08:20:42+08:00 +2026/05/15 08:20:43.004, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.85, 64 +2026-05-15T08:20:48+08:00 +2026/05/15 08:20:48.027, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.17, 64 +2026-05-15T08:20:53+08:00 +2026/05/15 08:20:53.050, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.50, 63 +2026-05-15T08:20:58+08:00 +2026/05/15 08:20:58.073, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.52, 62 +2026-05-15T08:21:03+08:00 +2026/05/15 08:21:03.096, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.89, 63 +2026-05-15T08:21:08+08:00 +2026/05/15 08:21:08.119, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.99, 64 +2026-05-15T08:21:13+08:00 +2026/05/15 08:21:13.142, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.76, 64 +2026-05-15T08:21:18+08:00 +2026/05/15 08:21:18.166, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.95, 63 +2026-05-15T08:21:23+08:00 +2026/05/15 08:21:23.189, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.95, 63 +2026-05-15T08:21:28+08:00 +2026/05/15 08:21:28.214, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.85, 63 +2026-05-15T08:21:33+08:00 +2026/05/15 08:21:33.245, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 261.48, 63 +2026-05-15T08:21:38+08:00 +2026/05/15 08:21:38.268, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.97, 62 +2026-05-15T08:21:43+08:00 +2026/05/15 08:21:43.293, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.57, 64 +2026-05-15T08:21:48+08:00 +2026/05/15 08:21:48.321, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.93, 63 +2026-05-15T08:21:53+08:00 +2026/05/15 08:21:53.345, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.54, 65 +2026-05-15T08:21:58+08:00 +2026/05/15 08:21:58.367, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 362.71, 63 +2026-05-15T08:22:03+08:00 +2026/05/15 08:22:03.390, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.91, 63 +2026-05-15T08:22:08+08:00 +2026/05/15 08:22:08.414, NVIDIA GeForce RTX 5090, 40, 21, 9607, 32607, 249.77, 60 +2026-05-15T08:22:13+08:00 +2026/05/15 08:22:13.437, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.15, 63 +2026-05-15T08:22:18+08:00 +2026/05/15 08:22:18.460, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 360.96, 64 +2026-05-15T08:22:23+08:00 +2026/05/15 08:22:23.484, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.97, 62 +2026-05-15T08:22:28+08:00 +2026/05/15 08:22:28.507, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.79, 64 +2026-05-15T08:22:33+08:00 +2026/05/15 08:22:33.532, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.22, 63 +2026-05-15T08:22:38+08:00 +2026/05/15 08:22:38.556, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 362.26, 63 +2026-05-15T08:22:43+08:00 +2026/05/15 08:22:43.581, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.02, 63 +2026-05-15T08:22:48+08:00 +2026/05/15 08:22:48.605, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.23, 64 +2026-05-15T08:22:53+08:00 +2026/05/15 08:22:53.629, NVIDIA GeForce RTX 5090, 88, 42, 9607, 32607, 361.60, 64 +2026-05-15T08:22:58+08:00 +2026/05/15 08:22:58.657, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.55, 62 +2026-05-15T08:23:03+08:00 +2026/05/15 08:23:03.680, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.36, 63 +2026-05-15T08:23:08+08:00 +2026/05/15 08:23:08.702, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.57, 62 +2026-05-15T08:23:13+08:00 +2026/05/15 08:23:13.727, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.15, 63 +2026-05-15T08:23:18+08:00 +2026/05/15 08:23:18.750, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.24, 64 +2026-05-15T08:23:23+08:00 +2026/05/15 08:23:23.774, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 359.89, 63 +2026-05-15T08:23:28+08:00 +2026/05/15 08:23:28.799, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.31, 64 +2026-05-15T08:23:33+08:00 +2026/05/15 08:23:33.823, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.39, 63 +2026-05-15T08:23:38+08:00 +2026/05/15 08:23:38.848, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 359.90, 63 +2026-05-15T08:23:43+08:00 +2026/05/15 08:23:43.870, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.40, 64 +2026-05-15T08:23:48+08:00 +2026/05/15 08:23:48.899, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.48, 64 +2026-05-15T08:23:53+08:00 +2026/05/15 08:23:53.923, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 358.61, 63 +2026-05-15T08:23:58+08:00 +2026/05/15 08:23:58.949, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 314.28, 63 +2026-05-15T08:24:03+08:00 +2026/05/15 08:24:03.974, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.88, 63 +2026-05-15T08:24:08+08:00 +2026/05/15 08:24:08.999, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 358.92, 64 +2026-05-15T08:24:14+08:00 +2026/05/15 08:24:14.023, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.64, 64 +2026-05-15T08:24:19+08:00 +2026/05/15 08:24:19.047, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.96, 63 +2026-05-15T08:24:24+08:00 +2026/05/15 08:24:24.070, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.07, 63 +2026-05-15T08:24:29+08:00 +2026/05/15 08:24:29.094, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.30, 63 +2026-05-15T08:24:34+08:00 +2026/05/15 08:24:34.121, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 218.88, 56 +2026-05-15T08:24:39+08:00 +2026/05/15 08:24:39.146, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.98, 64 +2026-05-15T08:24:44+08:00 +2026/05/15 08:24:44.168, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.44, 64 +2026-05-15T08:24:49+08:00 +2026/05/15 08:24:49.192, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.63, 64 +2026-05-15T08:24:54+08:00 +2026/05/15 08:24:54.214, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.21, 64 +2026-05-15T08:24:59+08:00 +2026/05/15 08:24:59.239, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.13, 64 +2026-05-15T08:25:04+08:00 +2026/05/15 08:25:04.265, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.56, 63 +2026-05-15T08:25:09+08:00 +2026/05/15 08:25:09.289, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.81, 64 +2026-05-15T08:25:14+08:00 +2026/05/15 08:25:14.312, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.09, 63 +2026-05-15T08:25:19+08:00 +2026/05/15 08:25:19.337, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.71, 63 +2026-05-15T08:25:24+08:00 +2026/05/15 08:25:24.361, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.15, 63 +2026-05-15T08:25:29+08:00 +2026/05/15 08:25:29.386, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.17, 63 +2026-05-15T08:25:34+08:00 +2026/05/15 08:25:34.411, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.95, 64 +2026-05-15T08:25:39+08:00 +2026/05/15 08:25:39.434, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.60, 64 +2026-05-15T08:25:44+08:00 +2026/05/15 08:25:44.460, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.79, 63 +2026-05-15T08:25:49+08:00 +2026/05/15 08:25:49.483, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.47, 63 +2026-05-15T08:25:54+08:00 +2026/05/15 08:25:54.507, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.14, 62 +2026-05-15T08:25:59+08:00 +2026/05/15 08:25:59.533, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.47, 62 +2026-05-15T08:26:04+08:00 +2026/05/15 08:26:04.556, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.20, 62 +2026-05-15T08:26:09+08:00 +2026/05/15 08:26:09.581, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.94, 62 +2026-05-15T08:26:14+08:00 +2026/05/15 08:26:14.603, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.52, 63 +2026-05-15T08:26:19+08:00 +2026/05/15 08:26:19.629, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 360.17, 63 +2026-05-15T08:26:24+08:00 +2026/05/15 08:26:24.653, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.04, 63 +2026-05-15T08:26:29+08:00 +2026/05/15 08:26:29.679, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.16, 63 +2026-05-15T08:26:34+08:00 +2026/05/15 08:26:34.703, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.76, 63 +2026-05-15T08:26:39+08:00 +2026/05/15 08:26:39.728, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.01, 62 +2026-05-15T08:26:44+08:00 +2026/05/15 08:26:44.750, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.09, 62 +2026-05-15T08:26:49+08:00 +2026/05/15 08:26:49.773, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.12, 62 +2026-05-15T08:26:54+08:00 +2026/05/15 08:26:54.797, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.29, 62 +2026-05-15T08:26:59+08:00 +2026/05/15 08:26:59.822, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.89, 62 +2026-05-15T08:27:04+08:00 +2026/05/15 08:27:04.848, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.33, 63 +2026-05-15T08:27:09+08:00 +2026/05/15 08:27:09.872, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.22, 64 +2026-05-15T08:27:14+08:00 +2026/05/15 08:27:14.895, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.14, 64 +2026-05-15T08:27:19+08:00 +2026/05/15 08:27:19.917, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.52, 64 +2026-05-15T08:27:24+08:00 +2026/05/15 08:27:24.945, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.40, 63 +2026-05-15T08:27:29+08:00 +2026/05/15 08:27:29.967, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.42, 64 +2026-05-15T08:27:34+08:00 +2026/05/15 08:27:34.990, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.48, 64 +2026-05-15T08:27:39+08:00 +2026/05/15 08:27:40.013, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.21, 64 +2026-05-15T08:27:45+08:00 +2026/05/15 08:27:45.035, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.77, 63 +2026-05-15T08:27:50+08:00 +2026/05/15 08:27:50.059, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 248.33, 63 +2026-05-15T08:27:55+08:00 +2026/05/15 08:27:55.082, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.79, 63 +2026-05-15T08:28:00+08:00 +2026/05/15 08:28:00.106, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.45, 63 +2026-05-15T08:28:05+08:00 +2026/05/15 08:28:05.129, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.24, 63 +2026-05-15T08:28:10+08:00 +2026/05/15 08:28:10.151, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.09, 63 +2026-05-15T08:28:15+08:00 +2026/05/15 08:28:15.175, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.35, 63 +2026-05-15T08:28:20+08:00 +2026/05/15 08:28:20.196, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.87, 64 +2026-05-15T08:28:25+08:00 +2026/05/15 08:28:25.221, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.26, 63 +2026-05-15T08:28:30+08:00 +2026/05/15 08:28:30.240, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.09, 63 +2026-05-15T08:28:35+08:00 +2026/05/15 08:28:35.262, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.70, 63 +2026-05-15T08:28:40+08:00 +2026/05/15 08:28:40.284, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.60, 63 +2026-05-15T08:28:45+08:00 +2026/05/15 08:28:45.308, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.35, 63 +2026-05-15T08:28:50+08:00 +2026/05/15 08:28:50.333, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.76, 63 +2026-05-15T08:28:55+08:00 +2026/05/15 08:28:55.356, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.83, 63 +2026-05-15T08:29:00+08:00 +2026/05/15 08:29:00.382, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.10, 63 +2026-05-15T08:29:05+08:00 +2026/05/15 08:29:05.406, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.12, 64 +2026-05-15T08:29:10+08:00 +2026/05/15 08:29:10.430, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 360.59, 63 +2026-05-15T08:29:15+08:00 +2026/05/15 08:29:15.458, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.50, 63 +2026-05-15T08:29:20+08:00 +2026/05/15 08:29:20.482, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.46, 63 +2026-05-15T08:29:25+08:00 +2026/05/15 08:29:25.509, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.27, 63 +2026-05-15T08:29:30+08:00 +2026/05/15 08:29:30.560, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.97, 63 +2026-05-15T08:29:35+08:00 +2026/05/15 08:29:35.583, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.84, 63 +2026-05-15T08:29:40+08:00 +2026/05/15 08:29:40.655, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.05, 63 +2026-05-15T08:29:45+08:00 +2026/05/15 08:29:45.692, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.53, 63 +2026-05-15T08:29:50+08:00 +2026/05/15 08:29:50.716, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.67, 62 +2026-05-15T08:29:55+08:00 +2026/05/15 08:29:55.777, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.25, 62 +2026-05-15T08:30:00+08:00 +2026/05/15 08:30:00.812, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.96, 64 +2026-05-15T08:30:05+08:00 +2026/05/15 08:30:05.836, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.11, 64 +2026-05-15T08:30:10+08:00 +2026/05/15 08:30:10.862, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 360.85, 64 +2026-05-15T08:30:15+08:00 +2026/05/15 08:30:15.886, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.24, 64 +2026-05-15T08:30:20+08:00 +2026/05/15 08:30:20.913, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.64, 63 +2026-05-15T08:30:25+08:00 +2026/05/15 08:30:25.939, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.60, 63 +2026-05-15T08:30:30+08:00 +2026/05/15 08:30:30.962, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.04, 62 +2026-05-15T08:30:35+08:00 +2026/05/15 08:30:35.985, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.99, 63 +2026-05-15T08:30:40+08:00 +2026/05/15 08:30:41.008, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.20, 63 +2026-05-15T08:30:46+08:00 +2026/05/15 08:30:46.033, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.77, 63 +2026-05-15T08:30:51+08:00 +2026/05/15 08:30:51.055, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.98, 63 +2026-05-15T08:30:56+08:00 +2026/05/15 08:30:56.079, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.78, 63 +2026-05-15T08:31:01+08:00 +2026/05/15 08:31:01.103, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.91, 63 +2026-05-15T08:31:06+08:00 +2026/05/15 08:31:06.126, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.01, 63 +2026-05-15T08:31:11+08:00 +2026/05/15 08:31:11.151, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.81, 64 +2026-05-15T08:31:16+08:00 +2026/05/15 08:31:16.175, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.77, 63 +2026-05-15T08:31:21+08:00 +2026/05/15 08:31:21.205, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.38, 63 +2026-05-15T08:31:26+08:00 +2026/05/15 08:31:26.230, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.61, 62 +2026-05-15T08:31:31+08:00 +2026/05/15 08:31:31.254, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.38, 63 +2026-05-15T08:31:36+08:00 +2026/05/15 08:31:36.278, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.27, 62 +2026-05-15T08:31:41+08:00 +2026/05/15 08:31:41.303, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.68, 63 +2026-05-15T08:31:46+08:00 +2026/05/15 08:31:46.325, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.85, 63 +2026-05-15T08:31:51+08:00 +2026/05/15 08:31:51.350, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.81, 64 +2026-05-15T08:31:56+08:00 +2026/05/15 08:31:56.374, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.67, 64 +2026-05-15T08:32:01+08:00 +2026/05/15 08:32:01.397, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.63, 64 +2026-05-15T08:32:06+08:00 +2026/05/15 08:32:06.419, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.84, 63 +2026-05-15T08:32:11+08:00 +2026/05/15 08:32:11.444, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 360.31, 63 +2026-05-15T08:32:16+08:00 +2026/05/15 08:32:16.473, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.79, 64 +2026-05-15T08:32:21+08:00 +2026/05/15 08:32:21.496, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.29, 64 +2026-05-15T08:32:26+08:00 +2026/05/15 08:32:26.523, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.29, 64 +2026-05-15T08:32:31+08:00 +2026/05/15 08:32:31.549, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.44, 64 +2026-05-15T08:32:36+08:00 +2026/05/15 08:32:36.571, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.37, 64 +2026-05-15T08:32:41+08:00 +2026/05/15 08:32:41.595, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.35, 64 +2026-05-15T08:32:46+08:00 +2026/05/15 08:32:46.621, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.32, 64 +2026-05-15T08:32:51+08:00 +2026/05/15 08:32:51.644, NVIDIA GeForce RTX 5090, 1, 0, 9607, 32607, 260.52, 61 +2026-05-15T08:32:56+08:00 +2026/05/15 08:32:56.670, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.00, 63 +2026-05-15T08:33:01+08:00 +2026/05/15 08:33:01.702, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.28, 64 +2026-05-15T08:33:06+08:00 +2026/05/15 08:33:06.726, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.93, 63 +2026-05-15T08:33:11+08:00 +2026/05/15 08:33:11.749, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.66, 63 +2026-05-15T08:33:16+08:00 +2026/05/15 08:33:16.774, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.03, 63 +2026-05-15T08:33:21+08:00 +2026/05/15 08:33:21.800, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.00, 63 +2026-05-15T08:33:26+08:00 +2026/05/15 08:33:26.824, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.32, 64 +2026-05-15T08:33:31+08:00 +2026/05/15 08:33:31.847, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.76, 64 +2026-05-15T08:33:36+08:00 +2026/05/15 08:33:36.875, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.57, 63 +2026-05-15T08:33:41+08:00 +2026/05/15 08:33:41.899, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 360.53, 64 +2026-05-15T08:33:46+08:00 +2026/05/15 08:33:46.924, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.33, 63 +2026-05-15T08:33:51+08:00 +2026/05/15 08:33:51.947, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.20, 63 +2026-05-15T08:33:56+08:00 +2026/05/15 08:33:56.969, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.77, 63 +2026-05-15T08:34:01+08:00 +2026/05/15 08:34:01.993, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 356.58, 64 +2026-05-15T08:34:07+08:00 +2026/05/15 08:34:07.017, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 257.56, 62 +2026-05-15T08:34:12+08:00 +2026/05/15 08:34:12.041, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.41, 63 +2026-05-15T08:34:17+08:00 +2026/05/15 08:34:17.064, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.26, 63 +2026-05-15T08:34:22+08:00 +2026/05/15 08:34:22.120, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.15, 64 +2026-05-15T08:34:27+08:00 +2026/05/15 08:34:27.144, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.35, 62 +2026-05-15T08:34:32+08:00 +2026/05/15 08:34:32.201, NVIDIA GeForce RTX 5090, 83, 36, 9607, 32607, 360.28, 62 +2026-05-15T08:34:37+08:00 +2026/05/15 08:34:37.225, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.19, 63 +2026-05-15T08:34:42+08:00 +2026/05/15 08:34:42.265, NVIDIA GeForce RTX 5090, 76, 34, 9607, 32607, 359.24, 61 +2026-05-15T08:34:47+08:00 +2026/05/15 08:34:47.286, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.01, 63 +2026-05-15T08:34:52+08:00 +2026/05/15 08:34:52.358, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.52, 63 +2026-05-15T08:34:57+08:00 +2026/05/15 08:34:57.382, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.18, 64 +2026-05-15T08:35:02+08:00 +2026/05/15 08:35:02.406, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.34, 63 +2026-05-15T08:35:07+08:00 +2026/05/15 08:35:07.431, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.71, 63 +2026-05-15T08:35:12+08:00 +2026/05/15 08:35:12.454, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.46, 64 +2026-05-15T08:35:17+08:00 +2026/05/15 08:35:17.478, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.48, 64 +2026-05-15T08:35:22+08:00 +2026/05/15 08:35:22.502, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.47, 64 +2026-05-15T08:35:27+08:00 +2026/05/15 08:35:27.524, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.55, 64 +2026-05-15T08:35:32+08:00 +2026/05/15 08:35:32.548, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.49, 63 +2026-05-15T08:35:37+08:00 +2026/05/15 08:35:37.571, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.43, 64 +2026-05-15T08:35:42+08:00 +2026/05/15 08:35:42.594, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.95, 64 +2026-05-15T08:35:47+08:00 +2026/05/15 08:35:47.618, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.80, 63 +2026-05-15T08:35:52+08:00 +2026/05/15 08:35:52.641, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.62, 63 +2026-05-15T08:35:57+08:00 +2026/05/15 08:35:57.666, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 265.11, 62 +2026-05-15T08:36:02+08:00 +2026/05/15 08:36:02.688, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.31, 64 +2026-05-15T08:36:07+08:00 +2026/05/15 08:36:07.731, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.75, 64 +2026-05-15T08:36:12+08:00 +2026/05/15 08:36:12.756, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.85, 63 +2026-05-15T08:36:17+08:00 +2026/05/15 08:36:17.795, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.92, 63 +2026-05-15T08:36:22+08:00 +2026/05/15 08:36:22.837, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.16, 63 +2026-05-15T08:36:27+08:00 +2026/05/15 08:36:27.879, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.16, 64 +2026-05-15T08:36:32+08:00 +2026/05/15 08:36:32.903, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.16, 63 +2026-05-15T08:36:37+08:00 +2026/05/15 08:36:37.927, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.73, 64 +2026-05-15T08:36:42+08:00 +2026/05/15 08:36:42.949, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.63, 64 +2026-05-15T08:36:47+08:00 +2026/05/15 08:36:48.019, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.45, 64 +2026-05-15T08:36:53+08:00 +2026/05/15 08:36:53.043, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.07, 63 +2026-05-15T08:36:58+08:00 +2026/05/15 08:36:58.085, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.16, 62 +2026-05-15T08:37:03+08:00 +2026/05/15 08:37:03.118, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.35, 64 +2026-05-15T08:37:08+08:00 +2026/05/15 08:37:08.140, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.37, 64 +2026-05-15T08:37:13+08:00 +2026/05/15 08:37:13.164, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 244.34, 62 +2026-05-15T08:37:18+08:00 +2026/05/15 08:37:18.189, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.14, 63 +2026-05-15T08:37:23+08:00 +2026/05/15 08:37:23.211, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.99, 63 +2026-05-15T08:37:28+08:00 +2026/05/15 08:37:28.239, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.94, 63 +2026-05-15T08:37:33+08:00 +2026/05/15 08:37:33.263, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.86, 63 +2026-05-15T08:37:38+08:00 +2026/05/15 08:37:38.286, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 357.66, 63 +2026-05-15T08:37:43+08:00 +2026/05/15 08:37:43.309, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.51, 63 +2026-05-15T08:37:48+08:00 +2026/05/15 08:37:48.333, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.64, 63 +2026-05-15T08:37:53+08:00 +2026/05/15 08:37:53.356, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.58, 64 +2026-05-15T08:37:58+08:00 +2026/05/15 08:37:58.378, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.08, 63 +2026-05-15T08:38:03+08:00 +2026/05/15 08:38:03.402, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.07, 63 +2026-05-15T08:38:08+08:00 +2026/05/15 08:38:08.426, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.59, 64 +2026-05-15T08:38:13+08:00 +2026/05/15 08:38:13.452, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.26, 63 +2026-05-15T08:38:18+08:00 +2026/05/15 08:38:18.495, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.86, 63 +2026-05-15T08:38:23+08:00 +2026/05/15 08:38:23.519, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.81, 63 +2026-05-15T08:38:28+08:00 +2026/05/15 08:38:28.558, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 252.83, 63 +2026-05-15T08:38:33+08:00 +2026/05/15 08:38:33.582, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.55, 63 +2026-05-15T08:38:38+08:00 +2026/05/15 08:38:38.658, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.79, 64 +2026-05-15T08:38:43+08:00 +2026/05/15 08:38:43.681, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.89, 63 +2026-05-15T08:38:48+08:00 +2026/05/15 08:38:48.751, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.06, 64 +2026-05-15T08:38:53+08:00 +2026/05/15 08:38:53.775, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.83, 63 +2026-05-15T08:38:58+08:00 +2026/05/15 08:38:58.850, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.77, 64 +2026-05-15T08:39:03+08:00 +2026/05/15 08:39:03.875, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.03, 63 +2026-05-15T08:39:08+08:00 +2026/05/15 08:39:08.896, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.32, 63 +2026-05-15T08:39:13+08:00 +2026/05/15 08:39:13.941, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.83, 63 +2026-05-15T08:39:18+08:00 +2026/05/15 08:39:19.009, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 356.16, 63 +2026-05-15T08:39:24+08:00 +2026/05/15 08:39:24.031, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.36, 64 +2026-05-15T08:39:29+08:00 +2026/05/15 08:39:29.054, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 356.24, 64 +2026-05-15T08:39:34+08:00 +2026/05/15 08:39:34.096, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 357.99, 63 +2026-05-15T08:39:39+08:00 +2026/05/15 08:39:39.137, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 359.95, 64 +2026-05-15T08:39:44+08:00 +2026/05/15 08:39:44.179, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.06, 63 +2026-05-15T08:39:49+08:00 +2026/05/15 08:39:49.224, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 357.77, 62 +2026-05-15T08:39:54+08:00 +2026/05/15 08:39:54.248, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.92, 62 +2026-05-15T08:39:59+08:00 +2026/05/15 08:39:59.272, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.48, 62 +2026-05-15T08:40:04+08:00 +2026/05/15 08:40:04.295, NVIDIA GeForce RTX 5090, 82, 36, 9607, 32607, 360.38, 62 +2026-05-15T08:40:09+08:00 +2026/05/15 08:40:09.319, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.52, 62 +2026-05-15T08:40:14+08:00 +2026/05/15 08:40:14.342, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.21, 62 +2026-05-15T08:40:19+08:00 +2026/05/15 08:40:19.366, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.88, 62 +2026-05-15T08:40:24+08:00 +2026/05/15 08:40:24.391, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.58, 63 +2026-05-15T08:40:29+08:00 +2026/05/15 08:40:29.415, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.37, 63 +2026-05-15T08:40:34+08:00 +2026/05/15 08:40:34.439, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 360.10, 63 +2026-05-15T08:40:39+08:00 +2026/05/15 08:40:39.461, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.05, 63 +2026-05-15T08:40:44+08:00 +2026/05/15 08:40:44.485, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.66, 63 +2026-05-15T08:40:49+08:00 +2026/05/15 08:40:49.508, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.00, 63 +2026-05-15T08:40:54+08:00 +2026/05/15 08:40:54.534, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.60, 63 +2026-05-15T08:40:59+08:00 +2026/05/15 08:40:59.558, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.96, 63 +2026-05-15T08:41:04+08:00 +2026/05/15 08:41:04.582, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 359.70, 63 +2026-05-15T08:41:09+08:00 +2026/05/15 08:41:09.625, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 359.88, 64 +2026-05-15T08:41:14+08:00 +2026/05/15 08:41:14.667, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 359.45, 63 +2026-05-15T08:41:19+08:00 +2026/05/15 08:41:19.692, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 359.84, 64 +2026-05-15T08:41:24+08:00 +2026/05/15 08:41:24.716, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.33, 64 +2026-05-15T08:41:29+08:00 +2026/05/15 08:41:29.765, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.13, 63 +2026-05-15T08:41:34+08:00 +2026/05/15 08:41:34.789, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.35, 63 +2026-05-15T08:41:39+08:00 +2026/05/15 08:41:39.830, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.05, 63 +2026-05-15T08:41:44+08:00 +2026/05/15 08:41:44.893, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.84, 64 +2026-05-15T08:41:49+08:00 +2026/05/15 08:41:49.917, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.76, 63 +2026-05-15T08:41:54+08:00 +2026/05/15 08:41:54.966, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.33, 63 +2026-05-15T08:41:59+08:00 +2026/05/15 08:41:59.990, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 362.78, 64 +2026-05-15T08:42:05+08:00 +2026/05/15 08:42:05.042, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.89, 64 +2026-05-15T08:42:10+08:00 +2026/05/15 08:42:10.067, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.75, 63 +2026-05-15T08:42:15+08:00 +2026/05/15 08:42:15.107, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.88, 63 +2026-05-15T08:42:20+08:00 +2026/05/15 08:42:20.149, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.53, 63 +2026-05-15T08:42:25+08:00 +2026/05/15 08:42:25.174, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.26, 64 +2026-05-15T08:42:30+08:00 +2026/05/15 08:42:30.198, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.48, 63 +2026-05-15T08:42:35+08:00 +2026/05/15 08:42:35.221, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.28, 63 +2026-05-15T08:42:40+08:00 +2026/05/15 08:42:40.245, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.93, 63 +2026-05-15T08:42:45+08:00 +2026/05/15 08:42:45.270, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.30, 64 +2026-05-15T08:42:50+08:00 +2026/05/15 08:42:50.298, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.36, 63 +2026-05-15T08:42:55+08:00 +2026/05/15 08:42:55.322, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 360.39, 63 +2026-05-15T08:43:00+08:00 +2026/05/15 08:43:00.346, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.53, 63 +2026-05-15T08:43:05+08:00 +2026/05/15 08:43:05.374, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.00, 63 +2026-05-15T08:43:10+08:00 +2026/05/15 08:43:10.397, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.94, 64 +2026-05-15T08:43:15+08:00 +2026/05/15 08:43:15.421, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.92, 63 +2026-05-15T08:43:20+08:00 +2026/05/15 08:43:20.444, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 361.95, 62 +2026-05-15T08:43:25+08:00 +2026/05/15 08:43:25.469, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.75, 64 +2026-05-15T08:43:30+08:00 +2026/05/15 08:43:30.494, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.67, 64 +2026-05-15T08:43:35+08:00 +2026/05/15 08:43:35.519, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 310.07, 57 +2026-05-15T08:43:40+08:00 +2026/05/15 08:43:40.541, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.00, 63 +2026-05-15T08:43:45+08:00 +2026/05/15 08:43:45.563, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.73, 62 +2026-05-15T08:43:50+08:00 +2026/05/15 08:43:50.587, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.04, 62 +2026-05-15T08:43:55+08:00 +2026/05/15 08:43:55.611, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.02, 63 +2026-05-15T08:44:00+08:00 +2026/05/15 08:44:00.633, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 358.41, 64 +2026-05-15T08:44:05+08:00 +2026/05/15 08:44:05.657, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.50, 64 +2026-05-15T08:44:10+08:00 +2026/05/15 08:44:10.681, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.37, 64 +2026-05-15T08:44:15+08:00 +2026/05/15 08:44:15.710, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 360.40, 62 +2026-05-15T08:44:20+08:00 +2026/05/15 08:44:20.735, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.75, 63 +2026-05-15T08:44:25+08:00 +2026/05/15 08:44:25.764, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.24, 63 +2026-05-15T08:44:30+08:00 +2026/05/15 08:44:30.787, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.28, 64 +2026-05-15T08:44:35+08:00 +2026/05/15 08:44:35.811, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.05, 63 +2026-05-15T08:44:40+08:00 +2026/05/15 08:44:40.837, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 350.59, 63 +2026-05-15T08:44:45+08:00 +2026/05/15 08:44:45.860, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.33, 63 +2026-05-15T08:44:50+08:00 +2026/05/15 08:44:50.884, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 315.99, 63 +2026-05-15T08:44:55+08:00 +2026/05/15 08:44:55.909, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.81, 64 +2026-05-15T08:45:00+08:00 +2026/05/15 08:45:00.934, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 361.52, 64 +2026-05-15T08:45:05+08:00 +2026/05/15 08:45:05.959, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.79, 62 +2026-05-15T08:45:10+08:00 +2026/05/15 08:45:10.984, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.83, 63 +2026-05-15T08:45:15+08:00 +2026/05/15 08:45:16.009, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.85, 64 +2026-05-15T08:45:21+08:00 +2026/05/15 08:45:21.032, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.28, 62 +2026-05-15T08:45:26+08:00 +2026/05/15 08:45:26.060, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.04, 64 +2026-05-15T08:45:31+08:00 +2026/05/15 08:45:31.085, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.83, 63 +2026-05-15T08:45:36+08:00 +2026/05/15 08:45:36.127, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.09, 64 +2026-05-15T08:45:41+08:00 +2026/05/15 08:45:41.152, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.02, 63 +2026-05-15T08:45:46+08:00 +2026/05/15 08:45:46.176, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.78, 63 +2026-05-15T08:45:51+08:00 +2026/05/15 08:45:51.200, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.98, 63 +2026-05-15T08:45:56+08:00 +2026/05/15 08:45:56.223, NVIDIA GeForce RTX 5090, 65, 30, 9607, 32607, 355.96, 63 +2026-05-15T08:46:01+08:00 +2026/05/15 08:46:01.247, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.92, 64 +2026-05-15T08:46:06+08:00 +2026/05/15 08:46:06.271, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 264.66, 62 +2026-05-15T08:46:11+08:00 +2026/05/15 08:46:11.295, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.29, 62 +2026-05-15T08:46:16+08:00 +2026/05/15 08:46:16.338, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.42, 63 +2026-05-15T08:46:21+08:00 +2026/05/15 08:46:21.397, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.12, 64 +2026-05-15T08:46:26+08:00 +2026/05/15 08:46:26.435, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.65, 64 +2026-05-15T08:46:31+08:00 +2026/05/15 08:46:31.459, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.28, 63 +2026-05-15T08:46:36+08:00 +2026/05/15 08:46:36.527, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 359.86, 63 +2026-05-15T08:46:41+08:00 +2026/05/15 08:46:41.552, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.74, 64 +2026-05-15T08:46:46+08:00 +2026/05/15 08:46:46.592, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.41, 65 +2026-05-15T08:46:51+08:00 +2026/05/15 08:46:51.666, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.02, 63 +2026-05-15T08:46:56+08:00 +2026/05/15 08:46:56.689, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.91, 64 +2026-05-15T08:47:01+08:00 +2026/05/15 08:47:01.763, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.85, 63 +2026-05-15T08:47:06+08:00 +2026/05/15 08:47:06.787, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.20, 64 +2026-05-15T08:47:11+08:00 +2026/05/15 08:47:11.828, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.85, 63 +2026-05-15T08:47:16+08:00 +2026/05/15 08:47:16.850, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.97, 63 +2026-05-15T08:47:21+08:00 +2026/05/15 08:47:21.891, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.88, 62 +2026-05-15T08:47:26+08:00 +2026/05/15 08:47:26.913, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.38, 63 +2026-05-15T08:47:31+08:00 +2026/05/15 08:47:31.936, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.04, 64 +2026-05-15T08:47:36+08:00 +2026/05/15 08:47:36.959, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.18, 64 +2026-05-15T08:47:41+08:00 +2026/05/15 08:47:41.984, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.00, 64 +2026-05-15T08:47:46+08:00 +2026/05/15 08:47:47.007, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 360.68, 63 +2026-05-15T08:47:52+08:00 +2026/05/15 08:47:52.031, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 360.92, 64 +2026-05-15T08:47:57+08:00 +2026/05/15 08:47:57.055, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 361.73, 64 +2026-05-15T08:48:02+08:00 +2026/05/15 08:48:02.078, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.87, 63 +2026-05-15T08:48:07+08:00 +2026/05/15 08:48:07.102, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.03, 63 +2026-05-15T08:48:12+08:00 +2026/05/15 08:48:12.126, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.08, 63 +2026-05-15T08:48:17+08:00 +2026/05/15 08:48:17.150, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.45, 63 +2026-05-15T08:48:22+08:00 +2026/05/15 08:48:22.174, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.09, 63 +2026-05-15T08:48:27+08:00 +2026/05/15 08:48:27.198, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.57, 63 +2026-05-15T08:48:32+08:00 +2026/05/15 08:48:32.223, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.87, 63 +2026-05-15T08:48:37+08:00 +2026/05/15 08:48:37.245, NVIDIA GeForce RTX 5090, 47, 24, 9607, 32607, 330.05, 59 +2026-05-15T08:48:42+08:00 +2026/05/15 08:48:42.268, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.45, 64 +2026-05-15T08:48:47+08:00 +2026/05/15 08:48:47.310, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 361.06, 64 +2026-05-15T08:48:52+08:00 +2026/05/15 08:48:52.350, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.35, 62 +2026-05-15T08:48:57+08:00 +2026/05/15 08:48:57.427, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 360.30, 63 +2026-05-15T08:49:02+08:00 +2026/05/15 08:49:02.451, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 361.50, 63 +2026-05-15T08:49:07+08:00 +2026/05/15 08:49:07.477, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.27, 64 +2026-05-15T08:49:12+08:00 +2026/05/15 08:49:12.548, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.61, 63 +2026-05-15T08:49:17+08:00 +2026/05/15 08:49:17.571, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.68, 64 +2026-05-15T08:49:22+08:00 +2026/05/15 08:49:22.612, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.66, 63 +2026-05-15T08:49:27+08:00 +2026/05/15 08:49:27.638, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.08, 63 +2026-05-15T08:49:32+08:00 +2026/05/15 08:49:32.661, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.39, 63 +2026-05-15T08:49:37+08:00 +2026/05/15 08:49:37.685, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.29, 63 +2026-05-15T08:49:42+08:00 +2026/05/15 08:49:42.765, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.42, 64 +2026-05-15T08:49:47+08:00 +2026/05/15 08:49:47.789, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.57, 65 +2026-05-15T08:49:52+08:00 +2026/05/15 08:49:52.864, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.83, 63 +2026-05-15T08:49:57+08:00 +2026/05/15 08:49:57.887, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.54, 64 +2026-05-15T08:50:02+08:00 +2026/05/15 08:50:02.911, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.04, 64 +2026-05-15T08:50:07+08:00 +2026/05/15 08:50:07.933, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.60, 64 +2026-05-15T08:50:12+08:00 +2026/05/15 08:50:12.958, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.14, 64 +2026-05-15T08:50:17+08:00 +2026/05/15 08:50:17.982, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.84, 64 +2026-05-15T08:50:22+08:00 +2026/05/15 08:50:23.010, NVIDIA GeForce RTX 5090, 20, 7, 9607, 32607, 195.70, 56 +2026-05-15T08:50:28+08:00 +2026/05/15 08:50:28.034, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.07, 62 +2026-05-15T08:50:33+08:00 +2026/05/15 08:50:33.063, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.81, 62 +2026-05-15T08:50:38+08:00 +2026/05/15 08:50:38.087, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 360.67, 63 +2026-05-15T08:50:43+08:00 +2026/05/15 08:50:43.111, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 360.73, 64 +2026-05-15T08:50:48+08:00 +2026/05/15 08:50:48.136, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.00, 64 +2026-05-15T08:50:53+08:00 +2026/05/15 08:50:53.158, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.17, 64 +2026-05-15T08:50:58+08:00 +2026/05/15 08:50:58.182, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.33, 63 +2026-05-15T08:51:03+08:00 +2026/05/15 08:51:03.204, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.56, 63 +2026-05-15T08:51:08+08:00 +2026/05/15 08:51:08.227, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.58, 64 +2026-05-15T08:51:13+08:00 +2026/05/15 08:51:13.250, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.81, 63 +2026-05-15T08:51:18+08:00 +2026/05/15 08:51:18.274, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.60, 63 +2026-05-15T08:51:23+08:00 +2026/05/15 08:51:23.303, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.06, 64 +2026-05-15T08:51:28+08:00 +2026/05/15 08:51:28.328, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.27, 63 +2026-05-15T08:51:33+08:00 +2026/05/15 08:51:33.352, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.30, 64 +2026-05-15T08:51:38+08:00 +2026/05/15 08:51:38.376, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.42, 63 +2026-05-15T08:51:43+08:00 +2026/05/15 08:51:43.400, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.28, 63 +2026-05-15T08:51:48+08:00 +2026/05/15 08:51:48.424, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.05, 63 +2026-05-15T08:51:53+08:00 +2026/05/15 08:51:53.447, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.29, 63 +2026-05-15T08:51:58+08:00 +2026/05/15 08:51:58.471, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.43, 63 +2026-05-15T08:52:03+08:00 +2026/05/15 08:52:03.495, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.01, 63 +2026-05-15T08:52:08+08:00 +2026/05/15 08:52:08.519, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.00, 65 +2026-05-15T08:52:13+08:00 +2026/05/15 08:52:13.542, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.96, 63 +2026-05-15T08:52:18+08:00 +2026/05/15 08:52:18.567, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.27, 64 +2026-05-15T08:52:23+08:00 +2026/05/15 08:52:23.590, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.90, 64 +2026-05-15T08:52:28+08:00 +2026/05/15 08:52:28.614, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.73, 64 +2026-05-15T08:52:33+08:00 +2026/05/15 08:52:33.642, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.24, 63 +2026-05-15T08:52:38+08:00 +2026/05/15 08:52:38.663, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.71, 63 +2026-05-15T08:52:43+08:00 +2026/05/15 08:52:43.689, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.25, 64 +2026-05-15T08:52:48+08:00 +2026/05/15 08:52:48.712, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.34, 64 +2026-05-15T08:52:53+08:00 +2026/05/15 08:52:53.736, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.77, 63 +2026-05-15T08:52:58+08:00 +2026/05/15 08:52:58.761, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.01, 63 +2026-05-15T08:53:03+08:00 +2026/05/15 08:53:03.784, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.35, 63 +2026-05-15T08:53:08+08:00 +2026/05/15 08:53:08.807, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.94, 63 +2026-05-15T08:53:13+08:00 +2026/05/15 08:53:13.836, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.96, 63 +2026-05-15T08:53:18+08:00 +2026/05/15 08:53:18.860, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.93, 63 +2026-05-15T08:53:23+08:00 +2026/05/15 08:53:23.883, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.85, 64 +2026-05-15T08:53:28+08:00 +2026/05/15 08:53:28.907, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 360.38, 64 +2026-05-15T08:53:33+08:00 +2026/05/15 08:53:33.931, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.73, 63 +2026-05-15T08:53:38+08:00 +2026/05/15 08:53:38.956, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.44, 64 +2026-05-15T08:53:43+08:00 +2026/05/15 08:53:43.982, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.31, 63 +2026-05-15T08:53:48+08:00 +2026/05/15 08:53:49.006, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 316.78, 58 +2026-05-15T08:53:54+08:00 +2026/05/15 08:53:54.030, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.56, 63 +2026-05-15T08:53:59+08:00 +2026/05/15 08:53:59.054, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.37, 63 +2026-05-15T08:54:04+08:00 +2026/05/15 08:54:04.077, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.98, 63 +2026-05-15T08:54:09+08:00 +2026/05/15 08:54:09.102, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 218.52, 63 +2026-05-15T08:54:14+08:00 +2026/05/15 08:54:14.127, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.05, 63 +2026-05-15T08:54:19+08:00 +2026/05/15 08:54:19.150, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.85, 64 +2026-05-15T08:54:24+08:00 +2026/05/15 08:54:24.179, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.04, 63 +2026-05-15T08:54:29+08:00 +2026/05/15 08:54:29.202, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.51, 64 +2026-05-15T08:54:34+08:00 +2026/05/15 08:54:34.229, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.77, 64 +2026-05-15T08:54:39+08:00 +2026/05/15 08:54:39.259, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.42, 63 +2026-05-15T08:54:44+08:00 +2026/05/15 08:54:44.285, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.24, 64 +2026-05-15T08:54:49+08:00 +2026/05/15 08:54:49.309, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.50, 64 +2026-05-15T08:54:54+08:00 +2026/05/15 08:54:54.336, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.46, 63 +2026-05-15T08:54:59+08:00 +2026/05/15 08:54:59.358, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.47, 65 +2026-05-15T08:55:04+08:00 +2026/05/15 08:55:04.382, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.03, 62 +2026-05-15T08:55:09+08:00 +2026/05/15 08:55:09.406, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.02, 62 +2026-05-15T08:55:14+08:00 +2026/05/15 08:55:14.431, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 351.65, 64 +2026-05-15T08:55:19+08:00 +2026/05/15 08:55:19.454, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 361.26, 63 +2026-05-15T08:55:24+08:00 +2026/05/15 08:55:24.479, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 283.54, 57 +2026-05-15T08:55:29+08:00 +2026/05/15 08:55:29.503, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.26, 63 +2026-05-15T08:55:34+08:00 +2026/05/15 08:55:34.528, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.09, 64 +2026-05-15T08:55:39+08:00 +2026/05/15 08:55:39.551, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 313.80, 58 +2026-05-15T08:55:44+08:00 +2026/05/15 08:55:44.572, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.58, 63 +2026-05-15T08:55:49+08:00 +2026/05/15 08:55:49.648, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.35, 63 +2026-05-15T08:55:54+08:00 +2026/05/15 08:55:54.672, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.92, 64 +2026-05-15T08:55:59+08:00 +2026/05/15 08:55:59.745, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.10, 64 +2026-05-15T08:56:04+08:00 +2026/05/15 08:56:04.768, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.48, 64 +2026-05-15T08:56:09+08:00 +2026/05/15 08:56:09.842, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.35, 64 +2026-05-15T08:56:14+08:00 +2026/05/15 08:56:14.866, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.20, 64 +2026-05-15T08:56:19+08:00 +2026/05/15 08:56:19.908, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 261.12, 63 +2026-05-15T08:56:24+08:00 +2026/05/15 08:56:24.949, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.70, 63 +2026-05-15T08:56:29+08:00 +2026/05/15 08:56:30.025, NVIDIA GeForce RTX 5090, 72, 33, 9607, 32607, 357.51, 63 +2026-05-15T08:56:35+08:00 +2026/05/15 08:56:35.059, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.41, 64 +2026-05-15T08:56:40+08:00 +2026/05/15 08:56:40.081, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.13, 64 +2026-05-15T08:56:45+08:00 +2026/05/15 08:56:45.158, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.89, 63 +2026-05-15T08:56:50+08:00 +2026/05/15 08:56:50.182, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.90, 63 +2026-05-15T08:56:55+08:00 +2026/05/15 08:56:55.250, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.82, 64 +2026-05-15T08:57:00+08:00 +2026/05/15 08:57:00.274, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 242.54, 63 +2026-05-15T08:57:05+08:00 +2026/05/15 08:57:05.300, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.05, 63 +2026-05-15T08:57:10+08:00 +2026/05/15 08:57:10.341, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.28, 63 +2026-05-15T08:57:15+08:00 +2026/05/15 08:57:15.366, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.39, 63 +2026-05-15T08:57:20+08:00 +2026/05/15 08:57:20.389, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.40, 63 +2026-05-15T08:57:25+08:00 +2026/05/15 08:57:25.413, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.42, 63 +2026-05-15T08:57:30+08:00 +2026/05/15 08:57:30.441, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.42, 63 +2026-05-15T08:57:35+08:00 +2026/05/15 08:57:35.466, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.52, 63 +2026-05-15T08:57:40+08:00 +2026/05/15 08:57:40.490, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.93, 62 +2026-05-15T08:57:45+08:00 +2026/05/15 08:57:45.514, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.91, 62 +2026-05-15T08:57:50+08:00 +2026/05/15 08:57:50.539, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.61, 64 +2026-05-15T08:57:55+08:00 +2026/05/15 08:57:55.563, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.31, 64 +2026-05-15T08:58:00+08:00 +2026/05/15 08:58:00.587, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.81, 63 +2026-05-15T08:58:05+08:00 +2026/05/15 08:58:05.611, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.54, 64 +2026-05-15T08:58:10+08:00 +2026/05/15 08:58:10.635, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.61, 64 +2026-05-15T08:58:15+08:00 +2026/05/15 08:58:15.660, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.09, 63 +2026-05-15T08:58:20+08:00 +2026/05/15 08:58:20.683, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.55, 63 +2026-05-15T08:58:25+08:00 +2026/05/15 08:58:25.705, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.73, 63 +2026-05-15T08:58:30+08:00 +2026/05/15 08:58:30.730, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.24, 63 +2026-05-15T08:58:35+08:00 +2026/05/15 08:58:35.753, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.55, 63 +2026-05-15T08:58:40+08:00 +2026/05/15 08:58:40.777, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.10, 63 +2026-05-15T08:58:45+08:00 +2026/05/15 08:58:45.800, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.89, 63 +2026-05-15T08:58:50+08:00 +2026/05/15 08:58:50.824, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 252.19, 57 +2026-05-15T08:58:55+08:00 +2026/05/15 08:58:55.848, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.90, 63 +2026-05-15T08:59:00+08:00 +2026/05/15 08:59:00.877, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.57, 63 +2026-05-15T08:59:05+08:00 +2026/05/15 08:59:05.901, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.95, 63 +2026-05-15T08:59:10+08:00 +2026/05/15 08:59:10.924, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 360.90, 64 +2026-05-15T08:59:15+08:00 +2026/05/15 08:59:15.948, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.46, 64 +2026-05-15T08:59:20+08:00 +2026/05/15 08:59:20.975, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.57, 63 +2026-05-15T08:59:25+08:00 +2026/05/15 08:59:26.000, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.47, 64 +2026-05-15T08:59:31+08:00 +2026/05/15 08:59:31.024, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 359.85, 63 +2026-05-15T08:59:36+08:00 +2026/05/15 08:59:36.050, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.75, 63 +2026-05-15T08:59:41+08:00 +2026/05/15 08:59:41.076, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.27, 63 +2026-05-15T08:59:46+08:00 +2026/05/15 08:59:46.100, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.69, 63 +2026-05-15T08:59:51+08:00 +2026/05/15 08:59:51.124, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.23, 63 +2026-05-15T08:59:56+08:00 +2026/05/15 08:59:56.150, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.67, 63 +2026-05-15T09:00:01+08:00 +2026/05/15 09:00:01.173, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.49, 63 +2026-05-15T09:00:06+08:00 +2026/05/15 09:00:06.197, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 262.40, 63 +2026-05-15T09:00:11+08:00 +2026/05/15 09:00:11.221, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.58, 63 +2026-05-15T09:00:16+08:00 +2026/05/15 09:00:16.245, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 356.81, 64 +2026-05-15T09:00:21+08:00 +2026/05/15 09:00:21.268, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.79, 63 +2026-05-15T09:00:26+08:00 +2026/05/15 09:00:26.292, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 357.50, 64 +2026-05-15T09:00:31+08:00 +2026/05/15 09:00:31.318, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 358.53, 64 +2026-05-15T09:00:36+08:00 +2026/05/15 09:00:36.342, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.59, 63 +2026-05-15T09:00:41+08:00 +2026/05/15 09:00:41.368, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.21, 62 +2026-05-15T09:00:46+08:00 +2026/05/15 09:00:46.390, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 361.07, 64 +2026-05-15T09:00:51+08:00 +2026/05/15 09:00:51.417, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.51, 63 +2026-05-15T09:00:56+08:00 +2026/05/15 09:00:56.445, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.79, 63 +2026-05-15T09:01:01+08:00 +2026/05/15 09:01:01.470, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.64, 64 +2026-05-15T09:01:06+08:00 +2026/05/15 09:01:06.494, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.87, 63 +2026-05-15T09:01:11+08:00 +2026/05/15 09:01:11.516, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.61, 63 +2026-05-15T09:01:16+08:00 +2026/05/15 09:01:16.540, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 359.25, 63 +2026-05-15T09:01:21+08:00 +2026/05/15 09:01:21.565, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 356.26, 62 +2026-05-15T09:01:26+08:00 +2026/05/15 09:01:26.589, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 359.23, 64 +2026-05-15T09:01:31+08:00 +2026/05/15 09:01:31.611, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.26, 63 +2026-05-15T09:01:36+08:00 +2026/05/15 09:01:36.634, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.11, 63 +2026-05-15T09:01:41+08:00 +2026/05/15 09:01:41.661, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.78, 63 +2026-05-15T09:01:46+08:00 +2026/05/15 09:01:46.684, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 359.55, 64 +2026-05-15T09:01:51+08:00 +2026/05/15 09:01:51.704, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.54, 63 +2026-05-15T09:01:56+08:00 +2026/05/15 09:01:56.731, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.04, 63 +2026-05-15T09:02:01+08:00 +2026/05/15 09:02:01.755, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.36, 64 +2026-05-15T09:02:06+08:00 +2026/05/15 09:02:06.777, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.81, 63 +2026-05-15T09:02:11+08:00 +2026/05/15 09:02:11.800, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.30, 63 +2026-05-15T09:02:16+08:00 +2026/05/15 09:02:16.827, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.80, 64 +2026-05-15T09:02:21+08:00 +2026/05/15 09:02:21.852, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.79, 63 +2026-05-15T09:02:26+08:00 +2026/05/15 09:02:26.875, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.34, 64 +2026-05-15T09:02:31+08:00 +2026/05/15 09:02:31.900, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.00, 63 +2026-05-15T09:02:36+08:00 +2026/05/15 09:02:36.924, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.16, 63 +2026-05-15T09:02:41+08:00 +2026/05/15 09:02:41.946, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.19, 63 +2026-05-15T09:02:46+08:00 +2026/05/15 09:02:46.971, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.61, 63 +2026-05-15T09:02:51+08:00 +2026/05/15 09:02:51.999, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.05, 63 +2026-05-15T09:02:57+08:00 +2026/05/15 09:02:57.023, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.10, 63 +2026-05-15T09:03:02+08:00 +2026/05/15 09:03:02.049, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 362.17, 63 +2026-05-15T09:03:07+08:00 +2026/05/15 09:03:07.074, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.96, 63 +2026-05-15T09:03:12+08:00 +2026/05/15 09:03:12.099, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.19, 63 +2026-05-15T09:03:17+08:00 +2026/05/15 09:03:17.123, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 361.34, 63 +2026-05-15T09:03:22+08:00 +2026/05/15 09:03:22.147, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.73, 64 +2026-05-15T09:03:27+08:00 +2026/05/15 09:03:27.173, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.17, 62 +2026-05-15T09:03:32+08:00 +2026/05/15 09:03:32.197, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.12, 63 +2026-05-15T09:03:37+08:00 +2026/05/15 09:03:37.221, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.17, 63 +2026-05-15T09:03:42+08:00 +2026/05/15 09:03:42.245, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 361.88, 63 +2026-05-15T09:03:47+08:00 +2026/05/15 09:03:47.270, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.45, 64 +2026-05-15T09:03:52+08:00 +2026/05/15 09:03:52.293, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.07, 63 +2026-05-15T09:03:57+08:00 +2026/05/15 09:03:57.316, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.61, 62 +2026-05-15T09:04:02+08:00 +2026/05/15 09:04:02.338, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.77, 63 +2026-05-15T09:04:07+08:00 +2026/05/15 09:04:07.363, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.75, 64 +2026-05-15T09:04:12+08:00 +2026/05/15 09:04:12.390, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.51, 63 +2026-05-15T09:04:17+08:00 +2026/05/15 09:04:17.413, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.05, 63 +2026-05-15T09:04:22+08:00 +2026/05/15 09:04:22.438, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.89, 63 +2026-05-15T09:04:27+08:00 +2026/05/15 09:04:27.461, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.85, 63 +2026-05-15T09:04:32+08:00 +2026/05/15 09:04:32.485, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.77, 63 +2026-05-15T09:04:37+08:00 +2026/05/15 09:04:37.510, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.86, 63 +2026-05-15T09:04:42+08:00 +2026/05/15 09:04:42.534, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.98, 63 +2026-05-15T09:04:47+08:00 +2026/05/15 09:04:47.557, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.64, 64 +2026-05-15T09:04:52+08:00 +2026/05/15 09:04:52.582, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.36, 64 +2026-05-15T09:04:57+08:00 +2026/05/15 09:04:57.606, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.73, 64 +2026-05-15T09:05:02+08:00 +2026/05/15 09:05:02.632, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.30, 63 +2026-05-15T09:05:07+08:00 +2026/05/15 09:05:07.677, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.29, 63 +2026-05-15T09:05:12+08:00 +2026/05/15 09:05:12.724, NVIDIA GeForce RTX 5090, 23, 16, 9607, 32607, 242.10, 60 +2026-05-15T09:05:17+08:00 +2026/05/15 09:05:17.747, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.33, 63 +2026-05-15T09:05:22+08:00 +2026/05/15 09:05:22.798, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.08, 63 +2026-05-15T09:05:27+08:00 +2026/05/15 09:05:27.829, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.35, 63 +2026-05-15T09:05:32+08:00 +2026/05/15 09:05:32.852, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.08, 63 +2026-05-15T09:05:37+08:00 +2026/05/15 09:05:37.894, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.54, 63 +2026-05-15T09:05:42+08:00 +2026/05/15 09:05:42.918, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.89, 63 +2026-05-15T09:05:47+08:00 +2026/05/15 09:05:47.941, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.01, 63 +2026-05-15T09:05:52+08:00 +2026/05/15 09:05:52.966, NVIDIA GeForce RTX 5090, 82, 36, 9607, 32607, 294.34, 63 +2026-05-15T09:05:57+08:00 +2026/05/15 09:05:57.989, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.46, 63 +2026-05-15T09:06:02+08:00 +2026/05/15 09:06:03.013, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.20, 64 +2026-05-15T09:06:08+08:00 +2026/05/15 09:06:08.036, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.89, 64 +2026-05-15T09:06:13+08:00 +2026/05/15 09:06:13.060, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.97, 63 +2026-05-15T09:06:18+08:00 +2026/05/15 09:06:18.087, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.21, 64 +2026-05-15T09:06:23+08:00 +2026/05/15 09:06:23.112, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 361.94, 64 +2026-05-15T09:06:28+08:00 +2026/05/15 09:06:28.135, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.58, 64 +2026-05-15T09:06:33+08:00 +2026/05/15 09:06:33.159, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.19, 63 +2026-05-15T09:06:38+08:00 +2026/05/15 09:06:38.184, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.64, 64 +2026-05-15T09:06:43+08:00 +2026/05/15 09:06:43.208, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.39, 64 +2026-05-15T09:06:48+08:00 +2026/05/15 09:06:48.230, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.71, 63 +2026-05-15T09:06:53+08:00 +2026/05/15 09:06:53.306, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.36, 63 +2026-05-15T09:06:58+08:00 +2026/05/15 09:06:58.330, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.08, 63 +2026-05-15T09:07:03+08:00 +2026/05/15 09:07:03.407, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.53, 63 +2026-05-15T09:07:08+08:00 +2026/05/15 09:07:08.431, NVIDIA GeForce RTX 5090, 75, 34, 9607, 32607, 357.50, 61 +2026-05-15T09:07:13+08:00 +2026/05/15 09:07:13.453, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.89, 63 +2026-05-15T09:07:18+08:00 +2026/05/15 09:07:18.493, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.67, 63 +2026-05-15T09:07:23+08:00 +2026/05/15 09:07:23.517, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.79, 65 +2026-05-15T09:07:28+08:00 +2026/05/15 09:07:28.540, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.18, 65 +2026-05-15T09:07:33+08:00 +2026/05/15 09:07:33.565, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.54, 64 +2026-05-15T09:07:38+08:00 +2026/05/15 09:07:38.589, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.64, 63 +2026-05-15T09:07:43+08:00 +2026/05/15 09:07:43.613, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.98, 64 +2026-05-15T09:07:48+08:00 +2026/05/15 09:07:48.636, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.08, 63 +2026-05-15T09:07:53+08:00 +2026/05/15 09:07:53.662, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.49, 64 +2026-05-15T09:07:58+08:00 +2026/05/15 09:07:58.686, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.23, 64 +2026-05-15T09:08:03+08:00 +2026/05/15 09:08:03.710, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.21, 64 +2026-05-15T09:08:08+08:00 +2026/05/15 09:08:08.737, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.83, 64 +2026-05-15T09:08:13+08:00 +2026/05/15 09:08:13.761, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.82, 63 +2026-05-15T09:08:18+08:00 +2026/05/15 09:08:18.785, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.66, 64 +2026-05-15T09:08:23+08:00 +2026/05/15 09:08:23.815, NVIDIA GeForce RTX 5090, 39, 14, 9607, 32607, 231.42, 57 +2026-05-15T09:08:28+08:00 +2026/05/15 09:08:28.841, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 243.88, 59 +2026-05-15T09:08:33+08:00 +2026/05/15 09:08:33.867, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.29, 63 +2026-05-15T09:08:38+08:00 +2026/05/15 09:08:38.891, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.12, 63 +2026-05-15T09:08:43+08:00 +2026/05/15 09:08:43.914, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 359.41, 63 +2026-05-15T09:08:48+08:00 +2026/05/15 09:08:48.938, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 359.97, 63 +2026-05-15T09:08:53+08:00 +2026/05/15 09:08:53.963, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 359.82, 63 +2026-05-15T09:08:58+08:00 +2026/05/15 09:08:58.985, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.12, 63 +2026-05-15T09:09:03+08:00 +2026/05/15 09:09:04.009, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.20, 63 +2026-05-15T09:09:09+08:00 +2026/05/15 09:09:09.033, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.42, 63 +2026-05-15T09:09:14+08:00 +2026/05/15 09:09:14.057, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.23, 63 +2026-05-15T09:09:19+08:00 +2026/05/15 09:09:19.080, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.96, 63 +2026-05-15T09:09:24+08:00 +2026/05/15 09:09:24.104, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.45, 62 +2026-05-15T09:09:29+08:00 +2026/05/15 09:09:29.129, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.57, 62 +2026-05-15T09:09:34+08:00 +2026/05/15 09:09:34.154, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.45, 62 +2026-05-15T09:09:39+08:00 +2026/05/15 09:09:39.177, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.23, 62 +2026-05-15T09:09:44+08:00 +2026/05/15 09:09:44.201, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 257.28, 63 +2026-05-15T09:09:49+08:00 +2026/05/15 09:09:49.225, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.70, 63 +2026-05-15T09:09:54+08:00 +2026/05/15 09:09:54.248, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.79, 63 +2026-05-15T09:09:59+08:00 +2026/05/15 09:09:59.271, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.34, 63 +2026-05-15T09:10:04+08:00 +2026/05/15 09:10:04.294, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.97, 63 +2026-05-15T09:10:09+08:00 +2026/05/15 09:10:09.317, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 360.28, 63 +2026-05-15T09:10:14+08:00 +2026/05/15 09:10:14.340, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 360.65, 63 +2026-05-15T09:10:19+08:00 +2026/05/15 09:10:19.363, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 360.53, 63 +2026-05-15T09:10:24+08:00 +2026/05/15 09:10:24.386, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.93, 64 +2026-05-15T09:10:29+08:00 +2026/05/15 09:10:29.413, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.54, 63 +2026-05-15T09:10:34+08:00 +2026/05/15 09:10:34.436, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.93, 64 +2026-05-15T09:10:39+08:00 +2026/05/15 09:10:39.460, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 361.35, 63 +2026-05-15T09:10:44+08:00 +2026/05/15 09:10:44.488, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.14, 63 +2026-05-15T09:10:49+08:00 +2026/05/15 09:10:49.516, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.67, 63 +2026-05-15T09:10:54+08:00 +2026/05/15 09:10:54.538, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.38, 63 +2026-05-15T09:10:59+08:00 +2026/05/15 09:10:59.562, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 359.71, 63 +2026-05-15T09:11:04+08:00 +2026/05/15 09:11:04.585, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 356.83, 64 +2026-05-15T09:11:09+08:00 +2026/05/15 09:11:09.609, NVIDIA GeForce RTX 5090, 87, 36, 9607, 32607, 359.93, 64 +2026-05-15T09:11:14+08:00 +2026/05/15 09:11:14.633, NVIDIA GeForce RTX 5090, 87, 36, 9607, 32607, 357.95, 62 +2026-05-15T09:11:19+08:00 +2026/05/15 09:11:19.657, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.56, 63 +2026-05-15T09:11:24+08:00 +2026/05/15 09:11:24.679, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.08, 63 +2026-05-15T09:11:29+08:00 +2026/05/15 09:11:29.703, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.79, 63 +2026-05-15T09:11:34+08:00 +2026/05/15 09:11:34.728, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.69, 63 +2026-05-15T09:11:39+08:00 +2026/05/15 09:11:39.753, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 257.86, 64 +2026-05-15T09:11:44+08:00 +2026/05/15 09:11:44.777, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 357.20, 62 +2026-05-15T09:11:49+08:00 +2026/05/15 09:11:49.800, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 359.08, 63 +2026-05-15T09:11:54+08:00 +2026/05/15 09:11:54.825, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.53, 64 +2026-05-15T09:11:59+08:00 +2026/05/15 09:11:59.849, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 358.71, 62 +2026-05-15T09:12:04+08:00 +2026/05/15 09:12:04.874, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 359.15, 63 +2026-05-15T09:12:09+08:00 +2026/05/15 09:12:09.896, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 357.80, 64 +2026-05-15T09:12:14+08:00 +2026/05/15 09:12:14.919, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 357.91, 62 +2026-05-15T09:12:19+08:00 +2026/05/15 09:12:19.942, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.14, 63 +2026-05-15T09:12:24+08:00 +2026/05/15 09:12:24.966, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 356.68, 63 +2026-05-15T09:12:29+08:00 +2026/05/15 09:12:29.991, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 358.53, 64 +2026-05-15T09:12:35+08:00 +2026/05/15 09:12:35.018, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.40, 63 +2026-05-15T09:12:40+08:00 +2026/05/15 09:12:40.044, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.26, 63 +2026-05-15T09:12:45+08:00 +2026/05/15 09:12:45.070, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 358.04, 63 +2026-05-15T09:12:50+08:00 +2026/05/15 09:12:50.094, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 357.74, 63 +2026-05-15T09:12:55+08:00 +2026/05/15 09:12:55.118, NVIDIA GeForce RTX 5090, 1, 0, 9607, 32607, 314.28, 57 +2026-05-15T09:13:00+08:00 +2026/05/15 09:13:00.139, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.44, 63 +2026-05-15T09:13:05+08:00 +2026/05/15 09:13:05.164, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.94, 63 +2026-05-15T09:13:10+08:00 +2026/05/15 09:13:10.187, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.66, 63 +2026-05-15T09:13:15+08:00 +2026/05/15 09:13:15.211, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.61, 63 +2026-05-15T09:13:20+08:00 +2026/05/15 09:13:20.235, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.86, 63 +2026-05-15T09:13:25+08:00 +2026/05/15 09:13:25.258, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.11, 63 +2026-05-15T09:13:30+08:00 +2026/05/15 09:13:30.279, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.82, 63 +2026-05-15T09:13:35+08:00 +2026/05/15 09:13:35.304, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.98, 63 +2026-05-15T09:13:40+08:00 +2026/05/15 09:13:40.345, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.69, 63 +2026-05-15T09:13:45+08:00 +2026/05/15 09:13:45.369, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.13, 63 +2026-05-15T09:13:50+08:00 +2026/05/15 09:13:50.411, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.85, 63 +2026-05-15T09:13:55+08:00 +2026/05/15 09:13:55.452, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 341.55, 63 +2026-05-15T09:14:00+08:00 +2026/05/15 09:14:00.492, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.95, 63 +2026-05-15T09:14:05+08:00 +2026/05/15 09:14:05.516, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.33, 62 +2026-05-15T09:14:10+08:00 +2026/05/15 09:14:10.558, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 300.99, 63 +2026-05-15T09:14:15+08:00 +2026/05/15 09:14:15.583, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 361.26, 63 +2026-05-15T09:14:20+08:00 +2026/05/15 09:14:20.625, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.77, 63 +2026-05-15T09:14:25+08:00 +2026/05/15 09:14:25.668, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.20, 62 +2026-05-15T09:14:30+08:00 +2026/05/15 09:14:30.691, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 360.89, 63 +2026-05-15T09:14:35+08:00 +2026/05/15 09:14:35.713, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.59, 63 +2026-05-15T09:14:40+08:00 +2026/05/15 09:14:40.736, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.72, 64 +2026-05-15T09:14:45+08:00 +2026/05/15 09:14:45.759, NVIDIA GeForce RTX 5090, 88, 35, 9607, 32607, 359.27, 64 +2026-05-15T09:14:50+08:00 +2026/05/15 09:14:50.785, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.16, 63 +2026-05-15T09:14:55+08:00 +2026/05/15 09:14:55.809, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 358.36, 63 +2026-05-15T09:15:00+08:00 +2026/05/15 09:15:00.832, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.61, 64 +2026-05-15T09:15:05+08:00 +2026/05/15 09:15:05.856, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.00, 63 +2026-05-15T09:15:10+08:00 +2026/05/15 09:15:10.880, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.08, 64 +2026-05-15T09:15:15+08:00 +2026/05/15 09:15:15.906, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.09, 64 +2026-05-15T09:15:20+08:00 +2026/05/15 09:15:20.928, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.18, 63 +2026-05-15T09:15:25+08:00 +2026/05/15 09:15:25.953, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 320.57, 57 +2026-05-15T09:15:30+08:00 +2026/05/15 09:15:30.974, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.01, 63 +2026-05-15T09:15:35+08:00 +2026/05/15 09:15:35.998, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 358.58, 63 +2026-05-15T09:15:41+08:00 +2026/05/15 09:15:41.020, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.42, 62 +2026-05-15T09:15:46+08:00 +2026/05/15 09:15:46.050, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 357.69, 64 +2026-05-15T09:15:51+08:00 +2026/05/15 09:15:51.073, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.55, 63 +2026-05-15T09:15:56+08:00 +2026/05/15 09:15:56.096, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.74, 63 +2026-05-15T09:16:01+08:00 +2026/05/15 09:16:01.120, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 273.48, 57 +2026-05-15T09:16:06+08:00 +2026/05/15 09:16:06.146, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.83, 62 +2026-05-15T09:16:11+08:00 +2026/05/15 09:16:11.173, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 359.07, 63 +2026-05-15T09:16:16+08:00 +2026/05/15 09:16:16.197, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.13, 63 +2026-05-15T09:16:21+08:00 +2026/05/15 09:16:21.220, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 357.32, 64 +2026-05-15T09:16:26+08:00 +2026/05/15 09:16:26.246, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.59, 62 +2026-05-15T09:16:31+08:00 +2026/05/15 09:16:31.267, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 357.00, 64 +2026-05-15T09:16:36+08:00 +2026/05/15 09:16:36.294, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.44, 63 +2026-05-15T09:16:41+08:00 +2026/05/15 09:16:41.317, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.27, 63 +2026-05-15T09:16:46+08:00 +2026/05/15 09:16:46.340, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.83, 64 +2026-05-15T09:16:51+08:00 +2026/05/15 09:16:51.364, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.93, 64 +2026-05-15T09:16:56+08:00 +2026/05/15 09:16:56.389, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.77, 63 +2026-05-15T09:17:01+08:00 +2026/05/15 09:17:01.413, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.75, 64 +2026-05-15T09:17:06+08:00 +2026/05/15 09:17:06.436, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.46, 63 +2026-05-15T09:17:11+08:00 +2026/05/15 09:17:11.462, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.34, 64 +2026-05-15T09:17:16+08:00 +2026/05/15 09:17:16.486, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 251.28, 61 +2026-05-15T09:17:21+08:00 +2026/05/15 09:17:21.511, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.33, 62 +2026-05-15T09:17:26+08:00 +2026/05/15 09:17:26.535, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.65, 62 +2026-05-15T09:17:31+08:00 +2026/05/15 09:17:31.559, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.12, 62 +2026-05-15T09:17:36+08:00 +2026/05/15 09:17:36.582, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.39, 62 +2026-05-15T09:17:41+08:00 +2026/05/15 09:17:41.607, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.34, 63 +2026-05-15T09:17:46+08:00 +2026/05/15 09:17:46.631, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.65, 64 +2026-05-15T09:17:51+08:00 +2026/05/15 09:17:51.654, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 349.23, 61 +2026-05-15T09:17:56+08:00 +2026/05/15 09:17:56.675, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.84, 63 +2026-05-15T09:18:01+08:00 +2026/05/15 09:18:01.701, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.33, 63 +2026-05-15T09:18:06+08:00 +2026/05/15 09:18:06.725, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.39, 63 +2026-05-15T09:18:11+08:00 +2026/05/15 09:18:11.749, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.38, 63 +2026-05-15T09:18:16+08:00 +2026/05/15 09:18:16.774, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.74, 63 +2026-05-15T09:18:21+08:00 +2026/05/15 09:18:21.796, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.55, 63 +2026-05-15T09:18:26+08:00 +2026/05/15 09:18:26.821, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.44, 63 +2026-05-15T09:18:31+08:00 +2026/05/15 09:18:31.848, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.33, 63 +2026-05-15T09:18:36+08:00 +2026/05/15 09:18:36.872, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.50, 63 +2026-05-15T09:18:41+08:00 +2026/05/15 09:18:41.895, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.97, 63 +2026-05-15T09:18:46+08:00 +2026/05/15 09:18:46.919, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.69, 63 +2026-05-15T09:18:51+08:00 +2026/05/15 09:18:51.944, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.54, 63 +2026-05-15T09:18:56+08:00 +2026/05/15 09:18:56.967, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.56, 63 +2026-05-15T09:19:01+08:00 +2026/05/15 09:19:01.992, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.28, 63 +2026-05-15T09:19:07+08:00 +2026/05/15 09:19:07.016, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.86, 63 +2026-05-15T09:19:12+08:00 +2026/05/15 09:19:12.043, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.56, 63 +2026-05-15T09:19:17+08:00 +2026/05/15 09:19:17.067, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.27, 63 +2026-05-15T09:19:22+08:00 +2026/05/15 09:19:22.092, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.21, 64 +2026-05-15T09:19:27+08:00 +2026/05/15 09:19:27.117, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.90, 64 +2026-05-15T09:19:32+08:00 +2026/05/15 09:19:32.142, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.83, 64 +2026-05-15T09:19:37+08:00 +2026/05/15 09:19:37.167, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.41, 64 +2026-05-15T09:19:42+08:00 +2026/05/15 09:19:42.192, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.64, 64 +2026-05-15T09:19:47+08:00 +2026/05/15 09:19:47.218, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.12, 64 +2026-05-15T09:19:52+08:00 +2026/05/15 09:19:52.259, NVIDIA GeForce RTX 5090, 76, 34, 9607, 32607, 358.06, 61 +2026-05-15T09:19:57+08:00 +2026/05/15 09:19:57.281, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.68, 63 +2026-05-15T09:20:02+08:00 +2026/05/15 09:20:02.322, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.47, 63 +2026-05-15T09:20:07+08:00 +2026/05/15 09:20:07.398, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.72, 62 +2026-05-15T09:20:12+08:00 +2026/05/15 09:20:12.421, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.56, 63 +2026-05-15T09:20:17+08:00 +2026/05/15 09:20:17.447, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.06, 64 +2026-05-15T09:20:22+08:00 +2026/05/15 09:20:22.470, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.64, 63 +2026-05-15T09:20:27+08:00 +2026/05/15 09:20:27.493, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.82, 63 +2026-05-15T09:20:32+08:00 +2026/05/15 09:20:32.516, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.95, 63 +2026-05-15T09:20:37+08:00 +2026/05/15 09:20:37.538, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 362.07, 63 +2026-05-15T09:20:42+08:00 +2026/05/15 09:20:42.559, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.61, 63 +2026-05-15T09:20:47+08:00 +2026/05/15 09:20:47.586, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.34, 63 +2026-05-15T09:20:52+08:00 +2026/05/15 09:20:52.611, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.67, 65 +2026-05-15T09:20:57+08:00 +2026/05/15 09:20:57.640, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.84, 64 +2026-05-15T09:21:02+08:00 +2026/05/15 09:21:02.664, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 361.56, 64 +2026-05-15T09:21:07+08:00 +2026/05/15 09:21:07.690, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.69, 63 +2026-05-15T09:21:12+08:00 +2026/05/15 09:21:12.715, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 360.84, 63 +2026-05-15T09:21:17+08:00 +2026/05/15 09:21:17.738, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.99, 63 +2026-05-15T09:21:22+08:00 +2026/05/15 09:21:22.764, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.15, 63 +2026-05-15T09:21:27+08:00 +2026/05/15 09:21:27.786, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.28, 63 +2026-05-15T09:21:32+08:00 +2026/05/15 09:21:32.812, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.22, 64 +2026-05-15T09:21:37+08:00 +2026/05/15 09:21:37.834, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.45, 62 +2026-05-15T09:21:42+08:00 +2026/05/15 09:21:42.860, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.43, 63 +2026-05-15T09:21:47+08:00 +2026/05/15 09:21:47.884, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.47, 62 +2026-05-15T09:21:52+08:00 +2026/05/15 09:21:52.909, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.52, 65 +2026-05-15T09:21:57+08:00 +2026/05/15 09:21:57.934, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.61, 63 +2026-05-15T09:22:02+08:00 +2026/05/15 09:22:02.957, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.39, 63 +2026-05-15T09:22:07+08:00 +2026/05/15 09:22:07.980, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.39, 63 +2026-05-15T09:22:12+08:00 +2026/05/15 09:22:13.005, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.08, 64 +2026-05-15T09:22:18+08:00 +2026/05/15 09:22:18.029, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.04, 63 +2026-05-15T09:22:23+08:00 +2026/05/15 09:22:23.055, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 233.71, 61 +2026-05-15T09:22:28+08:00 +2026/05/15 09:22:28.078, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.15, 64 +2026-05-15T09:22:33+08:00 +2026/05/15 09:22:33.106, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.36, 64 +2026-05-15T09:22:38+08:00 +2026/05/15 09:22:38.131, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.83, 63 +2026-05-15T09:22:43+08:00 +2026/05/15 09:22:43.156, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.62, 64 +2026-05-15T09:22:48+08:00 +2026/05/15 09:22:48.180, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.81, 63 +2026-05-15T09:22:53+08:00 +2026/05/15 09:22:53.207, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.70, 63 +2026-05-15T09:22:58+08:00 +2026/05/15 09:22:58.233, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.22, 63 +2026-05-15T09:23:03+08:00 +2026/05/15 09:23:03.258, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.99, 63 +2026-05-15T09:23:08+08:00 +2026/05/15 09:23:08.281, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.34, 63 +2026-05-15T09:23:13+08:00 +2026/05/15 09:23:13.305, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.54, 63 +2026-05-15T09:23:18+08:00 +2026/05/15 09:23:18.330, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.06, 64 +2026-05-15T09:23:23+08:00 +2026/05/15 09:23:23.355, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 362.03, 63 +2026-05-15T09:23:28+08:00 +2026/05/15 09:23:28.379, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.96, 63 +2026-05-15T09:23:33+08:00 +2026/05/15 09:23:33.403, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.45, 63 +2026-05-15T09:23:38+08:00 +2026/05/15 09:23:38.427, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 295.43, 64 +2026-05-15T09:23:43+08:00 +2026/05/15 09:23:43.450, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.11, 62 +2026-05-15T09:23:48+08:00 +2026/05/15 09:23:48.475, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.44, 63 +2026-05-15T09:23:53+08:00 +2026/05/15 09:23:53.499, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.80, 64 +2026-05-15T09:23:58+08:00 +2026/05/15 09:23:58.522, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.88, 63 +2026-05-15T09:24:03+08:00 +2026/05/15 09:24:03.547, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.91, 62 +2026-05-15T09:24:08+08:00 +2026/05/15 09:24:08.570, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.96, 64 +2026-05-15T09:24:13+08:00 +2026/05/15 09:24:13.594, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 363.42, 63 +2026-05-15T09:24:18+08:00 +2026/05/15 09:24:18.620, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.64, 62 +2026-05-15T09:24:23+08:00 +2026/05/15 09:24:23.645, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.92, 63 +2026-05-15T09:24:28+08:00 +2026/05/15 09:24:28.685, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.38, 63 +2026-05-15T09:24:33+08:00 +2026/05/15 09:24:33.727, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.84, 63 +2026-05-15T09:24:38+08:00 +2026/05/15 09:24:38.782, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.18, 63 +2026-05-15T09:24:43+08:00 +2026/05/15 09:24:43.807, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 361.98, 63 +2026-05-15T09:24:48+08:00 +2026/05/15 09:24:48.858, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.11, 63 +2026-05-15T09:24:53+08:00 +2026/05/15 09:24:53.883, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.26, 64 +2026-05-15T09:24:58+08:00 +2026/05/15 09:24:58.906, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.48, 63 +2026-05-15T09:25:03+08:00 +2026/05/15 09:25:03.949, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.01, 63 +2026-05-15T09:25:08+08:00 +2026/05/15 09:25:08.989, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.38, 63 +2026-05-15T09:25:13+08:00 +2026/05/15 09:25:14.012, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.65, 64 +2026-05-15T09:25:19+08:00 +2026/05/15 09:25:19.083, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 360.32, 63 +2026-05-15T09:25:24+08:00 +2026/05/15 09:25:24.107, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.21, 62 +2026-05-15T09:25:29+08:00 +2026/05/15 09:25:29.133, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.49, 64 +2026-05-15T09:25:34+08:00 +2026/05/15 09:25:34.172, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 361.70, 64 +2026-05-15T09:25:39+08:00 +2026/05/15 09:25:39.237, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.37, 64 +2026-05-15T09:25:44+08:00 +2026/05/15 09:25:44.262, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.28, 62 +2026-05-15T09:25:49+08:00 +2026/05/15 09:25:49.310, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.03, 62 +2026-05-15T09:25:54+08:00 +2026/05/15 09:25:54.335, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.82, 64 +2026-05-15T09:25:59+08:00 +2026/05/15 09:25:59.375, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.46, 63 +2026-05-15T09:26:04+08:00 +2026/05/15 09:26:04.399, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.87, 63 +2026-05-15T09:26:09+08:00 +2026/05/15 09:26:09.428, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 258.48, 64 +2026-05-15T09:26:14+08:00 +2026/05/15 09:26:14.452, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.29, 63 +2026-05-15T09:26:19+08:00 +2026/05/15 09:26:19.475, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.68, 63 +2026-05-15T09:26:24+08:00 +2026/05/15 09:26:24.499, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.13, 62 +2026-05-15T09:26:29+08:00 +2026/05/15 09:26:29.524, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.14, 63 +2026-05-15T09:26:34+08:00 +2026/05/15 09:26:34.545, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.35, 64 +2026-05-15T09:26:39+08:00 +2026/05/15 09:26:39.568, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.49, 62 +2026-05-15T09:26:44+08:00 +2026/05/15 09:26:44.591, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.80, 64 +2026-05-15T09:26:49+08:00 +2026/05/15 09:26:49.611, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.40, 64 +2026-05-15T09:26:54+08:00 +2026/05/15 09:26:54.636, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 361.71, 63 +2026-05-15T09:26:59+08:00 +2026/05/15 09:26:59.659, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.91, 63 +2026-05-15T09:27:04+08:00 +2026/05/15 09:27:04.682, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.90, 64 +2026-05-15T09:27:09+08:00 +2026/05/15 09:27:09.705, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.66, 64 +2026-05-15T09:27:14+08:00 +2026/05/15 09:27:14.730, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 362.01, 63 +2026-05-15T09:27:19+08:00 +2026/05/15 09:27:19.752, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.45, 63 +2026-05-15T09:27:24+08:00 +2026/05/15 09:27:24.775, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 290.28, 63 +2026-05-15T09:27:29+08:00 +2026/05/15 09:27:29.799, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.65, 64 +2026-05-15T09:27:34+08:00 +2026/05/15 09:27:34.823, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.14, 62 +2026-05-15T09:27:39+08:00 +2026/05/15 09:27:39.846, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.06, 63 +2026-05-15T09:27:44+08:00 +2026/05/15 09:27:44.869, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.20, 63 +2026-05-15T09:27:49+08:00 +2026/05/15 09:27:49.893, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.14, 64 +2026-05-15T09:27:54+08:00 +2026/05/15 09:27:54.917, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.40, 63 +2026-05-15T09:27:59+08:00 +2026/05/15 09:27:59.939, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.49, 64 +2026-05-15T09:28:04+08:00 +2026/05/15 09:28:04.963, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.48, 63 +2026-05-15T09:28:09+08:00 +2026/05/15 09:28:09.987, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.19, 63 +2026-05-15T09:28:14+08:00 +2026/05/15 09:28:15.012, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.64, 63 +2026-05-15T09:28:20+08:00 +2026/05/15 09:28:20.037, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 360.96, 63 +2026-05-15T09:28:25+08:00 +2026/05/15 09:28:25.061, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.64, 63 +2026-05-15T09:28:30+08:00 +2026/05/15 09:28:30.085, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 358.78, 63 +2026-05-15T09:28:35+08:00 +2026/05/15 09:28:35.109, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.19, 64 +2026-05-15T09:28:40+08:00 +2026/05/15 09:28:40.132, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 279.50, 62 +2026-05-15T09:28:45+08:00 +2026/05/15 09:28:45.157, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.11, 63 +2026-05-15T09:28:50+08:00 +2026/05/15 09:28:50.180, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 357.96, 64 +2026-05-15T09:28:55+08:00 +2026/05/15 09:28:55.206, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.30, 64 +2026-05-15T09:29:00+08:00 +2026/05/15 09:29:00.231, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 359.89, 64 +2026-05-15T09:29:05+08:00 +2026/05/15 09:29:05.254, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.05, 62 +2026-05-15T09:29:10+08:00 +2026/05/15 09:29:10.281, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 362.13, 63 +2026-05-15T09:29:15+08:00 +2026/05/15 09:29:15.307, NVIDIA GeForce RTX 5090, 71, 32, 9607, 32607, 358.18, 64 +2026-05-15T09:29:20+08:00 +2026/05/15 09:29:20.329, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.59, 63 +2026-05-15T09:29:25+08:00 +2026/05/15 09:29:25.351, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.60, 63 +2026-05-15T09:29:30+08:00 +2026/05/15 09:29:30.374, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.98, 63 +2026-05-15T09:29:35+08:00 +2026/05/15 09:29:35.396, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.57, 64 +2026-05-15T09:29:40+08:00 +2026/05/15 09:29:40.422, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.45, 64 +2026-05-15T09:29:45+08:00 +2026/05/15 09:29:45.446, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.07, 63 +2026-05-15T09:29:50+08:00 +2026/05/15 09:29:50.469, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.41, 63 +2026-05-15T09:29:55+08:00 +2026/05/15 09:29:55.493, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 363.08, 63 +2026-05-15T09:30:00+08:00 +2026/05/15 09:30:00.519, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.40, 64 +2026-05-15T09:30:05+08:00 +2026/05/15 09:30:05.543, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.23, 62 +2026-05-15T09:30:10+08:00 +2026/05/15 09:30:10.567, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.89, 63 +2026-05-15T09:30:15+08:00 +2026/05/15 09:30:15.589, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.37, 62 +2026-05-15T09:30:20+08:00 +2026/05/15 09:30:20.613, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.26, 63 +2026-05-15T09:30:25+08:00 +2026/05/15 09:30:25.641, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.66, 64 +2026-05-15T09:30:30+08:00 +2026/05/15 09:30:30.667, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 361.29, 63 +2026-05-15T09:30:35+08:00 +2026/05/15 09:30:35.695, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.16, 64 +2026-05-15T09:30:40+08:00 +2026/05/15 09:30:40.721, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.63, 64 +2026-05-15T09:30:45+08:00 +2026/05/15 09:30:45.746, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.35, 62 +2026-05-15T09:30:50+08:00 +2026/05/15 09:30:50.773, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.44, 63 +2026-05-15T09:30:55+08:00 +2026/05/15 09:30:55.795, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.93, 63 +2026-05-15T09:31:00+08:00 +2026/05/15 09:31:00.820, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 361.21, 63 +2026-05-15T09:31:05+08:00 +2026/05/15 09:31:05.844, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.20, 62 +2026-05-15T09:31:10+08:00 +2026/05/15 09:31:10.874, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 351.14, 61 +2026-05-15T09:31:15+08:00 +2026/05/15 09:31:15.895, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.34, 63 +2026-05-15T09:31:20+08:00 +2026/05/15 09:31:20.919, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.53, 63 +2026-05-15T09:31:25+08:00 +2026/05/15 09:31:25.947, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.00, 63 +2026-05-15T09:31:30+08:00 +2026/05/15 09:31:30.970, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.72, 64 +2026-05-15T09:31:35+08:00 +2026/05/15 09:31:35.994, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.97, 64 +2026-05-15T09:31:41+08:00 +2026/05/15 09:31:41.017, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.61, 63 +2026-05-15T09:31:46+08:00 +2026/05/15 09:31:46.044, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.27, 64 +2026-05-15T09:31:51+08:00 +2026/05/15 09:31:51.068, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.47, 64 +2026-05-15T09:31:56+08:00 +2026/05/15 09:31:56.091, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.96, 64 +2026-05-15T09:32:01+08:00 +2026/05/15 09:32:01.115, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 361.76, 63 +2026-05-15T09:32:06+08:00 +2026/05/15 09:32:06.139, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.47, 63 +2026-05-15T09:32:11+08:00 +2026/05/15 09:32:11.162, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.00, 64 +2026-05-15T09:32:16+08:00 +2026/05/15 09:32:16.187, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 358.70, 64 +2026-05-15T09:32:21+08:00 +2026/05/15 09:32:21.211, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.89, 63 +2026-05-15T09:32:26+08:00 +2026/05/15 09:32:26.234, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.79, 62 +2026-05-15T09:32:31+08:00 +2026/05/15 09:32:31.258, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.00, 63 +2026-05-15T09:32:36+08:00 +2026/05/15 09:32:36.282, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.45, 63 +2026-05-15T09:32:41+08:00 +2026/05/15 09:32:41.306, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.36, 62 +2026-05-15T09:32:46+08:00 +2026/05/15 09:32:46.331, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.47, 63 +2026-05-15T09:32:51+08:00 +2026/05/15 09:32:51.355, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.47, 63 +2026-05-15T09:32:56+08:00 +2026/05/15 09:32:56.379, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.90, 63 +2026-05-15T09:33:01+08:00 +2026/05/15 09:33:01.403, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.51, 64 +2026-05-15T09:33:06+08:00 +2026/05/15 09:33:06.431, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.19, 62 +2026-05-15T09:33:11+08:00 +2026/05/15 09:33:11.456, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.60, 63 +2026-05-15T09:33:16+08:00 +2026/05/15 09:33:16.480, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.11, 63 +2026-05-15T09:33:21+08:00 +2026/05/15 09:33:21.507, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.39, 64 +2026-05-15T09:33:26+08:00 +2026/05/15 09:33:26.531, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.21, 63 +2026-05-15T09:33:31+08:00 +2026/05/15 09:33:31.555, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.43, 63 +2026-05-15T09:33:36+08:00 +2026/05/15 09:33:36.581, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.97, 63 +2026-05-15T09:33:41+08:00 +2026/05/15 09:33:41.603, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.63, 62 +2026-05-15T09:33:46+08:00 +2026/05/15 09:33:46.628, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 358.94, 62 +2026-05-15T09:33:51+08:00 +2026/05/15 09:33:51.651, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 359.90, 64 +2026-05-15T09:33:56+08:00 +2026/05/15 09:33:56.674, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.93, 64 +2026-05-15T09:34:01+08:00 +2026/05/15 09:34:01.699, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 358.80, 62 +2026-05-15T09:34:06+08:00 +2026/05/15 09:34:06.728, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.17, 63 +2026-05-15T09:34:11+08:00 +2026/05/15 09:34:11.752, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.10, 63 +2026-05-15T09:34:16+08:00 +2026/05/15 09:34:16.776, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 358.99, 63 +2026-05-15T09:34:21+08:00 +2026/05/15 09:34:21.800, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.33, 63 +2026-05-15T09:34:26+08:00 +2026/05/15 09:34:26.824, NVIDIA GeForce RTX 5090, 9, 3, 9607, 32607, 222.52, 56 +2026-05-15T09:34:31+08:00 +2026/05/15 09:34:31.849, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.47, 63 +2026-05-15T09:34:36+08:00 +2026/05/15 09:34:36.870, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 358.88, 63 +2026-05-15T09:34:41+08:00 +2026/05/15 09:34:41.898, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.00, 64 +2026-05-15T09:34:46+08:00 +2026/05/15 09:34:46.925, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.69, 63 +2026-05-15T09:34:51+08:00 +2026/05/15 09:34:51.955, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 359.41, 63 +2026-05-15T09:34:56+08:00 +2026/05/15 09:34:56.984, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.14, 63 +2026-05-15T09:35:01+08:00 +2026/05/15 09:35:02.007, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.50, 62 +2026-05-15T09:35:07+08:00 +2026/05/15 09:35:07.032, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 357.86, 64 +2026-05-15T09:35:12+08:00 +2026/05/15 09:35:12.056, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.29, 64 +2026-05-15T09:35:17+08:00 +2026/05/15 09:35:17.080, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.47, 63 +2026-05-15T09:35:22+08:00 +2026/05/15 09:35:22.103, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.51, 63 +2026-05-15T09:35:27+08:00 +2026/05/15 09:35:27.126, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 358.91, 64 +2026-05-15T09:35:32+08:00 +2026/05/15 09:35:32.151, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.84, 63 +2026-05-15T09:35:37+08:00 +2026/05/15 09:35:37.175, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 359.11, 63 +2026-05-15T09:35:42+08:00 +2026/05/15 09:35:42.199, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.97, 64 +2026-05-15T09:35:47+08:00 +2026/05/15 09:35:47.224, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.06, 63 +2026-05-15T09:35:52+08:00 +2026/05/15 09:35:52.267, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 358.30, 63 +2026-05-15T09:35:57+08:00 +2026/05/15 09:35:57.289, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.87, 64 +2026-05-15T09:36:02+08:00 +2026/05/15 09:36:02.335, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.05, 63 +2026-05-15T09:36:07+08:00 +2026/05/15 09:36:07.359, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.81, 63 +2026-05-15T09:36:12+08:00 +2026/05/15 09:36:12.402, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 280.47, 63 +2026-05-15T09:36:17+08:00 +2026/05/15 09:36:17.425, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 357.81, 63 +2026-05-15T09:36:22+08:00 +2026/05/15 09:36:22.484, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.65, 64 +2026-05-15T09:36:27+08:00 +2026/05/15 09:36:27.509, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 359.10, 63 +2026-05-15T09:36:32+08:00 +2026/05/15 09:36:32.555, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.08, 63 +2026-05-15T09:36:37+08:00 +2026/05/15 09:36:37.588, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.54, 63 +2026-05-15T09:36:42+08:00 +2026/05/15 09:36:42.610, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.62, 63 +2026-05-15T09:36:47+08:00 +2026/05/15 09:36:47.635, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.26, 63 +2026-05-15T09:36:52+08:00 +2026/05/15 09:36:52.658, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.34, 63 +2026-05-15T09:36:57+08:00 +2026/05/15 09:36:57.699, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.08, 63 +2026-05-15T09:37:02+08:00 +2026/05/15 09:37:02.741, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.11, 63 +2026-05-15T09:37:07+08:00 +2026/05/15 09:37:07.793, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.82, 63 +2026-05-15T09:37:12+08:00 +2026/05/15 09:37:12.816, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.51, 63 +2026-05-15T09:37:17+08:00 +2026/05/15 09:37:17.841, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.81, 63 +2026-05-15T09:37:22+08:00 +2026/05/15 09:37:22.864, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.39, 64 +2026-05-15T09:37:27+08:00 +2026/05/15 09:37:27.888, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 253.32, 63 +2026-05-15T09:37:32+08:00 +2026/05/15 09:37:32.912, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.95, 64 +2026-05-15T09:37:37+08:00 +2026/05/15 09:37:37.936, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.62, 63 +2026-05-15T09:37:42+08:00 +2026/05/15 09:37:42.960, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.90, 63 +2026-05-15T09:37:47+08:00 +2026/05/15 09:37:47.984, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 360.91, 63 +2026-05-15T09:37:52+08:00 +2026/05/15 09:37:53.009, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 360.64, 62 +2026-05-15T09:37:58+08:00 +2026/05/15 09:37:58.033, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 360.48, 62 +2026-05-15T09:38:03+08:00 +2026/05/15 09:38:03.058, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.14, 62 +2026-05-15T09:38:08+08:00 +2026/05/15 09:38:08.083, NVIDIA GeForce RTX 5090, 1, 1, 9607, 32607, 253.51, 63 +2026-05-15T09:38:13+08:00 +2026/05/15 09:38:13.108, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.91, 64 +2026-05-15T09:38:18+08:00 +2026/05/15 09:38:18.133, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.14, 63 +2026-05-15T09:38:23+08:00 +2026/05/15 09:38:23.157, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.20, 63 +2026-05-15T09:38:28+08:00 +2026/05/15 09:38:28.182, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.05, 63 +2026-05-15T09:38:33+08:00 +2026/05/15 09:38:33.256, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 362.16, 64 +2026-05-15T09:38:38+08:00 +2026/05/15 09:38:38.279, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 361.59, 64 +2026-05-15T09:38:43+08:00 +2026/05/15 09:38:43.352, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 362.32, 64 +2026-05-15T09:38:48+08:00 +2026/05/15 09:38:48.376, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.57, 63 +2026-05-15T09:38:53+08:00 +2026/05/15 09:38:53.401, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.76, 64 +2026-05-15T09:38:58+08:00 +2026/05/15 09:38:58.475, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.43, 63 +2026-05-15T09:39:03+08:00 +2026/05/15 09:39:03.499, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.52, 63 +2026-05-15T09:39:08+08:00 +2026/05/15 09:39:08.542, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.31, 63 +2026-05-15T09:39:13+08:00 +2026/05/15 09:39:13.586, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 359.00, 64 +2026-05-15T09:39:18+08:00 +2026/05/15 09:39:18.655, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.20, 63 +2026-05-15T09:39:23+08:00 +2026/05/15 09:39:23.679, NVIDIA GeForce RTX 5090, 11, 11, 9607, 32607, 238.78, 61 +2026-05-15T09:39:28+08:00 +2026/05/15 09:39:28.719, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.15, 63 +2026-05-15T09:39:33+08:00 +2026/05/15 09:39:33.796, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.35, 63 +2026-05-15T09:39:38+08:00 +2026/05/15 09:39:38.818, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.08, 63 +2026-05-15T09:39:43+08:00 +2026/05/15 09:39:43.891, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.25, 63 +2026-05-15T09:39:48+08:00 +2026/05/15 09:39:48.914, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.99, 63 +2026-05-15T09:39:53+08:00 +2026/05/15 09:39:53.994, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 360.97, 63 +2026-05-15T09:39:59+08:00 +2026/05/15 09:39:59.036, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 360.15, 64 +2026-05-15T09:40:04+08:00 +2026/05/15 09:40:04.060, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.16, 64 +2026-05-15T09:40:09+08:00 +2026/05/15 09:40:09.084, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.24, 63 +2026-05-15T09:40:14+08:00 +2026/05/15 09:40:14.108, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.31, 64 +2026-05-15T09:40:19+08:00 +2026/05/15 09:40:19.132, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.56, 63 +2026-05-15T09:40:24+08:00 +2026/05/15 09:40:24.155, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.24, 63 +2026-05-15T09:40:29+08:00 +2026/05/15 09:40:29.179, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.64, 64 +2026-05-15T09:40:34+08:00 +2026/05/15 09:40:34.203, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.13, 63 +2026-05-15T09:40:39+08:00 +2026/05/15 09:40:39.226, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.71, 63 +2026-05-15T09:40:44+08:00 +2026/05/15 09:40:44.251, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.07, 63 +2026-05-15T09:40:49+08:00 +2026/05/15 09:40:49.275, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.95, 63 +2026-05-15T09:40:54+08:00 +2026/05/15 09:40:54.299, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.92, 64 +2026-05-15T09:40:59+08:00 +2026/05/15 09:40:59.328, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.51, 64 +2026-05-15T09:41:04+08:00 +2026/05/15 09:41:04.354, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.61, 64 +2026-05-15T09:41:09+08:00 +2026/05/15 09:41:09.379, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.10, 64 +2026-05-15T09:41:14+08:00 +2026/05/15 09:41:14.403, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.01, 63 +2026-05-15T09:41:19+08:00 +2026/05/15 09:41:19.428, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.08, 63 +2026-05-15T09:41:24+08:00 +2026/05/15 09:41:24.452, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.52, 63 +2026-05-15T09:41:29+08:00 +2026/05/15 09:41:29.474, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.67, 63 +2026-05-15T09:41:34+08:00 +2026/05/15 09:41:34.500, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.67, 63 +2026-05-15T09:41:39+08:00 +2026/05/15 09:41:39.522, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.99, 64 +2026-05-15T09:41:44+08:00 +2026/05/15 09:41:44.547, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.22, 62 +2026-05-15T09:41:49+08:00 +2026/05/15 09:41:49.569, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.84, 62 +2026-05-15T09:41:54+08:00 +2026/05/15 09:41:54.593, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 360.82, 64 +2026-05-15T09:41:59+08:00 +2026/05/15 09:41:59.616, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.12, 63 +2026-05-15T09:42:04+08:00 +2026/05/15 09:42:04.641, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 361.58, 64 +2026-05-15T09:42:09+08:00 +2026/05/15 09:42:09.666, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.48, 63 +2026-05-15T09:42:14+08:00 +2026/05/15 09:42:14.689, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 360.17, 63 +2026-05-15T09:42:19+08:00 +2026/05/15 09:42:19.712, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.20, 64 +2026-05-15T09:42:24+08:00 +2026/05/15 09:42:24.738, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.74, 63 +2026-05-15T09:42:29+08:00 +2026/05/15 09:42:29.761, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.66, 64 +2026-05-15T09:42:34+08:00 +2026/05/15 09:42:34.788, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.83, 63 +2026-05-15T09:42:39+08:00 +2026/05/15 09:42:39.811, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.63, 64 +2026-05-15T09:42:44+08:00 +2026/05/15 09:42:44.835, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.75, 63 +2026-05-15T09:42:49+08:00 +2026/05/15 09:42:49.862, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.08, 64 +2026-05-15T09:42:54+08:00 +2026/05/15 09:42:54.886, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.10, 63 +2026-05-15T09:42:59+08:00 +2026/05/15 09:42:59.910, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.18, 64 +2026-05-15T09:43:04+08:00 +2026/05/15 09:43:04.933, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.34, 64 +2026-05-15T09:43:09+08:00 +2026/05/15 09:43:09.958, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.16, 64 +2026-05-15T09:43:14+08:00 +2026/05/15 09:43:14.981, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.32, 63 +2026-05-15T09:43:19+08:00 +2026/05/15 09:43:20.004, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.74, 63 +2026-05-15T09:43:25+08:00 +2026/05/15 09:43:25.032, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.50, 63 +2026-05-15T09:43:30+08:00 +2026/05/15 09:43:30.057, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.08, 64 +2026-05-15T09:43:35+08:00 +2026/05/15 09:43:35.079, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.31, 64 +2026-05-15T09:43:40+08:00 +2026/05/15 09:43:40.102, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.19, 63 +2026-05-15T09:43:45+08:00 +2026/05/15 09:43:45.129, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.67, 64 +2026-05-15T09:43:50+08:00 +2026/05/15 09:43:50.152, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.43, 64 +2026-05-15T09:43:55+08:00 +2026/05/15 09:43:55.179, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.54, 64 +2026-05-15T09:44:00+08:00 +2026/05/15 09:44:00.202, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.76, 62 +2026-05-15T09:44:05+08:00 +2026/05/15 09:44:05.225, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.20, 62 +2026-05-15T09:44:10+08:00 +2026/05/15 09:44:10.249, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.62, 63 +2026-05-15T09:44:15+08:00 +2026/05/15 09:44:15.275, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.19, 63 +2026-05-15T09:44:20+08:00 +2026/05/15 09:44:20.300, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.50, 63 +2026-05-15T09:44:25+08:00 +2026/05/15 09:44:25.341, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.87, 63 +2026-05-15T09:44:30+08:00 +2026/05/15 09:44:30.383, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.77, 64 +2026-05-15T09:44:35+08:00 +2026/05/15 09:44:35.423, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.67, 63 +2026-05-15T09:44:40+08:00 +2026/05/15 09:44:40.446, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 360.73, 64 +2026-05-15T09:44:45+08:00 +2026/05/15 09:44:45.487, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.46, 63 +2026-05-15T09:44:50+08:00 +2026/05/15 09:44:50.511, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.28, 63 +2026-05-15T09:44:55+08:00 +2026/05/15 09:44:55.552, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.76, 64 +2026-05-15T09:45:00+08:00 +2026/05/15 09:45:00.578, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.41, 64 +2026-05-15T09:45:05+08:00 +2026/05/15 09:45:05.647, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.03, 63 +2026-05-15T09:45:10+08:00 +2026/05/15 09:45:10.671, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.85, 64 +2026-05-15T09:45:15+08:00 +2026/05/15 09:45:15.711, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.38, 62 +2026-05-15T09:45:20+08:00 +2026/05/15 09:45:20.752, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.92, 63 +2026-05-15T09:45:25+08:00 +2026/05/15 09:45:25.793, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.46, 63 +2026-05-15T09:45:30+08:00 +2026/05/15 09:45:30.820, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.85, 64 +2026-05-15T09:45:35+08:00 +2026/05/15 09:45:35.842, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.18, 63 +2026-05-15T09:45:40+08:00 +2026/05/15 09:45:40.884, NVIDIA GeForce RTX 5090, 2, 1, 9607, 32607, 257.18, 63 +2026-05-15T09:45:45+08:00 +2026/05/15 09:45:45.908, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.13, 64 +2026-05-15T09:45:50+08:00 +2026/05/15 09:45:50.931, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.54, 63 +2026-05-15T09:45:55+08:00 +2026/05/15 09:45:55.954, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.96, 63 +2026-05-15T09:46:00+08:00 +2026/05/15 09:46:00.977, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.65, 64 +2026-05-15T09:46:05+08:00 +2026/05/15 09:46:06.001, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.53, 63 +2026-05-15T09:46:11+08:00 +2026/05/15 09:46:11.024, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.86, 63 +2026-05-15T09:46:16+08:00 +2026/05/15 09:46:16.066, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.20, 63 +2026-05-15T09:46:21+08:00 +2026/05/15 09:46:21.090, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.55, 63 +2026-05-15T09:46:26+08:00 +2026/05/15 09:46:26.113, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.46, 62 +2026-05-15T09:46:31+08:00 +2026/05/15 09:46:31.138, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.26, 63 +2026-05-15T09:46:36+08:00 +2026/05/15 09:46:36.162, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 195.17, 62 +2026-05-15T09:46:41+08:00 +2026/05/15 09:46:41.190, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.68, 62 +2026-05-15T09:46:46+08:00 +2026/05/15 09:46:46.215, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.53, 64 +2026-05-15T09:46:51+08:00 +2026/05/15 09:46:51.245, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.76, 64 +2026-05-15T09:46:56+08:00 +2026/05/15 09:46:56.267, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.96, 63 +2026-05-15T09:47:01+08:00 +2026/05/15 09:47:01.293, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.96, 63 +2026-05-15T09:47:06+08:00 +2026/05/15 09:47:06.320, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.03, 64 +2026-05-15T09:47:11+08:00 +2026/05/15 09:47:11.344, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.18, 64 +2026-05-15T09:47:16+08:00 +2026/05/15 09:47:16.368, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.68, 64 +2026-05-15T09:47:21+08:00 +2026/05/15 09:47:21.394, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.40, 63 +2026-05-15T09:47:26+08:00 +2026/05/15 09:47:26.418, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 361.38, 64 +2026-05-15T09:47:31+08:00 +2026/05/15 09:47:31.440, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.48, 62 +2026-05-15T09:47:36+08:00 +2026/05/15 09:47:36.465, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.62, 63 +2026-05-15T09:47:41+08:00 +2026/05/15 09:47:41.490, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.12, 62 +2026-05-15T09:47:46+08:00 +2026/05/15 09:47:46.516, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.30, 63 +2026-05-15T09:47:51+08:00 +2026/05/15 09:47:51.539, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.39, 62 +2026-05-15T09:47:56+08:00 +2026/05/15 09:47:56.565, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.64, 62 +2026-05-15T09:48:01+08:00 +2026/05/15 09:48:01.588, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 356.28, 64 +2026-05-15T09:48:06+08:00 +2026/05/15 09:48:06.612, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.00, 63 +2026-05-15T09:48:11+08:00 +2026/05/15 09:48:11.635, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 356.27, 64 +2026-05-15T09:48:16+08:00 +2026/05/15 09:48:16.659, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 358.18, 63 +2026-05-15T09:48:21+08:00 +2026/05/15 09:48:21.683, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 356.51, 64 +2026-05-15T09:48:26+08:00 +2026/05/15 09:48:26.707, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.35, 62 +2026-05-15T09:48:31+08:00 +2026/05/15 09:48:31.730, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 356.10, 63 +2026-05-15T09:48:36+08:00 +2026/05/15 09:48:36.754, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.07, 63 +2026-05-15T09:48:41+08:00 +2026/05/15 09:48:41.779, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.29, 63 +2026-05-15T09:48:46+08:00 +2026/05/15 09:48:46.801, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 358.11, 63 +2026-05-15T09:48:51+08:00 +2026/05/15 09:48:51.825, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.49, 63 +2026-05-15T09:48:56+08:00 +2026/05/15 09:48:56.849, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 357.85, 64 +2026-05-15T09:49:01+08:00 +2026/05/15 09:49:01.873, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 356.97, 62 +2026-05-15T09:49:06+08:00 +2026/05/15 09:49:06.897, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 358.34, 63 +2026-05-15T09:49:11+08:00 +2026/05/15 09:49:11.920, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 358.64, 63 +2026-05-15T09:49:16+08:00 +2026/05/15 09:49:16.945, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 355.86, 62 +2026-05-15T09:49:21+08:00 +2026/05/15 09:49:21.969, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 357.11, 64 +2026-05-15T09:49:26+08:00 +2026/05/15 09:49:26.992, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 356.78, 63 +2026-05-15T09:49:32+08:00 +2026/05/15 09:49:32.017, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 357.31, 63 +2026-05-15T09:49:37+08:00 +2026/05/15 09:49:37.044, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.27, 62 +2026-05-15T09:49:42+08:00 +2026/05/15 09:49:42.073, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.26, 64 +2026-05-15T09:49:47+08:00 +2026/05/15 09:49:47.096, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.48, 65 +2026-05-15T09:49:52+08:00 +2026/05/15 09:49:52.119, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.14, 63 +2026-05-15T09:49:57+08:00 +2026/05/15 09:49:57.145, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 355.02, 64 +2026-05-15T09:50:02+08:00 +2026/05/15 09:50:02.168, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.66, 63 +2026-05-15T09:50:07+08:00 +2026/05/15 09:50:07.191, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 285.13, 57 +2026-05-15T09:50:12+08:00 +2026/05/15 09:50:12.214, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.89, 63 +2026-05-15T09:50:17+08:00 +2026/05/15 09:50:17.238, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.89, 63 +2026-05-15T09:50:22+08:00 +2026/05/15 09:50:22.260, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.24, 64 +2026-05-15T09:50:27+08:00 +2026/05/15 09:50:27.284, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.03, 64 +2026-05-15T09:50:32+08:00 +2026/05/15 09:50:32.307, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.36, 63 +2026-05-15T09:50:37+08:00 +2026/05/15 09:50:37.330, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.99, 63 +2026-05-15T09:50:42+08:00 +2026/05/15 09:50:42.353, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.01, 63 +2026-05-15T09:50:47+08:00 +2026/05/15 09:50:47.379, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 257.87, 63 +2026-05-15T09:50:52+08:00 +2026/05/15 09:50:52.408, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.94, 64 +2026-05-15T09:50:57+08:00 +2026/05/15 09:50:57.431, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 358.72, 63 +2026-05-15T09:51:02+08:00 +2026/05/15 09:51:02.454, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.06, 63 +2026-05-15T09:51:07+08:00 +2026/05/15 09:51:07.478, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.03, 64 +2026-05-15T09:51:12+08:00 +2026/05/15 09:51:12.503, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.26, 64 +2026-05-15T09:51:17+08:00 +2026/05/15 09:51:17.546, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.98, 64 +2026-05-15T09:51:22+08:00 +2026/05/15 09:51:22.568, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.56, 63 +2026-05-15T09:51:27+08:00 +2026/05/15 09:51:27.612, NVIDIA GeForce RTX 5090, 2, 1, 9607, 32607, 311.40, 58 +2026-05-15T09:51:32+08:00 +2026/05/15 09:51:32.636, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.48, 62 +2026-05-15T09:51:37+08:00 +2026/05/15 09:51:37.704, NVIDIA GeForce RTX 5090, 35, 12, 9607, 32607, 192.45, 56 +2026-05-15T09:51:42+08:00 +2026/05/15 09:51:42.736, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 356.47, 62 +2026-05-15T09:51:47+08:00 +2026/05/15 09:51:47.759, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 358.55, 63 +2026-05-15T09:51:52+08:00 +2026/05/15 09:51:52.800, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 359.62, 63 +2026-05-15T09:51:57+08:00 +2026/05/15 09:51:57.824, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.86, 63 +2026-05-15T09:52:02+08:00 +2026/05/15 09:52:02.849, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.80, 62 +2026-05-15T09:52:07+08:00 +2026/05/15 09:52:07.873, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.10, 63 +2026-05-15T09:52:12+08:00 +2026/05/15 09:52:12.896, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.00, 63 +2026-05-15T09:52:17+08:00 +2026/05/15 09:52:17.923, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 357.98, 62 +2026-05-15T09:52:22+08:00 +2026/05/15 09:52:22.946, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 357.35, 62 +2026-05-15T09:52:27+08:00 +2026/05/15 09:52:27.970, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.70, 63 +2026-05-15T09:52:32+08:00 +2026/05/15 09:52:32.996, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.69, 63 +2026-05-15T09:52:38+08:00 +2026/05/15 09:52:38.020, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.57, 63 +2026-05-15T09:52:43+08:00 +2026/05/15 09:52:43.044, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.36, 63 +2026-05-15T09:52:48+08:00 +2026/05/15 09:52:48.067, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.22, 63 +2026-05-15T09:52:53+08:00 +2026/05/15 09:52:53.093, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.72, 63 +2026-05-15T09:52:58+08:00 +2026/05/15 09:52:58.115, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 275.09, 62 +2026-05-15T09:53:03+08:00 +2026/05/15 09:53:03.161, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.10, 63 +2026-05-15T09:53:08+08:00 +2026/05/15 09:53:08.211, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.23, 63 +2026-05-15T09:53:13+08:00 +2026/05/15 09:53:13.234, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.60, 65 +2026-05-15T09:53:18+08:00 +2026/05/15 09:53:18.310, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.07, 63 +2026-05-15T09:53:23+08:00 +2026/05/15 09:53:23.334, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.33, 64 +2026-05-15T09:53:28+08:00 +2026/05/15 09:53:28.362, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.12, 63 +2026-05-15T09:53:33+08:00 +2026/05/15 09:53:33.385, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.39, 63 +2026-05-15T09:53:38+08:00 +2026/05/15 09:53:38.412, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.94, 62 +2026-05-15T09:53:43+08:00 +2026/05/15 09:53:43.435, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.61, 63 +2026-05-15T09:53:48+08:00 +2026/05/15 09:53:48.457, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.65, 63 +2026-05-15T09:53:53+08:00 +2026/05/15 09:53:53.482, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 361.17, 64 +2026-05-15T09:53:58+08:00 +2026/05/15 09:53:58.506, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 360.34, 63 +2026-05-15T09:54:03+08:00 +2026/05/15 09:54:03.536, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.52, 64 +2026-05-15T09:54:08+08:00 +2026/05/15 09:54:08.561, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.24, 62 +2026-05-15T09:54:13+08:00 +2026/05/15 09:54:13.585, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.66, 63 +2026-05-15T09:54:18+08:00 +2026/05/15 09:54:18.608, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.27, 62 +2026-05-15T09:54:23+08:00 +2026/05/15 09:54:23.632, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.00, 63 +2026-05-15T09:54:28+08:00 +2026/05/15 09:54:28.660, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.93, 64 +2026-05-15T09:54:33+08:00 +2026/05/15 09:54:33.684, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 359.43, 65 +2026-05-15T09:54:38+08:00 +2026/05/15 09:54:38.710, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 240.78, 63 +2026-05-15T09:54:43+08:00 +2026/05/15 09:54:43.733, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.33, 64 +2026-05-15T09:54:48+08:00 +2026/05/15 09:54:48.757, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 358.01, 63 +2026-05-15T09:54:53+08:00 +2026/05/15 09:54:53.783, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 357.47, 62 +2026-05-15T09:54:58+08:00 +2026/05/15 09:54:58.808, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.20, 64 +2026-05-15T09:55:03+08:00 +2026/05/15 09:55:03.833, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.27, 64 +2026-05-15T09:55:08+08:00 +2026/05/15 09:55:08.859, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.45, 63 +2026-05-15T09:55:13+08:00 +2026/05/15 09:55:13.885, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 358.79, 64 +2026-05-15T09:55:18+08:00 +2026/05/15 09:55:18.914, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 357.72, 63 +2026-05-15T09:55:23+08:00 +2026/05/15 09:55:23.936, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.90, 63 +2026-05-15T09:55:28+08:00 +2026/05/15 09:55:28.960, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.24, 63 +2026-05-15T09:55:33+08:00 +2026/05/15 09:55:33.983, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.57, 63 +2026-05-15T09:55:38+08:00 +2026/05/15 09:55:39.007, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.99, 63 +2026-05-15T09:55:44+08:00 +2026/05/15 09:55:44.034, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.60, 64 +2026-05-15T09:55:49+08:00 +2026/05/15 09:55:49.057, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.26, 64 +2026-05-15T09:55:54+08:00 +2026/05/15 09:55:54.082, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 284.15, 63 +2026-05-15T09:55:59+08:00 +2026/05/15 09:55:59.106, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.22, 62 +2026-05-15T09:56:04+08:00 +2026/05/15 09:56:04.131, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.39, 62 +2026-05-15T09:56:09+08:00 +2026/05/15 09:56:09.156, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.23, 62 +2026-05-15T09:56:14+08:00 +2026/05/15 09:56:14.231, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.36, 64 +2026-05-15T09:56:19+08:00 +2026/05/15 09:56:19.255, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.91, 63 +2026-05-15T09:56:24+08:00 +2026/05/15 09:56:24.328, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.36, 63 +2026-05-15T09:56:29+08:00 +2026/05/15 09:56:29.351, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.11, 63 +2026-05-15T09:56:34+08:00 +2026/05/15 09:56:34.391, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 360.61, 63 +2026-05-15T09:56:39+08:00 +2026/05/15 09:56:39.458, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.20, 64 +2026-05-15T09:56:44+08:00 +2026/05/15 09:56:44.483, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.95, 64 +2026-05-15T09:56:49+08:00 +2026/05/15 09:56:49.555, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.11, 63 +2026-05-15T09:56:54+08:00 +2026/05/15 09:56:54.578, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.82, 64 +2026-05-15T09:56:59+08:00 +2026/05/15 09:56:59.601, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.65, 63 +2026-05-15T09:57:04+08:00 +2026/05/15 09:57:04.626, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.88, 63 +2026-05-15T09:57:09+08:00 +2026/05/15 09:57:09.650, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.66, 64 +2026-05-15T09:57:14+08:00 +2026/05/15 09:57:14.674, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.64, 62 +2026-05-15T09:57:19+08:00 +2026/05/15 09:57:19.717, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.24, 64 +2026-05-15T09:57:24+08:00 +2026/05/15 09:57:24.741, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 359.95, 63 +2026-05-15T09:57:29+08:00 +2026/05/15 09:57:29.765, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.41, 64 +2026-05-15T09:57:34+08:00 +2026/05/15 09:57:34.789, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 359.00, 63 +2026-05-15T09:57:39+08:00 +2026/05/15 09:57:39.813, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.88, 63 +2026-05-15T09:57:44+08:00 +2026/05/15 09:57:44.837, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.39, 62 +2026-05-15T09:57:49+08:00 +2026/05/15 09:57:49.861, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 254.84, 63 +2026-05-15T09:57:54+08:00 +2026/05/15 09:57:54.885, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.39, 63 +2026-05-15T09:57:59+08:00 +2026/05/15 09:57:59.910, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.53, 64 +2026-05-15T09:58:04+08:00 +2026/05/15 09:58:04.935, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.27, 64 +2026-05-15T09:58:09+08:00 +2026/05/15 09:58:09.958, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.96, 64 +2026-05-15T09:58:14+08:00 +2026/05/15 09:58:14.983, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.42, 64 +2026-05-15T09:58:19+08:00 +2026/05/15 09:58:20.007, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.13, 62 +2026-05-15T09:58:25+08:00 +2026/05/15 09:58:25.030, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 359.90, 63 +2026-05-15T09:58:30+08:00 +2026/05/15 09:58:30.054, NVIDIA GeForce RTX 5090, 81, 36, 9607, 32607, 291.99, 63 +2026-05-15T09:58:35+08:00 +2026/05/15 09:58:35.078, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.25, 63 +2026-05-15T09:58:40+08:00 +2026/05/15 09:58:40.102, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.88, 64 +2026-05-15T09:58:45+08:00 +2026/05/15 09:58:45.124, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.29, 63 +2026-05-15T09:58:50+08:00 +2026/05/15 09:58:50.150, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.45, 63 +2026-05-15T09:58:55+08:00 +2026/05/15 09:58:55.177, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.74, 64 +2026-05-15T09:59:00+08:00 +2026/05/15 09:59:00.200, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.85, 64 +2026-05-15T09:59:05+08:00 +2026/05/15 09:59:05.232, NVIDIA GeForce RTX 5090, 88, 39, 9607, 32607, 361.15, 64 +2026-05-15T09:59:10+08:00 +2026/05/15 09:59:10.254, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.14, 64 +2026-05-15T09:59:15+08:00 +2026/05/15 09:59:15.279, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.29, 62 +2026-05-15T09:59:20+08:00 +2026/05/15 09:59:20.305, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.72, 63 +2026-05-15T09:59:25+08:00 +2026/05/15 09:59:25.328, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.81, 63 +2026-05-15T09:59:30+08:00 +2026/05/15 09:59:30.351, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.24, 63 +2026-05-15T09:59:35+08:00 +2026/05/15 09:59:35.378, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.38, 63 +2026-05-15T09:59:40+08:00 +2026/05/15 09:59:40.401, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.67, 63 +2026-05-15T09:59:45+08:00 +2026/05/15 09:59:45.427, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.54, 63 +2026-05-15T09:59:50+08:00 +2026/05/15 09:59:50.450, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 305.20, 62 +2026-05-15T09:59:55+08:00 +2026/05/15 09:59:55.473, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.52, 62 +2026-05-15T10:00:00+08:00 +2026/05/15 10:00:00.495, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.02, 62 +2026-05-15T10:00:05+08:00 +2026/05/15 10:00:05.519, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.93, 62 +2026-05-15T10:00:10+08:00 +2026/05/15 10:00:10.543, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.98, 62 +2026-05-15T10:00:15+08:00 +2026/05/15 10:00:15.567, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.64, 62 +2026-05-15T10:00:20+08:00 +2026/05/15 10:00:20.594, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 357.63, 63 +2026-05-15T10:00:25+08:00 +2026/05/15 10:00:25.618, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.31, 63 +2026-05-15T10:00:30+08:00 +2026/05/15 10:00:30.642, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.53, 63 +2026-05-15T10:00:35+08:00 +2026/05/15 10:00:35.672, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.61, 63 +2026-05-15T10:00:40+08:00 +2026/05/15 10:00:40.695, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.57, 63 +2026-05-15T10:00:45+08:00 +2026/05/15 10:00:45.720, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.73, 63 +2026-05-15T10:00:50+08:00 +2026/05/15 10:00:50.743, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 349.85, 64 +2026-05-15T10:00:55+08:00 +2026/05/15 10:00:55.768, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.36, 64 +2026-05-15T10:01:00+08:00 +2026/05/15 10:01:00.794, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 274.16, 62 +2026-05-15T10:01:05+08:00 +2026/05/15 10:01:05.816, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 357.63, 64 +2026-05-15T10:01:10+08:00 +2026/05/15 10:01:10.841, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.42, 62 +2026-05-15T10:01:15+08:00 +2026/05/15 10:01:15.865, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.45, 63 +2026-05-15T10:01:20+08:00 +2026/05/15 10:01:20.888, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 357.70, 64 +2026-05-15T10:01:25+08:00 +2026/05/15 10:01:25.915, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.61, 64 +2026-05-15T10:01:30+08:00 +2026/05/15 10:01:30.943, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 358.58, 63 +2026-05-15T10:01:35+08:00 +2026/05/15 10:01:35.970, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 357.42, 63 +2026-05-15T10:01:40+08:00 +2026/05/15 10:01:40.994, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.62, 63 +2026-05-15T10:01:46+08:00 +2026/05/15 10:01:46.017, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 354.54, 63 +2026-05-15T10:01:51+08:00 +2026/05/15 10:01:51.040, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 358.68, 64 +2026-05-15T10:01:56+08:00 +2026/05/15 10:01:56.066, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.12, 64 +2026-05-15T10:02:01+08:00 +2026/05/15 10:02:01.089, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.26, 63 +2026-05-15T10:02:06+08:00 +2026/05/15 10:02:06.117, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 360.05, 64 +2026-05-15T10:02:11+08:00 +2026/05/15 10:02:11.149, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 360.48, 64 +2026-05-15T10:02:16+08:00 +2026/05/15 10:02:16.174, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.29, 63 +2026-05-15T10:02:21+08:00 +2026/05/15 10:02:21.216, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.22, 63 +2026-05-15T10:02:26+08:00 +2026/05/15 10:02:26.239, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.04, 64 +2026-05-15T10:02:31+08:00 +2026/05/15 10:02:31.262, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.08, 64 +2026-05-15T10:02:36+08:00 +2026/05/15 10:02:36.286, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.24, 63 +2026-05-15T10:02:41+08:00 +2026/05/15 10:02:41.311, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.09, 63 +2026-05-15T10:02:46+08:00 +2026/05/15 10:02:46.341, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.52, 63 +2026-05-15T10:02:51+08:00 +2026/05/15 10:02:51.364, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.60, 63 +2026-05-15T10:02:56+08:00 +2026/05/15 10:02:56.387, NVIDIA GeForce RTX 5090, 5, 2, 9607, 32607, 295.78, 58 +2026-05-15T10:03:01+08:00 +2026/05/15 10:03:01.411, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 360.07, 63 +2026-05-15T10:03:06+08:00 +2026/05/15 10:03:06.437, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 359.84, 63 +2026-05-15T10:03:11+08:00 +2026/05/15 10:03:11.459, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 360.10, 63 +2026-05-15T10:03:16+08:00 +2026/05/15 10:03:16.483, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 361.31, 63 +2026-05-15T10:03:21+08:00 +2026/05/15 10:03:21.507, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 361.17, 63 +2026-05-15T10:03:26+08:00 +2026/05/15 10:03:26.532, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 360.36, 63 +2026-05-15T10:03:31+08:00 +2026/05/15 10:03:31.556, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.69, 64 +2026-05-15T10:03:36+08:00 +2026/05/15 10:03:36.580, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 358.18, 63 +2026-05-15T10:03:41+08:00 +2026/05/15 10:03:41.603, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 275.15, 57 +2026-05-15T10:03:46+08:00 +2026/05/15 10:03:46.626, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 357.97, 63 +2026-05-15T10:03:51+08:00 +2026/05/15 10:03:51.651, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.27, 63 +2026-05-15T10:03:56+08:00 +2026/05/15 10:03:56.673, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.24, 62 +2026-05-15T10:04:01+08:00 +2026/05/15 10:04:01.700, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 358.76, 63 +2026-05-15T10:04:06+08:00 +2026/05/15 10:04:06.723, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.14, 64 +2026-05-15T10:04:11+08:00 +2026/05/15 10:04:11.749, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.74, 64 +2026-05-15T10:04:16+08:00 +2026/05/15 10:04:16.772, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.38, 63 +2026-05-15T10:04:21+08:00 +2026/05/15 10:04:21.804, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 359.76, 63 +2026-05-15T10:04:26+08:00 +2026/05/15 10:04:26.826, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.70, 63 +2026-05-15T10:04:31+08:00 +2026/05/15 10:04:31.850, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.01, 64 +2026-05-15T10:04:36+08:00 +2026/05/15 10:04:36.874, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.09, 64 +2026-05-15T10:04:41+08:00 +2026/05/15 10:04:41.897, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.18, 64 +2026-05-15T10:04:46+08:00 +2026/05/15 10:04:46.923, NVIDIA GeForce RTX 5090, 49, 25, 9607, 32607, 228.93, 63 +2026-05-15T10:04:51+08:00 +2026/05/15 10:04:51.948, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.34, 62 +2026-05-15T10:04:56+08:00 +2026/05/15 10:04:56.971, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.68, 63 +2026-05-15T10:05:01+08:00 +2026/05/15 10:05:01.995, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.54, 63 +2026-05-15T10:05:07+08:00 +2026/05/15 10:05:07.019, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 360.25, 64 +2026-05-15T10:05:12+08:00 +2026/05/15 10:05:12.042, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.72, 62 +2026-05-15T10:05:17+08:00 +2026/05/15 10:05:17.068, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.26, 63 +2026-05-15T10:05:22+08:00 +2026/05/15 10:05:22.091, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 361.69, 63 +2026-05-15T10:05:27+08:00 +2026/05/15 10:05:27.114, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.59, 63 +2026-05-15T10:05:32+08:00 +2026/05/15 10:05:32.137, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 357.49, 63 +2026-05-15T10:05:37+08:00 +2026/05/15 10:05:37.160, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 357.65, 64 +2026-05-15T10:05:42+08:00 +2026/05/15 10:05:42.184, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.02, 63 +2026-05-15T10:05:47+08:00 +2026/05/15 10:05:47.209, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.32, 63 +2026-05-15T10:05:52+08:00 +2026/05/15 10:05:52.233, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.25, 63 +2026-05-15T10:05:57+08:00 +2026/05/15 10:05:57.255, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.68, 63 +2026-05-15T10:06:02+08:00 +2026/05/15 10:06:02.279, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 358.73, 62 +2026-05-15T10:06:07+08:00 +2026/05/15 10:06:07.300, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 291.05, 63 +2026-05-15T10:06:12+08:00 +2026/05/15 10:06:12.323, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 270.00, 57 +2026-05-15T10:06:17+08:00 +2026/05/15 10:06:17.346, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 357.99, 64 +2026-05-15T10:06:22+08:00 +2026/05/15 10:06:22.373, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 356.82, 62 +2026-05-15T10:06:27+08:00 +2026/05/15 10:06:27.397, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.31, 64 +2026-05-15T10:06:32+08:00 +2026/05/15 10:06:32.422, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.72, 64 +2026-05-15T10:06:37+08:00 +2026/05/15 10:06:37.447, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.68, 63 +2026-05-15T10:06:42+08:00 +2026/05/15 10:06:42.471, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 358.43, 62 +2026-05-15T10:06:47+08:00 +2026/05/15 10:06:47.495, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 261.20, 63 +2026-05-15T10:06:52+08:00 +2026/05/15 10:06:52.518, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.66, 63 +2026-05-15T10:06:57+08:00 +2026/05/15 10:06:57.542, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.84, 63 +2026-05-15T10:07:02+08:00 +2026/05/15 10:07:02.566, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 361.61, 63 +2026-05-15T10:07:07+08:00 +2026/05/15 10:07:07.592, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.24, 64 +2026-05-15T10:07:12+08:00 +2026/05/15 10:07:12.616, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.82, 63 +2026-05-15T10:07:17+08:00 +2026/05/15 10:07:17.639, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 358.95, 62 +2026-05-15T10:07:22+08:00 +2026/05/15 10:07:22.663, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.88, 62 +2026-05-15T10:07:27+08:00 +2026/05/15 10:07:27.686, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 263.76, 63 +2026-05-15T10:07:32+08:00 +2026/05/15 10:07:32.709, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.81, 64 +2026-05-15T10:07:37+08:00 +2026/05/15 10:07:37.732, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.63, 64 +2026-05-15T10:07:42+08:00 +2026/05/15 10:07:42.758, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 359.49, 63 +2026-05-15T10:07:47+08:00 +2026/05/15 10:07:47.780, NVIDIA GeForce RTX 5090, 60, 28, 9607, 32607, 354.01, 63 +2026-05-15T10:07:52+08:00 +2026/05/15 10:07:52.800, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 359.55, 64 +2026-05-15T10:07:57+08:00 +2026/05/15 10:07:57.843, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.59, 63 +2026-05-15T10:08:02+08:00 +2026/05/15 10:08:02.864, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 359.63, 63 +2026-05-15T10:08:07+08:00 +2026/05/15 10:08:07.885, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.43, 63 +2026-05-15T10:08:12+08:00 +2026/05/15 10:08:12.930, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.45, 62 +2026-05-15T10:08:17+08:00 +2026/05/15 10:08:17.954, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.84, 64 +2026-05-15T10:08:22+08:00 +2026/05/15 10:08:22.977, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.95, 63 +2026-05-15T10:08:28+08:00 +2026/05/15 10:08:28.018, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.74, 64 +2026-05-15T10:08:33+08:00 +2026/05/15 10:08:33.061, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.34, 64 +2026-05-15T10:08:38+08:00 +2026/05/15 10:08:38.084, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.60, 63 +2026-05-15T10:08:43+08:00 +2026/05/15 10:08:43.126, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.37, 63 +2026-05-15T10:08:48+08:00 +2026/05/15 10:08:48.165, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.15, 64 +2026-05-15T10:08:53+08:00 +2026/05/15 10:08:53.191, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 360.92, 63 +2026-05-15T10:08:58+08:00 +2026/05/15 10:08:58.214, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.43, 63 +2026-05-15T10:09:03+08:00 +2026/05/15 10:09:03.291, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.36, 63 +2026-05-15T10:09:08+08:00 +2026/05/15 10:09:08.314, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 359.96, 63 +2026-05-15T10:09:13+08:00 +2026/05/15 10:09:13.340, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 360.02, 64 +2026-05-15T10:09:18+08:00 +2026/05/15 10:09:18.363, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 360.39, 63 +2026-05-15T10:09:23+08:00 +2026/05/15 10:09:23.387, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.47, 62 +2026-05-15T10:09:28+08:00 +2026/05/15 10:09:28.412, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.79, 62 +2026-05-15T10:09:33+08:00 +2026/05/15 10:09:33.435, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.52, 62 +2026-05-15T10:09:38+08:00 +2026/05/15 10:09:38.459, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.67, 63 +2026-05-15T10:09:43+08:00 +2026/05/15 10:09:43.481, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.32, 63 +2026-05-15T10:09:48+08:00 +2026/05/15 10:09:48.510, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.79, 64 +2026-05-15T10:09:53+08:00 +2026/05/15 10:09:53.534, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.52, 63 +2026-05-15T10:09:58+08:00 +2026/05/15 10:09:58.558, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 360.37, 64 +2026-05-15T10:10:03+08:00 +2026/05/15 10:10:03.581, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.57, 63 +2026-05-15T10:10:08+08:00 +2026/05/15 10:10:08.607, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.39, 63 +2026-05-15T10:10:13+08:00 +2026/05/15 10:10:13.633, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.09, 63 +2026-05-15T10:10:18+08:00 +2026/05/15 10:10:18.657, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.59, 63 +2026-05-15T10:10:23+08:00 +2026/05/15 10:10:23.680, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.45, 63 +2026-05-15T10:10:28+08:00 +2026/05/15 10:10:28.704, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.64, 64 +2026-05-15T10:10:33+08:00 +2026/05/15 10:10:33.727, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.50, 64 +2026-05-15T10:10:38+08:00 +2026/05/15 10:10:38.752, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.08, 64 +2026-05-15T10:10:43+08:00 +2026/05/15 10:10:43.777, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.46, 63 +2026-05-15T10:10:48+08:00 +2026/05/15 10:10:48.800, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.72, 63 +2026-05-15T10:10:53+08:00 +2026/05/15 10:10:53.824, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.09, 63 +2026-05-15T10:10:58+08:00 +2026/05/15 10:10:58.853, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.32, 64 +2026-05-15T10:11:03+08:00 +2026/05/15 10:11:03.877, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.35, 64 +2026-05-15T10:11:08+08:00 +2026/05/15 10:11:08.901, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.38, 63 +2026-05-15T10:11:13+08:00 +2026/05/15 10:11:13.924, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.21, 63 +2026-05-15T10:11:18+08:00 +2026/05/15 10:11:18.949, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.22, 63 +2026-05-15T10:11:23+08:00 +2026/05/15 10:11:23.972, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.54, 62 +2026-05-15T10:11:28+08:00 +2026/05/15 10:11:28.995, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.39, 63 +2026-05-15T10:11:34+08:00 +2026/05/15 10:11:34.020, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.73, 64 +2026-05-15T10:11:39+08:00 +2026/05/15 10:11:39.045, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.42, 64 +2026-05-15T10:11:44+08:00 +2026/05/15 10:11:44.069, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.05, 64 +2026-05-15T10:11:49+08:00 +2026/05/15 10:11:49.097, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.39, 64 +2026-05-15T10:11:54+08:00 +2026/05/15 10:11:54.124, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.10, 64 +2026-05-15T10:11:59+08:00 +2026/05/15 10:11:59.148, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.31, 63 +2026-05-15T10:12:04+08:00 +2026/05/15 10:12:04.176, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.24, 63 +2026-05-15T10:12:09+08:00 +2026/05/15 10:12:09.200, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.70, 62 +2026-05-15T10:12:14+08:00 +2026/05/15 10:12:14.224, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.29, 63 +2026-05-15T10:12:19+08:00 +2026/05/15 10:12:19.246, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.46, 62 +2026-05-15T10:12:24+08:00 +2026/05/15 10:12:24.271, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.30, 62 +2026-05-15T10:12:29+08:00 +2026/05/15 10:12:29.296, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.84, 62 +2026-05-15T10:12:34+08:00 +2026/05/15 10:12:34.319, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.88, 63 +2026-05-15T10:12:39+08:00 +2026/05/15 10:12:39.343, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 279.27, 57 +2026-05-15T10:12:44+08:00 +2026/05/15 10:12:44.366, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.86, 63 +2026-05-15T10:12:49+08:00 +2026/05/15 10:12:49.389, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.01, 63 +2026-05-15T10:12:54+08:00 +2026/05/15 10:12:54.414, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.70, 63 +2026-05-15T10:12:59+08:00 +2026/05/15 10:12:59.437, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.46, 63 +2026-05-15T10:13:04+08:00 +2026/05/15 10:13:04.460, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.17, 63 +2026-05-15T10:13:09+08:00 +2026/05/15 10:13:09.486, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.96, 62 +2026-05-15T10:13:14+08:00 +2026/05/15 10:13:14.510, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.86, 62 +2026-05-15T10:13:19+08:00 +2026/05/15 10:13:19.535, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.61, 63 +2026-05-15T10:13:24+08:00 +2026/05/15 10:13:24.560, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.45, 64 +2026-05-15T10:13:29+08:00 +2026/05/15 10:13:29.583, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.83, 62 +2026-05-15T10:13:34+08:00 +2026/05/15 10:13:34.605, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.67, 63 +2026-05-15T10:13:39+08:00 +2026/05/15 10:13:39.629, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.95, 64 +2026-05-15T10:13:44+08:00 +2026/05/15 10:13:44.656, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 361.60, 63 +2026-05-15T10:13:49+08:00 +2026/05/15 10:13:49.679, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.00, 64 +2026-05-15T10:13:54+08:00 +2026/05/15 10:13:54.704, NVIDIA GeForce RTX 5090, 80, 35, 9607, 32607, 263.47, 63 +2026-05-15T10:13:59+08:00 +2026/05/15 10:13:59.728, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.01, 62 +2026-05-15T10:14:04+08:00 +2026/05/15 10:14:04.751, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.16, 63 +2026-05-15T10:14:09+08:00 +2026/05/15 10:14:09.819, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.71, 63 +2026-05-15T10:14:14+08:00 +2026/05/15 10:14:14.842, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.77, 64 +2026-05-15T10:14:19+08:00 +2026/05/15 10:14:19.891, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.01, 63 +2026-05-15T10:14:24+08:00 +2026/05/15 10:14:24.914, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.17, 64 +2026-05-15T10:14:29+08:00 +2026/05/15 10:14:29.961, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.29, 63 +2026-05-15T10:14:34+08:00 +2026/05/15 10:14:34.985, NVIDIA GeForce RTX 5090, 69, 31, 9607, 32607, 257.91, 62 +2026-05-15T10:14:40+08:00 +2026/05/15 10:14:40.028, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.41, 64 +2026-05-15T10:14:45+08:00 +2026/05/15 10:14:45.051, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.04, 64 +2026-05-15T10:14:50+08:00 +2026/05/15 10:14:50.074, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.39, 63 +2026-05-15T10:14:55+08:00 +2026/05/15 10:14:55.099, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.86, 63 +2026-05-15T10:15:00+08:00 +2026/05/15 10:15:00.123, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.48, 63 +2026-05-15T10:15:05+08:00 +2026/05/15 10:15:05.149, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.04, 64 +2026-05-15T10:15:10+08:00 +2026/05/15 10:15:10.173, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.32, 64 +2026-05-15T10:15:15+08:00 +2026/05/15 10:15:15.196, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.83, 63 +2026-05-15T10:15:20+08:00 +2026/05/15 10:15:20.220, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.73, 63 +2026-05-15T10:15:25+08:00 +2026/05/15 10:15:25.244, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.21, 63 +2026-05-15T10:15:30+08:00 +2026/05/15 10:15:30.267, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.01, 63 +2026-05-15T10:15:35+08:00 +2026/05/15 10:15:35.297, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.60, 63 +2026-05-15T10:15:40+08:00 +2026/05/15 10:15:40.321, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.54, 63 +2026-05-15T10:15:45+08:00 +2026/05/15 10:15:45.343, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.02, 64 +2026-05-15T10:15:50+08:00 +2026/05/15 10:15:50.366, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.70, 63 +2026-05-15T10:15:55+08:00 +2026/05/15 10:15:55.389, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.49, 64 +2026-05-15T10:16:00+08:00 +2026/05/15 10:16:00.418, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.87, 64 +2026-05-15T10:16:05+08:00 +2026/05/15 10:16:05.442, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.93, 63 +2026-05-15T10:16:10+08:00 +2026/05/15 10:16:10.467, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.62, 63 +2026-05-15T10:16:15+08:00 +2026/05/15 10:16:15.490, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.62, 63 +2026-05-15T10:16:20+08:00 +2026/05/15 10:16:20.517, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.79, 63 +2026-05-15T10:16:25+08:00 +2026/05/15 10:16:25.542, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.61, 63 +2026-05-15T10:16:30+08:00 +2026/05/15 10:16:30.565, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.65, 63 +2026-05-15T10:16:35+08:00 +2026/05/15 10:16:35.589, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.44, 63 +2026-05-15T10:16:40+08:00 +2026/05/15 10:16:40.613, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.61, 63 +2026-05-15T10:16:45+08:00 +2026/05/15 10:16:45.638, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.18, 63 +2026-05-15T10:16:50+08:00 +2026/05/15 10:16:50.667, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.11, 63 +2026-05-15T10:16:55+08:00 +2026/05/15 10:16:55.690, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.42, 63 +2026-05-15T10:17:00+08:00 +2026/05/15 10:17:00.721, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.23, 63 +2026-05-15T10:17:05+08:00 +2026/05/15 10:17:05.744, NVIDIA GeForce RTX 5090, 43, 22, 9607, 32607, 328.42, 58 +2026-05-15T10:17:10+08:00 +2026/05/15 10:17:10.767, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.73, 62 +2026-05-15T10:17:15+08:00 +2026/05/15 10:17:15.795, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.07, 63 +2026-05-15T10:17:20+08:00 +2026/05/15 10:17:20.819, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.07, 63 +2026-05-15T10:17:25+08:00 +2026/05/15 10:17:25.845, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 360.93, 64 +2026-05-15T10:17:30+08:00 +2026/05/15 10:17:30.869, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.77, 63 +2026-05-15T10:17:35+08:00 +2026/05/15 10:17:35.897, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.92, 63 +2026-05-15T10:17:40+08:00 +2026/05/15 10:17:40.920, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 317.64, 58 +2026-05-15T10:17:45+08:00 +2026/05/15 10:17:45.941, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.52, 63 +2026-05-15T10:17:50+08:00 +2026/05/15 10:17:50.965, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.27, 65 +2026-05-15T10:17:55+08:00 +2026/05/15 10:17:55.989, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.76, 64 +2026-05-15T10:18:00+08:00 +2026/05/15 10:18:01.013, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 360.74, 64 +2026-05-15T10:18:06+08:00 +2026/05/15 10:18:06.038, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.12, 63 +2026-05-15T10:18:11+08:00 +2026/05/15 10:18:11.062, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.59, 64 +2026-05-15T10:18:16+08:00 +2026/05/15 10:18:16.087, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.27, 64 +2026-05-15T10:18:21+08:00 +2026/05/15 10:18:21.109, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 259.34, 63 +2026-05-15T10:18:26+08:00 +2026/05/15 10:18:26.132, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 279.93, 62 +2026-05-15T10:18:31+08:00 +2026/05/15 10:18:31.156, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.72, 64 +2026-05-15T10:18:36+08:00 +2026/05/15 10:18:36.179, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.13, 64 +2026-05-15T10:18:41+08:00 +2026/05/15 10:18:41.204, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 361.43, 63 +2026-05-15T10:18:46+08:00 +2026/05/15 10:18:46.227, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.97, 62 +2026-05-15T10:18:51+08:00 +2026/05/15 10:18:51.250, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.35, 64 +2026-05-15T10:18:56+08:00 +2026/05/15 10:18:56.273, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.86, 64 +2026-05-15T10:19:01+08:00 +2026/05/15 10:19:01.298, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.77, 63 +2026-05-15T10:19:06+08:00 +2026/05/15 10:19:06.321, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.24, 64 +2026-05-15T10:19:11+08:00 +2026/05/15 10:19:11.345, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.00, 62 +2026-05-15T10:19:16+08:00 +2026/05/15 10:19:16.370, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 231.73, 57 +2026-05-15T10:19:21+08:00 +2026/05/15 10:19:21.392, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.91, 63 +2026-05-15T10:19:26+08:00 +2026/05/15 10:19:26.417, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.91, 63 +2026-05-15T10:19:31+08:00 +2026/05/15 10:19:31.442, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.74, 64 +2026-05-15T10:19:36+08:00 +2026/05/15 10:19:36.470, NVIDIA GeForce RTX 5090, 34, 11, 9607, 32607, 254.16, 57 +2026-05-15T10:19:41+08:00 +2026/05/15 10:19:41.493, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.11, 63 +2026-05-15T10:19:46+08:00 +2026/05/15 10:19:46.518, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.64, 64 +2026-05-15T10:19:51+08:00 +2026/05/15 10:19:51.543, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.62, 63 +2026-05-15T10:19:56+08:00 +2026/05/15 10:19:56.568, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 360.34, 64 +2026-05-15T10:20:01+08:00 +2026/05/15 10:20:01.593, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.41, 63 +2026-05-15T10:20:06+08:00 +2026/05/15 10:20:06.618, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.79, 63 +2026-05-15T10:20:11+08:00 +2026/05/15 10:20:11.648, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.41, 64 +2026-05-15T10:20:16+08:00 +2026/05/15 10:20:16.671, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.25, 63 +2026-05-15T10:20:21+08:00 +2026/05/15 10:20:21.695, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.38, 63 +2026-05-15T10:20:26+08:00 +2026/05/15 10:20:26.719, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.13, 63 +2026-05-15T10:20:31+08:00 +2026/05/15 10:20:31.743, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.35, 63 +2026-05-15T10:20:36+08:00 +2026/05/15 10:20:36.767, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.34, 64 +2026-05-15T10:20:41+08:00 +2026/05/15 10:20:41.790, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.86, 64 +2026-05-15T10:20:46+08:00 +2026/05/15 10:20:46.815, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.19, 64 +2026-05-15T10:20:51+08:00 +2026/05/15 10:20:51.841, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.52, 62 +2026-05-15T10:20:56+08:00 +2026/05/15 10:20:56.866, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.76, 63 +2026-05-15T10:21:01+08:00 +2026/05/15 10:21:01.890, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.76, 64 +2026-05-15T10:21:06+08:00 +2026/05/15 10:21:06.913, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.00, 64 +2026-05-15T10:21:11+08:00 +2026/05/15 10:21:11.938, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.27, 64 +2026-05-15T10:21:16+08:00 +2026/05/15 10:21:16.962, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.73, 63 +2026-05-15T10:21:21+08:00 +2026/05/15 10:21:21.987, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.22, 64 +2026-05-15T10:21:26+08:00 +2026/05/15 10:21:27.011, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.55, 64 +2026-05-15T10:21:32+08:00 +2026/05/15 10:21:32.037, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.12, 63 +2026-05-15T10:21:37+08:00 +2026/05/15 10:21:37.059, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.51, 63 +2026-05-15T10:21:42+08:00 +2026/05/15 10:21:42.084, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.48, 62 +2026-05-15T10:21:47+08:00 +2026/05/15 10:21:47.108, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.28, 62 +2026-05-15T10:21:52+08:00 +2026/05/15 10:21:52.131, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.15, 62 +2026-05-15T10:21:57+08:00 +2026/05/15 10:21:57.154, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.11, 63 +2026-05-15T10:22:02+08:00 +2026/05/15 10:22:02.179, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.61, 63 +2026-05-15T10:22:07+08:00 +2026/05/15 10:22:07.203, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 353.59, 63 +2026-05-15T10:22:12+08:00 +2026/05/15 10:22:12.225, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 359.14, 64 +2026-05-15T10:22:17+08:00 +2026/05/15 10:22:17.248, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 358.74, 64 +2026-05-15T10:22:22+08:00 +2026/05/15 10:22:22.270, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.01, 63 +2026-05-15T10:22:27+08:00 +2026/05/15 10:22:27.294, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.99, 63 +2026-05-15T10:22:32+08:00 +2026/05/15 10:22:32.335, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.80, 63 +2026-05-15T10:22:37+08:00 +2026/05/15 10:22:37.357, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.64, 63 +2026-05-15T10:22:42+08:00 +2026/05/15 10:22:42.402, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.70, 63 +2026-05-15T10:22:47+08:00 +2026/05/15 10:22:47.445, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 252.24, 62 +2026-05-15T10:22:52+08:00 +2026/05/15 10:22:52.517, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.08, 64 +2026-05-15T10:22:57+08:00 +2026/05/15 10:22:57.542, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.22, 64 +2026-05-15T10:23:02+08:00 +2026/05/15 10:23:02.592, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.29, 64 +2026-05-15T10:23:07+08:00 +2026/05/15 10:23:07.616, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.50, 64 +2026-05-15T10:23:12+08:00 +2026/05/15 10:23:12.672, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.74, 64 +2026-05-15T10:23:17+08:00 +2026/05/15 10:23:17.710, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.64, 63 +2026-05-15T10:23:22+08:00 +2026/05/15 10:23:22.733, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.35, 63 +2026-05-15T10:23:27+08:00 +2026/05/15 10:23:27.775, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.89, 62 +2026-05-15T10:23:32+08:00 +2026/05/15 10:23:32.815, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.68, 63 +2026-05-15T10:23:37+08:00 +2026/05/15 10:23:37.843, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.28, 64 +2026-05-15T10:23:42+08:00 +2026/05/15 10:23:42.867, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.14, 64 +2026-05-15T10:23:47+08:00 +2026/05/15 10:23:47.890, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.21, 63 +2026-05-15T10:23:52+08:00 +2026/05/15 10:23:52.915, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.66, 63 +2026-05-15T10:23:57+08:00 +2026/05/15 10:23:57.941, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.56, 63 +2026-05-15T10:24:02+08:00 +2026/05/15 10:24:02.970, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.27, 63 +2026-05-15T10:24:07+08:00 +2026/05/15 10:24:07.993, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.70, 63 +2026-05-15T10:24:13+08:00 +2026/05/15 10:24:13.025, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.75, 63 +2026-05-15T10:24:18+08:00 +2026/05/15 10:24:18.048, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.18, 63 +2026-05-15T10:24:23+08:00 +2026/05/15 10:24:23.073, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.69, 64 +2026-05-15T10:24:28+08:00 +2026/05/15 10:24:28.095, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.83, 63 +2026-05-15T10:24:33+08:00 +2026/05/15 10:24:33.120, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.81, 63 +2026-05-15T10:24:38+08:00 +2026/05/15 10:24:38.147, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.70, 64 +2026-05-15T10:24:43+08:00 +2026/05/15 10:24:43.168, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.37, 63 +2026-05-15T10:24:48+08:00 +2026/05/15 10:24:48.191, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.37, 63 +2026-05-15T10:24:53+08:00 +2026/05/15 10:24:53.215, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.10, 63 +2026-05-15T10:24:58+08:00 +2026/05/15 10:24:58.238, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.24, 63 +2026-05-15T10:25:03+08:00 +2026/05/15 10:25:03.263, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.73, 64 +2026-05-15T10:25:08+08:00 +2026/05/15 10:25:08.289, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.86, 63 +2026-05-15T10:25:13+08:00 +2026/05/15 10:25:13.317, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.46, 62 +2026-05-15T10:25:18+08:00 +2026/05/15 10:25:18.342, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 360.46, 64 +2026-05-15T10:25:23+08:00 +2026/05/15 10:25:23.366, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.02, 62 +2026-05-15T10:25:28+08:00 +2026/05/15 10:25:28.392, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.92, 63 +2026-05-15T10:25:33+08:00 +2026/05/15 10:25:33.415, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.41, 64 +2026-05-15T10:25:38+08:00 +2026/05/15 10:25:38.439, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.49, 64 +2026-05-15T10:25:43+08:00 +2026/05/15 10:25:43.464, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.16, 62 +2026-05-15T10:25:48+08:00 +2026/05/15 10:25:48.488, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.71, 63 +2026-05-15T10:25:53+08:00 +2026/05/15 10:25:53.512, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 347.15, 64 +2026-05-15T10:25:58+08:00 +2026/05/15 10:25:58.538, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.24, 62 +2026-05-15T10:26:03+08:00 +2026/05/15 10:26:03.564, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.47, 63 +2026-05-15T10:26:08+08:00 +2026/05/15 10:26:08.588, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.16, 64 +2026-05-15T10:26:13+08:00 +2026/05/15 10:26:13.612, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.27, 64 +2026-05-15T10:26:18+08:00 +2026/05/15 10:26:18.634, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.50, 62 +2026-05-15T10:26:23+08:00 +2026/05/15 10:26:23.658, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.37, 63 +2026-05-15T10:26:28+08:00 +2026/05/15 10:26:28.685, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.42, 63 +2026-05-15T10:26:33+08:00 +2026/05/15 10:26:33.713, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.28, 63 +2026-05-15T10:26:38+08:00 +2026/05/15 10:26:38.737, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.39, 63 +2026-05-15T10:26:43+08:00 +2026/05/15 10:26:43.760, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.18, 63 +2026-05-15T10:26:48+08:00 +2026/05/15 10:26:48.786, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 351.88, 64 +2026-05-15T10:26:53+08:00 +2026/05/15 10:26:53.810, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.68, 62 +2026-05-15T10:26:58+08:00 +2026/05/15 10:26:58.835, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 356.12, 62 +2026-05-15T10:27:03+08:00 +2026/05/15 10:27:03.857, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 275.15, 63 +2026-05-15T10:27:08+08:00 +2026/05/15 10:27:08.880, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.71, 63 +2026-05-15T10:27:13+08:00 +2026/05/15 10:27:13.910, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.14, 63 +2026-05-15T10:27:18+08:00 +2026/05/15 10:27:18.932, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.59, 64 +2026-05-15T10:27:23+08:00 +2026/05/15 10:27:23.955, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.79, 63 +2026-05-15T10:27:28+08:00 +2026/05/15 10:27:28.981, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.08, 64 +2026-05-15T10:27:33+08:00 +2026/05/15 10:27:34.007, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 360.58, 63 +2026-05-15T10:27:39+08:00 +2026/05/15 10:27:39.031, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.66, 63 +2026-05-15T10:27:44+08:00 +2026/05/15 10:27:44.054, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.86, 62 +2026-05-15T10:27:49+08:00 +2026/05/15 10:27:49.077, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.00, 63 +2026-05-15T10:27:54+08:00 +2026/05/15 10:27:54.101, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.66, 64 +2026-05-15T10:27:59+08:00 +2026/05/15 10:27:59.124, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.23, 64 +2026-05-15T10:28:04+08:00 +2026/05/15 10:28:04.154, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.69, 63 +2026-05-15T10:28:09+08:00 +2026/05/15 10:28:09.177, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.65, 64 +2026-05-15T10:28:14+08:00 +2026/05/15 10:28:14.201, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.26, 63 +2026-05-15T10:28:19+08:00 +2026/05/15 10:28:19.225, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.17, 62 +2026-05-15T10:28:24+08:00 +2026/05/15 10:28:24.250, NVIDIA GeForce RTX 5090, 80, 35, 9607, 32607, 256.60, 61 +2026-05-15T10:28:29+08:00 +2026/05/15 10:28:29.273, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.57, 63 +2026-05-15T10:28:34+08:00 +2026/05/15 10:28:34.296, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 331.80, 59 +2026-05-15T10:28:39+08:00 +2026/05/15 10:28:39.338, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.07, 63 +2026-05-15T10:28:44+08:00 +2026/05/15 10:28:44.380, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.11, 63 +2026-05-15T10:28:49+08:00 +2026/05/15 10:28:49.423, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.81, 63 +2026-05-15T10:28:54+08:00 +2026/05/15 10:28:54.450, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.98, 62 +2026-05-15T10:28:59+08:00 +2026/05/15 10:28:59.492, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.11, 63 +2026-05-15T10:29:04+08:00 +2026/05/15 10:29:04.543, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.19, 62 +2026-05-15T10:29:09+08:00 +2026/05/15 10:29:09.567, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.37, 64 +2026-05-15T10:29:14+08:00 +2026/05/15 10:29:14.634, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.97, 63 +2026-05-15T10:29:19+08:00 +2026/05/15 10:29:19.659, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.89, 63 +2026-05-15T10:29:24+08:00 +2026/05/15 10:29:24.683, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.97, 64 +2026-05-15T10:29:29+08:00 +2026/05/15 10:29:29.708, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 362.67, 63 +2026-05-15T10:29:34+08:00 +2026/05/15 10:29:34.734, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.52, 63 +2026-05-15T10:29:39+08:00 +2026/05/15 10:29:39.758, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.29, 63 +2026-05-15T10:29:44+08:00 +2026/05/15 10:29:44.785, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.68, 62 +2026-05-15T10:29:49+08:00 +2026/05/15 10:29:49.810, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.29, 63 +2026-05-15T10:29:54+08:00 +2026/05/15 10:29:54.833, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.16, 63 +2026-05-15T10:29:59+08:00 +2026/05/15 10:29:59.855, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.05, 64 +2026-05-15T10:30:04+08:00 +2026/05/15 10:30:04.881, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.04, 63 +2026-05-15T10:30:09+08:00 +2026/05/15 10:30:09.907, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.52, 63 +2026-05-15T10:30:14+08:00 +2026/05/15 10:30:14.933, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.62, 64 +2026-05-15T10:30:19+08:00 +2026/05/15 10:30:19.955, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.89, 63 +2026-05-15T10:30:24+08:00 +2026/05/15 10:30:24.978, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.30, 63 +2026-05-15T10:30:29+08:00 +2026/05/15 10:30:30.004, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.61, 63 +2026-05-15T10:30:35+08:00 +2026/05/15 10:30:35.031, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.93, 63 +2026-05-15T10:30:40+08:00 +2026/05/15 10:30:40.054, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.04, 63 +2026-05-15T10:30:45+08:00 +2026/05/15 10:30:45.079, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.50, 64 +2026-05-15T10:30:50+08:00 +2026/05/15 10:30:50.103, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.65, 63 +2026-05-15T10:30:55+08:00 +2026/05/15 10:30:55.129, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.77, 63 +2026-05-15T10:31:00+08:00 +2026/05/15 10:31:00.152, NVIDIA GeForce RTX 5090, 15, 13, 9607, 32607, 259.07, 62 +2026-05-15T10:31:05+08:00 +2026/05/15 10:31:05.176, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.22, 64 +2026-05-15T10:31:10+08:00 +2026/05/15 10:31:10.197, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.02, 62 +2026-05-15T10:31:15+08:00 +2026/05/15 10:31:15.222, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.79, 63 +2026-05-15T10:31:20+08:00 +2026/05/15 10:31:20.248, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.83, 63 +2026-05-15T10:31:25+08:00 +2026/05/15 10:31:25.272, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.71, 63 +2026-05-15T10:31:30+08:00 +2026/05/15 10:31:30.295, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.61, 62 +2026-05-15T10:31:35+08:00 +2026/05/15 10:31:35.319, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 360.99, 63 +2026-05-15T10:31:40+08:00 +2026/05/15 10:31:40.343, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.10, 64 +2026-05-15T10:31:45+08:00 +2026/05/15 10:31:45.368, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.37, 62 +2026-05-15T10:31:50+08:00 +2026/05/15 10:31:50.393, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.26, 64 +2026-05-15T10:31:55+08:00 +2026/05/15 10:31:55.418, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.64, 63 +2026-05-15T10:32:00+08:00 +2026/05/15 10:32:00.442, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.11, 63 +2026-05-15T10:32:05+08:00 +2026/05/15 10:32:05.466, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.48, 64 +2026-05-15T10:32:10+08:00 +2026/05/15 10:32:10.490, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.90, 64 +2026-05-15T10:32:15+08:00 +2026/05/15 10:32:15.513, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.76, 63 +2026-05-15T10:32:20+08:00 +2026/05/15 10:32:20.540, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.81, 63 +2026-05-15T10:32:25+08:00 +2026/05/15 10:32:25.566, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.53, 64 +2026-05-15T10:32:30+08:00 +2026/05/15 10:32:30.591, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.25, 64 +2026-05-15T10:32:35+08:00 +2026/05/15 10:32:35.615, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.54, 64 +2026-05-15T10:32:40+08:00 +2026/05/15 10:32:40.641, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.06, 62 +2026-05-15T10:32:45+08:00 +2026/05/15 10:32:45.665, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.38, 63 +2026-05-15T10:32:50+08:00 +2026/05/15 10:32:50.691, NVIDIA GeForce RTX 5090, 9, 3, 9607, 32607, 339.93, 59 +2026-05-15T10:32:55+08:00 +2026/05/15 10:32:55.716, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.25, 63 +2026-05-15T10:33:00+08:00 +2026/05/15 10:33:00.739, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.77, 64 +2026-05-15T10:33:05+08:00 +2026/05/15 10:33:05.764, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.79, 63 +2026-05-15T10:33:10+08:00 +2026/05/15 10:33:10.789, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.38, 64 +2026-05-15T10:33:15+08:00 +2026/05/15 10:33:15.814, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.87, 64 +2026-05-15T10:33:20+08:00 +2026/05/15 10:33:20.837, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.49, 63 +2026-05-15T10:33:25+08:00 +2026/05/15 10:33:25.861, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.42, 62 +2026-05-15T10:33:30+08:00 +2026/05/15 10:33:30.885, NVIDIA GeForce RTX 5090, 88, 39, 9607, 32607, 361.86, 64 +2026-05-15T10:33:35+08:00 +2026/05/15 10:33:35.911, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.34, 62 +2026-05-15T10:33:40+08:00 +2026/05/15 10:33:40.933, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.90, 63 +2026-05-15T10:33:45+08:00 +2026/05/15 10:33:45.956, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.62, 64 +2026-05-15T10:33:50+08:00 +2026/05/15 10:33:50.982, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.55, 64 +2026-05-15T10:33:55+08:00 +2026/05/15 10:33:56.007, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.35, 63 +2026-05-15T10:34:01+08:00 +2026/05/15 10:34:01.032, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.34, 63 +2026-05-15T10:34:06+08:00 +2026/05/15 10:34:06.061, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 272.68, 57 +2026-05-15T10:34:11+08:00 +2026/05/15 10:34:11.083, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.45, 63 +2026-05-15T10:34:16+08:00 +2026/05/15 10:34:16.107, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.81, 63 +2026-05-15T10:34:21+08:00 +2026/05/15 10:34:21.130, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.56, 63 +2026-05-15T10:34:26+08:00 +2026/05/15 10:34:26.157, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.31, 64 +2026-05-15T10:34:31+08:00 +2026/05/15 10:34:31.180, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.30, 64 +2026-05-15T10:34:36+08:00 +2026/05/15 10:34:36.213, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.46, 64 +2026-05-15T10:34:41+08:00 +2026/05/15 10:34:41.238, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.76, 64 +2026-05-15T10:34:46+08:00 +2026/05/15 10:34:46.261, NVIDIA GeForce RTX 5090, 1, 0, 9607, 32607, 235.11, 62 +2026-05-15T10:34:51+08:00 +2026/05/15 10:34:51.285, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.99, 63 +2026-05-15T10:34:56+08:00 +2026/05/15 10:34:56.318, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.80, 63 +2026-05-15T10:35:01+08:00 +2026/05/15 10:35:01.345, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.92, 63 +2026-05-15T10:35:06+08:00 +2026/05/15 10:35:06.388, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.24, 63 +2026-05-15T10:35:11+08:00 +2026/05/15 10:35:11.410, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.67, 63 +2026-05-15T10:35:16+08:00 +2026/05/15 10:35:16.440, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.73, 62 +2026-05-15T10:35:21+08:00 +2026/05/15 10:35:21.463, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 360.08, 63 +2026-05-15T10:35:26+08:00 +2026/05/15 10:35:26.486, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 357.32, 62 +2026-05-15T10:35:31+08:00 +2026/05/15 10:35:31.511, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.11, 63 +2026-05-15T10:35:36+08:00 +2026/05/15 10:35:36.535, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 356.94, 63 +2026-05-15T10:35:41+08:00 +2026/05/15 10:35:41.559, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 359.08, 64 +2026-05-15T10:35:46+08:00 +2026/05/15 10:35:46.582, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 359.84, 63 +2026-05-15T10:35:51+08:00 +2026/05/15 10:35:51.605, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.59, 63 +2026-05-15T10:35:56+08:00 +2026/05/15 10:35:56.631, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.88, 63 +2026-05-15T10:36:01+08:00 +2026/05/15 10:36:01.654, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 260.68, 63 +2026-05-15T10:36:06+08:00 +2026/05/15 10:36:06.676, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 357.47, 63 +2026-05-15T10:36:11+08:00 +2026/05/15 10:36:11.700, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.80, 63 +2026-05-15T10:36:16+08:00 +2026/05/15 10:36:16.724, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.81, 64 +2026-05-15T10:36:21+08:00 +2026/05/15 10:36:21.747, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.34, 64 +2026-05-15T10:36:26+08:00 +2026/05/15 10:36:26.773, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 359.09, 63 +2026-05-15T10:36:31+08:00 +2026/05/15 10:36:31.796, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.81, 63 +2026-05-15T10:36:36+08:00 +2026/05/15 10:36:36.820, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.57, 63 +2026-05-15T10:36:41+08:00 +2026/05/15 10:36:41.844, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 296.43, 57 +2026-05-15T10:36:46+08:00 +2026/05/15 10:36:46.866, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 357.39, 63 +2026-05-15T10:36:51+08:00 +2026/05/15 10:36:51.892, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 359.53, 63 +2026-05-15T10:36:56+08:00 +2026/05/15 10:36:56.915, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 358.98, 63 +2026-05-15T10:37:01+08:00 +2026/05/15 10:37:01.938, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.05, 63 +2026-05-15T10:37:06+08:00 +2026/05/15 10:37:06.962, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.67, 63 +2026-05-15T10:37:11+08:00 +2026/05/15 10:37:11.986, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 358.78, 63 +2026-05-15T10:37:16+08:00 +2026/05/15 10:37:17.010, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 358.31, 63 +2026-05-15T10:37:22+08:00 +2026/05/15 10:37:22.037, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.36, 63 +2026-05-15T10:37:27+08:00 +2026/05/15 10:37:27.062, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.68, 64 +2026-05-15T10:37:32+08:00 +2026/05/15 10:37:32.086, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.32, 63 +2026-05-15T10:37:37+08:00 +2026/05/15 10:37:37.111, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.83, 64 +2026-05-15T10:37:42+08:00 +2026/05/15 10:37:42.135, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.65, 64 +2026-05-15T10:37:47+08:00 +2026/05/15 10:37:47.160, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.58, 64 +2026-05-15T10:37:52+08:00 +2026/05/15 10:37:52.184, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.80, 63 +2026-05-15T10:37:57+08:00 +2026/05/15 10:37:57.209, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.65, 64 +2026-05-15T10:38:02+08:00 +2026/05/15 10:38:02.232, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.44, 64 +2026-05-15T10:38:07+08:00 +2026/05/15 10:38:07.256, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.85, 63 +2026-05-15T10:38:12+08:00 +2026/05/15 10:38:12.281, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.84, 64 +2026-05-15T10:38:17+08:00 +2026/05/15 10:38:17.304, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.93, 64 +2026-05-15T10:38:22+08:00 +2026/05/15 10:38:22.329, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.22, 64 +2026-05-15T10:38:27+08:00 +2026/05/15 10:38:27.355, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.20, 63 +2026-05-15T10:38:32+08:00 +2026/05/15 10:38:32.377, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.35, 64 +2026-05-15T10:38:37+08:00 +2026/05/15 10:38:37.398, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 274.40, 63 +2026-05-15T10:38:42+08:00 +2026/05/15 10:38:42.425, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.18, 63 +2026-05-15T10:38:47+08:00 +2026/05/15 10:38:47.449, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.19, 63 +2026-05-15T10:38:52+08:00 +2026/05/15 10:38:52.477, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 356.72, 64 +2026-05-15T10:38:57+08:00 +2026/05/15 10:38:57.502, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.63, 64 +2026-05-15T10:39:02+08:00 +2026/05/15 10:39:02.525, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.46, 64 +2026-05-15T10:39:07+08:00 +2026/05/15 10:39:07.553, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.78, 64 +2026-05-15T10:39:12+08:00 +2026/05/15 10:39:12.576, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 362.52, 63 +2026-05-15T10:39:17+08:00 +2026/05/15 10:39:17.627, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.18, 63 +2026-05-15T10:39:22+08:00 +2026/05/15 10:39:22.652, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.99, 63 +2026-05-15T10:39:27+08:00 +2026/05/15 10:39:27.692, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.48, 63 +2026-05-15T10:39:32+08:00 +2026/05/15 10:39:32.735, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.58, 63 +2026-05-15T10:39:37+08:00 +2026/05/15 10:39:37.793, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 359.11, 64 +2026-05-15T10:39:42+08:00 +2026/05/15 10:39:42.830, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.06, 63 +2026-05-15T10:39:47+08:00 +2026/05/15 10:39:47.863, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.91, 63 +2026-05-15T10:39:52+08:00 +2026/05/15 10:39:52.886, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.79, 62 +2026-05-15T10:39:57+08:00 +2026/05/15 10:39:57.911, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.66, 63 +2026-05-15T10:40:02+08:00 +2026/05/15 10:40:02.980, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.31, 63 +2026-05-15T10:40:07+08:00 +2026/05/15 10:40:08.015, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.86, 63 +2026-05-15T10:40:13+08:00 +2026/05/15 10:40:13.038, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.74, 64 +2026-05-15T10:40:18+08:00 +2026/05/15 10:40:18.080, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.52, 63 +2026-05-15T10:40:23+08:00 +2026/05/15 10:40:23.152, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.10, 63 +2026-05-15T10:40:28+08:00 +2026/05/15 10:40:28.205, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.88, 63 +2026-05-15T10:40:33+08:00 +2026/05/15 10:40:33.250, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.14, 62 +2026-05-15T10:40:38+08:00 +2026/05/15 10:40:38.274, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.29, 62 +2026-05-15T10:40:43+08:00 +2026/05/15 10:40:43.316, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.71, 64 +2026-05-15T10:40:48+08:00 +2026/05/15 10:40:48.359, NVIDIA GeForce RTX 5090, 77, 35, 9607, 32607, 357.84, 63 +2026-05-15T10:40:53+08:00 +2026/05/15 10:40:53.383, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 359.01, 63 +2026-05-15T10:40:58+08:00 +2026/05/15 10:40:58.406, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.87, 64 +2026-05-15T10:41:03+08:00 +2026/05/15 10:41:03.431, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.30, 63 +2026-05-15T10:41:08+08:00 +2026/05/15 10:41:08.455, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 307.28, 57 +2026-05-15T10:41:13+08:00 +2026/05/15 10:41:13.477, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 357.74, 64 +2026-05-15T10:41:18+08:00 +2026/05/15 10:41:18.501, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.64, 64 +2026-05-15T10:41:23+08:00 +2026/05/15 10:41:23.524, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.69, 62 +2026-05-15T10:41:28+08:00 +2026/05/15 10:41:28.548, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 357.77, 63 +2026-05-15T10:41:33+08:00 +2026/05/15 10:41:33.572, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.42, 64 +2026-05-15T10:41:38+08:00 +2026/05/15 10:41:38.596, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.43, 62 +2026-05-15T10:41:43+08:00 +2026/05/15 10:41:43.620, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 357.78, 63 +2026-05-15T10:41:48+08:00 +2026/05/15 10:41:48.647, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 252.32, 61 +2026-05-15T10:41:53+08:00 +2026/05/15 10:41:53.678, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 358.36, 63 +2026-05-15T10:41:58+08:00 +2026/05/15 10:41:58.702, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 194.12, 61 +2026-05-15T10:42:03+08:00 +2026/05/15 10:42:03.724, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.16, 62 +2026-05-15T10:42:08+08:00 +2026/05/15 10:42:08.749, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 360.10, 62 +2026-05-15T10:42:13+08:00 +2026/05/15 10:42:13.774, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 360.73, 62 +2026-05-15T10:42:18+08:00 +2026/05/15 10:42:18.797, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.77, 63 +2026-05-15T10:42:23+08:00 +2026/05/15 10:42:23.821, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.95, 63 +2026-05-15T10:42:28+08:00 +2026/05/15 10:42:28.844, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.51, 62 +2026-05-15T10:42:33+08:00 +2026/05/15 10:42:33.868, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.35, 62 +2026-05-15T10:42:38+08:00 +2026/05/15 10:42:38.892, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.39, 64 +2026-05-15T10:42:43+08:00 +2026/05/15 10:42:43.915, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 360.46, 64 +2026-05-15T10:42:48+08:00 +2026/05/15 10:42:48.939, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.68, 63 +2026-05-15T10:42:53+08:00 +2026/05/15 10:42:53.963, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 353.86, 62 +2026-05-15T10:42:58+08:00 +2026/05/15 10:42:58.987, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.38, 63 +2026-05-15T10:43:03+08:00 +2026/05/15 10:43:04.012, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 361.03, 63 +2026-05-15T10:43:09+08:00 +2026/05/15 10:43:09.040, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 264.75, 63 +2026-05-15T10:43:14+08:00 +2026/05/15 10:43:14.068, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.57, 64 +2026-05-15T10:43:19+08:00 +2026/05/15 10:43:19.092, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.14, 63 +2026-05-15T10:43:24+08:00 +2026/05/15 10:43:24.121, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.10, 63 +2026-05-15T10:43:29+08:00 +2026/05/15 10:43:29.144, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.14, 63 +2026-05-15T10:43:34+08:00 +2026/05/15 10:43:34.187, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.47, 63 +2026-05-15T10:43:39+08:00 +2026/05/15 10:43:39.211, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 360.79, 63 +2026-05-15T10:43:44+08:00 +2026/05/15 10:43:44.252, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.32, 63 +2026-05-15T10:43:49+08:00 +2026/05/15 10:43:49.279, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.83, 64 +2026-05-15T10:43:54+08:00 +2026/05/15 10:43:54.302, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.65, 64 +2026-05-15T10:43:59+08:00 +2026/05/15 10:43:59.325, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.09, 64 +2026-05-15T10:44:04+08:00 +2026/05/15 10:44:04.350, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.52, 64 +2026-05-15T10:44:09+08:00 +2026/05/15 10:44:09.375, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.63, 64 +2026-05-15T10:44:14+08:00 +2026/05/15 10:44:14.398, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.63, 64 +2026-05-15T10:44:19+08:00 +2026/05/15 10:44:19.420, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 360.69, 64 +2026-05-15T10:44:24+08:00 +2026/05/15 10:44:24.446, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.62, 64 +2026-05-15T10:44:29+08:00 +2026/05/15 10:44:29.470, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.99, 64 +2026-05-15T10:44:34+08:00 +2026/05/15 10:44:34.494, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 360.89, 63 +2026-05-15T10:44:39+08:00 +2026/05/15 10:44:39.517, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 361.31, 64 +2026-05-15T10:44:44+08:00 +2026/05/15 10:44:44.542, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 361.40, 63 +2026-05-15T10:44:49+08:00 +2026/05/15 10:44:49.565, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.10, 64 +2026-05-15T10:44:54+08:00 +2026/05/15 10:44:54.588, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.69, 64 +2026-05-15T10:44:59+08:00 +2026/05/15 10:44:59.611, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.90, 63 +2026-05-15T10:45:04+08:00 +2026/05/15 10:45:04.634, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.94, 63 +2026-05-15T10:45:09+08:00 +2026/05/15 10:45:09.661, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.35, 63 +2026-05-15T10:45:14+08:00 +2026/05/15 10:45:14.696, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.59, 64 +2026-05-15T10:45:19+08:00 +2026/05/15 10:45:19.721, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 362.09, 64 +2026-05-15T10:45:24+08:00 +2026/05/15 10:45:24.751, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.87, 63 +2026-05-15T10:45:29+08:00 +2026/05/15 10:45:29.775, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.12, 63 +2026-05-15T10:45:34+08:00 +2026/05/15 10:45:34.803, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 280.02, 57 +2026-05-15T10:45:39+08:00 +2026/05/15 10:45:39.829, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.37, 62 +2026-05-15T10:45:44+08:00 +2026/05/15 10:45:44.854, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.54, 64 +2026-05-15T10:45:49+08:00 +2026/05/15 10:45:49.878, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.46, 64 +2026-05-15T10:45:54+08:00 +2026/05/15 10:45:54.902, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.93, 63 +2026-05-15T10:45:59+08:00 +2026/05/15 10:45:59.926, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.02, 63 +2026-05-15T10:46:04+08:00 +2026/05/15 10:46:04.950, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.88, 64 +2026-05-15T10:46:09+08:00 +2026/05/15 10:46:09.974, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.77, 63 +2026-05-15T10:46:14+08:00 +2026/05/15 10:46:14.998, NVIDIA GeForce RTX 5090, 62, 22, 9607, 32607, 258.82, 63 +2026-05-15T10:46:20+08:00 +2026/05/15 10:46:20.022, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.38, 63 +2026-05-15T10:46:25+08:00 +2026/05/15 10:46:25.049, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.16, 62 +2026-05-15T10:46:30+08:00 +2026/05/15 10:46:30.072, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.56, 62 +2026-05-15T10:46:35+08:00 +2026/05/15 10:46:35.096, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.83, 65 +2026-05-15T10:46:40+08:00 +2026/05/15 10:46:40.119, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.51, 63 +2026-05-15T10:46:45+08:00 +2026/05/15 10:46:45.143, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 362.12, 64 +2026-05-15T10:46:50+08:00 +2026/05/15 10:46:50.168, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.74, 62 +2026-05-15T10:46:55+08:00 +2026/05/15 10:46:55.191, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.81, 64 +2026-05-15T10:47:00+08:00 +2026/05/15 10:47:00.217, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 358.89, 64 +2026-05-15T10:47:05+08:00 +2026/05/15 10:47:05.240, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.64, 64 +2026-05-15T10:47:10+08:00 +2026/05/15 10:47:10.264, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 359.24, 63 +2026-05-15T10:47:15+08:00 +2026/05/15 10:47:15.287, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 359.65, 63 +2026-05-15T10:47:20+08:00 +2026/05/15 10:47:20.310, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.06, 63 +2026-05-15T10:47:25+08:00 +2026/05/15 10:47:25.334, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.11, 63 +2026-05-15T10:47:30+08:00 +2026/05/15 10:47:30.360, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.03, 64 +2026-05-15T10:47:35+08:00 +2026/05/15 10:47:35.383, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.91, 63 +2026-05-15T10:47:40+08:00 +2026/05/15 10:47:40.407, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.70, 64 +2026-05-15T10:47:45+08:00 +2026/05/15 10:47:45.431, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.18, 63 +2026-05-15T10:47:50+08:00 +2026/05/15 10:47:50.455, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.14, 63 +2026-05-15T10:47:55+08:00 +2026/05/15 10:47:55.481, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.83, 63 +2026-05-15T10:48:00+08:00 +2026/05/15 10:48:00.505, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.03, 64 +2026-05-15T10:48:05+08:00 +2026/05/15 10:48:05.529, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.17, 63 +2026-05-15T10:48:10+08:00 +2026/05/15 10:48:10.554, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 304.70, 58 +2026-05-15T10:48:15+08:00 +2026/05/15 10:48:15.576, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.73, 63 +2026-05-15T10:48:20+08:00 +2026/05/15 10:48:20.599, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.07, 63 +2026-05-15T10:48:25+08:00 +2026/05/15 10:48:25.622, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.22, 63 +2026-05-15T10:48:30+08:00 +2026/05/15 10:48:30.645, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.75, 64 +2026-05-15T10:48:35+08:00 +2026/05/15 10:48:35.670, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.55, 63 +2026-05-15T10:48:40+08:00 +2026/05/15 10:48:40.693, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.51, 63 +2026-05-15T10:48:45+08:00 +2026/05/15 10:48:45.722, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 362.66, 63 +2026-05-15T10:48:50+08:00 +2026/05/15 10:48:50.746, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 258.65, 62 +2026-05-15T10:48:55+08:00 +2026/05/15 10:48:55.770, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.94, 63 +2026-05-15T10:49:00+08:00 +2026/05/15 10:49:00.793, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.26, 64 +2026-05-15T10:49:05+08:00 +2026/05/15 10:49:05.820, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.94, 64 +2026-05-15T10:49:10+08:00 +2026/05/15 10:49:10.843, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.55, 63 +2026-05-15T10:49:15+08:00 +2026/05/15 10:49:15.866, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.58, 64 +2026-05-15T10:49:20+08:00 +2026/05/15 10:49:20.890, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 362.29, 64 +2026-05-15T10:49:25+08:00 +2026/05/15 10:49:25.914, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.59, 64 +2026-05-15T10:49:30+08:00 +2026/05/15 10:49:30.938, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.74, 64 +2026-05-15T10:49:35+08:00 +2026/05/15 10:49:35.967, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.36, 63 +2026-05-15T10:49:40+08:00 +2026/05/15 10:49:40.992, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.38, 63 +2026-05-15T10:49:46+08:00 +2026/05/15 10:49:46.017, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.63, 63 +2026-05-15T10:49:51+08:00 +2026/05/15 10:49:51.040, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.28, 62 +2026-05-15T10:49:56+08:00 +2026/05/15 10:49:56.065, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.12, 64 +2026-05-15T10:50:01+08:00 +2026/05/15 10:50:01.093, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.04, 64 +2026-05-15T10:50:06+08:00 +2026/05/15 10:50:06.118, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.65, 63 +2026-05-15T10:50:11+08:00 +2026/05/15 10:50:11.143, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.49, 63 +2026-05-15T10:50:16+08:00 +2026/05/15 10:50:16.170, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.49, 64 +2026-05-15T10:50:21+08:00 +2026/05/15 10:50:21.193, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.10, 62 +2026-05-15T10:50:26+08:00 +2026/05/15 10:50:26.219, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.79, 63 +2026-05-15T10:50:31+08:00 +2026/05/15 10:50:31.246, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.54, 64 +2026-05-15T10:50:36+08:00 +2026/05/15 10:50:36.273, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.87, 63 +2026-05-15T10:50:41+08:00 +2026/05/15 10:50:41.297, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 317.14, 63 +2026-05-15T10:50:46+08:00 +2026/05/15 10:50:46.321, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.93, 64 +2026-05-15T10:50:51+08:00 +2026/05/15 10:50:51.344, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 362.22, 64 +2026-05-15T10:50:56+08:00 +2026/05/15 10:50:56.367, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.46, 63 +2026-05-15T10:51:01+08:00 +2026/05/15 10:51:01.393, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.91, 64 +2026-05-15T10:51:06+08:00 +2026/05/15 10:51:06.417, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.55, 64 +2026-05-15T10:51:11+08:00 +2026/05/15 10:51:11.440, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.31, 63 +2026-05-15T10:51:16+08:00 +2026/05/15 10:51:16.464, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 328.60, 59 +2026-05-15T10:51:21+08:00 +2026/05/15 10:51:21.491, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 356.71, 62 +2026-05-15T10:51:26+08:00 +2026/05/15 10:51:26.515, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.01, 63 +2026-05-15T10:51:31+08:00 +2026/05/15 10:51:31.543, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.42, 64 +2026-05-15T10:51:36+08:00 +2026/05/15 10:51:36.566, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.00, 64 +2026-05-15T10:51:41+08:00 +2026/05/15 10:51:41.592, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.64, 63 +2026-05-15T10:51:46+08:00 +2026/05/15 10:51:46.617, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.54, 63 +2026-05-15T10:51:51+08:00 +2026/05/15 10:51:51.646, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.83, 63 +2026-05-15T10:51:56+08:00 +2026/05/15 10:51:56.670, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 322.82, 64 +2026-05-15T10:52:01+08:00 +2026/05/15 10:52:01.693, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.33, 65 +2026-05-15T10:52:06+08:00 +2026/05/15 10:52:06.716, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.23, 64 +2026-05-15T10:52:11+08:00 +2026/05/15 10:52:11.740, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.28, 64 +2026-05-15T10:52:16+08:00 +2026/05/15 10:52:16.763, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.15, 63 +2026-05-15T10:52:21+08:00 +2026/05/15 10:52:21.787, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.65, 63 +2026-05-15T10:52:26+08:00 +2026/05/15 10:52:26.811, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 361.27, 63 +2026-05-15T10:52:31+08:00 +2026/05/15 10:52:31.834, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.81, 63 +2026-05-15T10:52:36+08:00 +2026/05/15 10:52:36.859, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.47, 63 +2026-05-15T10:52:41+08:00 +2026/05/15 10:52:41.885, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 359.82, 63 +2026-05-15T10:52:46+08:00 +2026/05/15 10:52:46.907, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 358.48, 63 +2026-05-15T10:52:51+08:00 +2026/05/15 10:52:51.938, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.63, 63 +2026-05-15T10:52:56+08:00 +2026/05/15 10:52:56.965, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.06, 63 +2026-05-15T10:53:01+08:00 +2026/05/15 10:53:01.989, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.81, 64 +2026-05-15T10:53:06+08:00 +2026/05/15 10:53:07.013, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.72, 63 +2026-05-15T10:53:12+08:00 +2026/05/15 10:53:12.036, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.93, 62 +2026-05-15T10:53:17+08:00 +2026/05/15 10:53:17.060, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.61, 64 +2026-05-15T10:53:22+08:00 +2026/05/15 10:53:22.082, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.80, 63 +2026-05-15T10:53:27+08:00 +2026/05/15 10:53:27.106, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.02, 64 +2026-05-15T10:53:32+08:00 +2026/05/15 10:53:32.128, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.93, 63 +2026-05-15T10:53:37+08:00 +2026/05/15 10:53:37.152, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.94, 63 +2026-05-15T10:53:42+08:00 +2026/05/15 10:53:42.175, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.76, 63 +2026-05-15T10:53:47+08:00 +2026/05/15 10:53:47.199, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.78, 62 +2026-05-15T10:53:52+08:00 +2026/05/15 10:53:52.226, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.15, 64 +2026-05-15T10:53:57+08:00 +2026/05/15 10:53:57.250, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.77, 63 +2026-05-15T10:54:02+08:00 +2026/05/15 10:54:02.275, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.03, 63 +2026-05-15T10:54:07+08:00 +2026/05/15 10:54:07.298, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.41, 63 +2026-05-15T10:54:12+08:00 +2026/05/15 10:54:12.323, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.02, 64 +2026-05-15T10:54:17+08:00 +2026/05/15 10:54:17.348, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.28, 63 +2026-05-15T10:54:22+08:00 +2026/05/15 10:54:22.371, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.02, 63 +2026-05-15T10:54:27+08:00 +2026/05/15 10:54:27.396, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 249.49, 58 +2026-05-15T10:54:32+08:00 +2026/05/15 10:54:32.420, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.22, 62 +2026-05-15T10:54:37+08:00 +2026/05/15 10:54:37.445, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.63, 62 +2026-05-15T10:54:42+08:00 +2026/05/15 10:54:42.468, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.96, 63 +2026-05-15T10:54:47+08:00 +2026/05/15 10:54:47.493, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.49, 64 +2026-05-15T10:54:52+08:00 +2026/05/15 10:54:52.517, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.91, 63 +2026-05-15T10:54:57+08:00 +2026/05/15 10:54:57.541, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.08, 64 +2026-05-15T10:55:02+08:00 +2026/05/15 10:55:02.565, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.75, 64 +2026-05-15T10:55:07+08:00 +2026/05/15 10:55:07.590, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 360.82, 63 +2026-05-15T10:55:12+08:00 +2026/05/15 10:55:12.617, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.84, 64 +2026-05-15T10:55:17+08:00 +2026/05/15 10:55:17.641, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.59, 63 +2026-05-15T10:55:22+08:00 +2026/05/15 10:55:22.682, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.28, 64 +2026-05-15T10:55:27+08:00 +2026/05/15 10:55:27.706, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.41, 64 +2026-05-15T10:55:32+08:00 +2026/05/15 10:55:32.749, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.70, 63 +2026-05-15T10:55:37+08:00 +2026/05/15 10:55:37.823, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.57, 63 +2026-05-15T10:55:42+08:00 +2026/05/15 10:55:42.879, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.32, 63 +2026-05-15T10:55:47+08:00 +2026/05/15 10:55:47.903, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.64, 64 +2026-05-15T10:55:52+08:00 +2026/05/15 10:55:52.943, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.40, 63 +2026-05-15T10:55:57+08:00 +2026/05/15 10:55:57.968, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.23, 64 +2026-05-15T10:56:02+08:00 +2026/05/15 10:56:02.992, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.64, 62 +2026-05-15T10:56:08+08:00 +2026/05/15 10:56:08.034, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.86, 62 +2026-05-15T10:56:13+08:00 +2026/05/15 10:56:13.059, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.29, 63 +2026-05-15T10:56:18+08:00 +2026/05/15 10:56:18.099, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 312.08, 63 +2026-05-15T10:56:23+08:00 +2026/05/15 10:56:23.123, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.64, 64 +2026-05-15T10:56:28+08:00 +2026/05/15 10:56:28.200, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.14, 64 +2026-05-15T10:56:33+08:00 +2026/05/15 10:56:33.254, NVIDIA GeForce RTX 5090, 30, 18, 9607, 32607, 224.62, 62 +2026-05-15T10:56:38+08:00 +2026/05/15 10:56:38.278, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.70, 63 +2026-05-15T10:56:43+08:00 +2026/05/15 10:56:43.355, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 360.27, 62 +2026-05-15T10:56:48+08:00 +2026/05/15 10:56:48.378, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.43, 62 +2026-05-15T10:56:53+08:00 +2026/05/15 10:56:53.450, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.95, 62 +2026-05-15T10:56:58+08:00 +2026/05/15 10:56:58.495, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.43, 63 +2026-05-15T10:57:03+08:00 +2026/05/15 10:57:03.517, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.40, 63 +2026-05-15T10:57:08+08:00 +2026/05/15 10:57:08.588, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.91, 63 +2026-05-15T10:57:13+08:00 +2026/05/15 10:57:13.612, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.78, 64 +2026-05-15T10:57:18+08:00 +2026/05/15 10:57:18.636, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.58, 63 +2026-05-15T10:57:23+08:00 +2026/05/15 10:57:23.660, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 360.86, 64 +2026-05-15T10:57:28+08:00 +2026/05/15 10:57:28.684, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 361.62, 63 +2026-05-15T10:57:33+08:00 +2026/05/15 10:57:33.708, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 361.67, 64 +2026-05-15T10:57:38+08:00 +2026/05/15 10:57:38.735, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.46, 62 +2026-05-15T10:57:43+08:00 +2026/05/15 10:57:43.759, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 352.59, 63 +2026-05-15T10:57:48+08:00 +2026/05/15 10:57:48.783, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.57, 63 +2026-05-15T10:57:53+08:00 +2026/05/15 10:57:53.807, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 361.13, 63 +2026-05-15T10:57:58+08:00 +2026/05/15 10:57:58.830, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.07, 63 +2026-05-15T10:58:03+08:00 +2026/05/15 10:58:03.857, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 360.79, 63 +2026-05-15T10:58:08+08:00 +2026/05/15 10:58:08.881, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.28, 63 +2026-05-15T10:58:13+08:00 +2026/05/15 10:58:13.905, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.32, 63 +2026-05-15T10:58:18+08:00 +2026/05/15 10:58:18.928, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.03, 64 +2026-05-15T10:58:23+08:00 +2026/05/15 10:58:23.954, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.19, 64 +2026-05-15T10:58:28+08:00 +2026/05/15 10:58:28.977, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.60, 64 +2026-05-15T10:58:33+08:00 +2026/05/15 10:58:34.002, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.97, 63 +2026-05-15T10:58:39+08:00 +2026/05/15 10:58:39.025, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.15, 62 +2026-05-15T10:58:44+08:00 +2026/05/15 10:58:44.049, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.38, 62 +2026-05-15T10:58:49+08:00 +2026/05/15 10:58:49.073, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 266.39, 57 +2026-05-15T10:58:54+08:00 +2026/05/15 10:58:54.097, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 359.65, 63 +2026-05-15T10:58:59+08:00 +2026/05/15 10:58:59.121, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.18, 63 +2026-05-15T10:59:04+08:00 +2026/05/15 10:59:04.144, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.34, 63 +2026-05-15T10:59:09+08:00 +2026/05/15 10:59:09.170, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.17, 62 +2026-05-15T10:59:14+08:00 +2026/05/15 10:59:14.194, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.06, 62 +2026-05-15T10:59:19+08:00 +2026/05/15 10:59:19.224, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.15, 63 +2026-05-15T10:59:24+08:00 +2026/05/15 10:59:24.248, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.92, 62 +2026-05-15T10:59:29+08:00 +2026/05/15 10:59:29.272, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 309.13, 58 +2026-05-15T10:59:34+08:00 +2026/05/15 10:59:34.293, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.42, 63 +2026-05-15T10:59:39+08:00 +2026/05/15 10:59:39.316, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.15, 63 +2026-05-15T10:59:44+08:00 +2026/05/15 10:59:44.340, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.07, 64 +2026-05-15T10:59:49+08:00 +2026/05/15 10:59:49.364, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.85, 63 +2026-05-15T10:59:54+08:00 +2026/05/15 10:59:54.388, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.40, 64 +2026-05-15T10:59:59+08:00 +2026/05/15 10:59:59.412, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.11, 64 +2026-05-15T11:00:04+08:00 +2026/05/15 11:00:04.436, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.98, 64 +2026-05-15T11:00:09+08:00 +2026/05/15 11:00:09.466, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 358.82, 62 +2026-05-15T11:00:14+08:00 +2026/05/15 11:00:14.490, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 352.59, 63 +2026-05-15T11:00:19+08:00 +2026/05/15 11:00:19.513, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.54, 63 +2026-05-15T11:00:24+08:00 +2026/05/15 11:00:24.538, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 332.64, 62 +2026-05-15T11:00:29+08:00 +2026/05/15 11:00:29.562, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.42, 63 +2026-05-15T11:00:34+08:00 +2026/05/15 11:00:34.585, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.72, 63 +2026-05-15T11:00:39+08:00 +2026/05/15 11:00:39.609, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.77, 64 +2026-05-15T11:00:44+08:00 +2026/05/15 11:00:44.634, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.42, 63 +2026-05-15T11:00:49+08:00 +2026/05/15 11:00:49.658, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 334.86, 62 +2026-05-15T11:00:54+08:00 +2026/05/15 11:00:54.682, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.58, 63 +2026-05-15T11:00:59+08:00 +2026/05/15 11:00:59.726, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.47, 63 +2026-05-15T11:01:04+08:00 +2026/05/15 11:01:04.749, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.46, 63 +2026-05-15T11:01:09+08:00 +2026/05/15 11:01:09.771, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.86, 63 +2026-05-15T11:01:14+08:00 +2026/05/15 11:01:14.796, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.60, 63 +2026-05-15T11:01:19+08:00 +2026/05/15 11:01:19.820, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.86, 63 +2026-05-15T11:01:24+08:00 +2026/05/15 11:01:24.843, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 254.26, 63 +2026-05-15T11:01:29+08:00 +2026/05/15 11:01:29.866, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.58, 64 +2026-05-15T11:01:34+08:00 +2026/05/15 11:01:34.891, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.16, 63 +2026-05-15T11:01:39+08:00 +2026/05/15 11:01:39.915, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.40, 62 +2026-05-15T11:01:44+08:00 +2026/05/15 11:01:44.938, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.30, 62 +2026-05-15T11:01:49+08:00 +2026/05/15 11:01:49.969, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.58, 62 +2026-05-15T11:01:54+08:00 +2026/05/15 11:01:54.993, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.58, 62 +2026-05-15T11:02:00+08:00 +2026/05/15 11:02:00.019, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 316.91, 58 +2026-05-15T11:02:05+08:00 +2026/05/15 11:02:05.039, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.53, 62 +2026-05-15T11:02:10+08:00 +2026/05/15 11:02:10.062, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.02, 63 +2026-05-15T11:02:15+08:00 +2026/05/15 11:02:15.095, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 359.99, 63 +2026-05-15T11:02:20+08:00 +2026/05/15 11:02:20.117, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.12, 63 +2026-05-15T11:02:25+08:00 +2026/05/15 11:02:25.143, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.14, 62 +2026-05-15T11:02:30+08:00 +2026/05/15 11:02:30.167, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 360.90, 63 +2026-05-15T11:02:35+08:00 +2026/05/15 11:02:35.193, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.00, 63 +2026-05-15T11:02:40+08:00 +2026/05/15 11:02:40.217, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.72, 63 +2026-05-15T11:02:45+08:00 +2026/05/15 11:02:45.243, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.80, 64 +2026-05-15T11:02:50+08:00 +2026/05/15 11:02:50.268, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.42, 65 +2026-05-15T11:02:55+08:00 +2026/05/15 11:02:55.293, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.17, 64 +2026-05-15T11:03:00+08:00 +2026/05/15 11:03:00.317, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 306.72, 58 +2026-05-15T11:03:05+08:00 +2026/05/15 11:03:05.339, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.26, 64 +2026-05-15T11:03:10+08:00 +2026/05/15 11:03:10.362, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.81, 63 +2026-05-15T11:03:15+08:00 +2026/05/15 11:03:15.387, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.17, 62 +2026-05-15T11:03:20+08:00 +2026/05/15 11:03:20.411, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.03, 63 +2026-05-15T11:03:25+08:00 +2026/05/15 11:03:25.434, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.72, 63 +2026-05-15T11:03:30+08:00 +2026/05/15 11:03:30.459, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.09, 62 +2026-05-15T11:03:35+08:00 +2026/05/15 11:03:35.482, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.32, 63 +2026-05-15T11:03:40+08:00 +2026/05/15 11:03:40.509, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.90, 63 +2026-05-15T11:03:45+08:00 +2026/05/15 11:03:45.532, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.75, 64 +2026-05-15T11:03:50+08:00 +2026/05/15 11:03:50.556, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.89, 63 +2026-05-15T11:03:55+08:00 +2026/05/15 11:03:55.579, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.11, 62 +2026-05-15T11:04:00+08:00 +2026/05/15 11:04:00.601, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.18, 62 +2026-05-15T11:04:05+08:00 +2026/05/15 11:04:05.627, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.97, 62 +2026-05-15T11:04:10+08:00 +2026/05/15 11:04:10.651, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.86, 62 +2026-05-15T11:04:15+08:00 +2026/05/15 11:04:15.675, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.20, 63 +2026-05-15T11:04:20+08:00 +2026/05/15 11:04:20.699, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.95, 64 +2026-05-15T11:04:25+08:00 +2026/05/15 11:04:25.722, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.50, 64 +2026-05-15T11:04:30+08:00 +2026/05/15 11:04:30.748, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.99, 62 +2026-05-15T11:04:35+08:00 +2026/05/15 11:04:35.771, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.29, 64 +2026-05-15T11:04:40+08:00 +2026/05/15 11:04:40.795, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.12, 63 +2026-05-15T11:04:45+08:00 +2026/05/15 11:04:45.819, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.92, 63 +2026-05-15T11:04:50+08:00 +2026/05/15 11:04:50.842, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 352.30, 64 +2026-05-15T11:04:55+08:00 +2026/05/15 11:04:55.866, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.86, 63 +2026-05-15T11:05:00+08:00 +2026/05/15 11:05:00.890, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.43, 63 +2026-05-15T11:05:05+08:00 +2026/05/15 11:05:05.914, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.53, 63 +2026-05-15T11:05:10+08:00 +2026/05/15 11:05:10.941, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.81, 64 +2026-05-15T11:05:15+08:00 +2026/05/15 11:05:15.963, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.44, 64 +2026-05-15T11:05:20+08:00 +2026/05/15 11:05:20.989, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.49, 64 +2026-05-15T11:05:25+08:00 +2026/05/15 11:05:26.011, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.47, 63 +2026-05-15T11:05:31+08:00 +2026/05/15 11:05:31.054, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.95, 64 +2026-05-15T11:05:36+08:00 +2026/05/15 11:05:36.094, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.88, 64 +2026-05-15T11:05:41+08:00 +2026/05/15 11:05:41.135, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.07, 62 +2026-05-15T11:05:46+08:00 +2026/05/15 11:05:46.180, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 357.90, 63 +2026-05-15T11:05:51+08:00 +2026/05/15 11:05:51.223, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.70, 63 +2026-05-15T11:05:56+08:00 +2026/05/15 11:05:56.267, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.43, 62 +2026-05-15T11:06:01+08:00 +2026/05/15 11:06:01.292, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.32, 64 +2026-05-15T11:06:06+08:00 +2026/05/15 11:06:06.347, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.03, 63 +2026-05-15T11:06:11+08:00 +2026/05/15 11:06:11.371, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.57, 64 +2026-05-15T11:06:16+08:00 +2026/05/15 11:06:16.421, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.31, 63 +2026-05-15T11:06:21+08:00 +2026/05/15 11:06:21.447, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.08, 64 +2026-05-15T11:06:26+08:00 +2026/05/15 11:06:26.469, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.07, 63 +2026-05-15T11:06:31+08:00 +2026/05/15 11:06:31.512, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.87, 63 +2026-05-15T11:06:36+08:00 +2026/05/15 11:06:36.552, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.71, 64 +2026-05-15T11:06:41+08:00 +2026/05/15 11:06:41.602, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.20, 63 +2026-05-15T11:06:46+08:00 +2026/05/15 11:06:46.635, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.81, 62 +2026-05-15T11:06:51+08:00 +2026/05/15 11:06:51.657, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.99, 62 +2026-05-15T11:06:56+08:00 +2026/05/15 11:06:56.682, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.50, 63 +2026-05-15T11:07:01+08:00 +2026/05/15 11:07:01.706, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.32, 64 +2026-05-15T11:07:06+08:00 +2026/05/15 11:07:06.730, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.99, 64 +2026-05-15T11:07:11+08:00 +2026/05/15 11:07:11.753, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.98, 63 +2026-05-15T11:07:16+08:00 +2026/05/15 11:07:16.777, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.66, 64 +2026-05-15T11:07:21+08:00 +2026/05/15 11:07:21.801, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.94, 64 +2026-05-15T11:07:26+08:00 +2026/05/15 11:07:26.825, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 361.95, 62 +2026-05-15T11:07:31+08:00 +2026/05/15 11:07:31.849, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.56, 63 +2026-05-15T11:07:36+08:00 +2026/05/15 11:07:36.872, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.38, 63 +2026-05-15T11:07:41+08:00 +2026/05/15 11:07:41.894, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.61, 64 +2026-05-15T11:07:46+08:00 +2026/05/15 11:07:46.918, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.24, 64 +2026-05-15T11:07:51+08:00 +2026/05/15 11:07:51.942, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 362.50, 63 +2026-05-15T11:07:56+08:00 +2026/05/15 11:07:56.966, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.60, 63 +2026-05-15T11:08:01+08:00 +2026/05/15 11:08:01.994, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.19, 63 +2026-05-15T11:08:07+08:00 +2026/05/15 11:08:07.018, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.83, 63 +2026-05-15T11:08:12+08:00 +2026/05/15 11:08:12.041, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.72, 64 +2026-05-15T11:08:17+08:00 +2026/05/15 11:08:17.064, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 193.92, 61 +2026-05-15T11:08:22+08:00 +2026/05/15 11:08:22.089, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 359.60, 62 +2026-05-15T11:08:27+08:00 +2026/05/15 11:08:27.112, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 359.95, 62 +2026-05-15T11:08:32+08:00 +2026/05/15 11:08:32.136, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 360.31, 62 +2026-05-15T11:08:37+08:00 +2026/05/15 11:08:37.160, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 360.56, 63 +2026-05-15T11:08:42+08:00 +2026/05/15 11:08:42.183, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 360.20, 63 +2026-05-15T11:08:47+08:00 +2026/05/15 11:08:47.208, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 360.54, 63 +2026-05-15T11:08:52+08:00 +2026/05/15 11:08:52.231, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 361.46, 63 +2026-05-15T11:08:57+08:00 +2026/05/15 11:08:57.256, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 269.00, 59 +2026-05-15T11:09:02+08:00 +2026/05/15 11:09:02.280, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.90, 63 +2026-05-15T11:09:07+08:00 +2026/05/15 11:09:07.304, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.80, 63 +2026-05-15T11:09:12+08:00 +2026/05/15 11:09:12.329, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.26, 64 +2026-05-15T11:09:17+08:00 +2026/05/15 11:09:17.352, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.84, 63 +2026-05-15T11:09:22+08:00 +2026/05/15 11:09:22.376, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.79, 63 +2026-05-15T11:09:27+08:00 +2026/05/15 11:09:27.402, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.70, 63 +2026-05-15T11:09:32+08:00 +2026/05/15 11:09:32.425, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 359.92, 64 +2026-05-15T11:09:37+08:00 +2026/05/15 11:09:37.454, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.56, 63 +2026-05-15T11:09:42+08:00 +2026/05/15 11:09:42.478, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.38, 63 +2026-05-15T11:09:47+08:00 +2026/05/15 11:09:47.502, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.29, 63 +2026-05-15T11:09:52+08:00 +2026/05/15 11:09:52.526, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.93, 64 +2026-05-15T11:09:57+08:00 +2026/05/15 11:09:57.550, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 360.82, 63 +2026-05-15T11:10:02+08:00 +2026/05/15 11:10:02.577, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.60, 64 +2026-05-15T11:10:07+08:00 +2026/05/15 11:10:07.600, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.56, 63 +2026-05-15T11:10:12+08:00 +2026/05/15 11:10:12.624, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 294.95, 63 +2026-05-15T11:10:17+08:00 +2026/05/15 11:10:17.646, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.89, 62 +2026-05-15T11:10:22+08:00 +2026/05/15 11:10:22.671, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.48, 63 +2026-05-15T11:10:27+08:00 +2026/05/15 11:10:27.694, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.16, 63 +2026-05-15T11:10:32+08:00 +2026/05/15 11:10:32.717, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.91, 63 +2026-05-15T11:10:37+08:00 +2026/05/15 11:10:37.740, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.03, 64 +2026-05-15T11:10:42+08:00 +2026/05/15 11:10:42.764, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.44, 63 +2026-05-15T11:10:47+08:00 +2026/05/15 11:10:47.786, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.48, 63 +2026-05-15T11:10:52+08:00 +2026/05/15 11:10:52.810, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.86, 65 +2026-05-15T11:10:57+08:00 +2026/05/15 11:10:57.835, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.45, 63 +2026-05-15T11:11:02+08:00 +2026/05/15 11:11:02.858, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.36, 64 +2026-05-15T11:11:07+08:00 +2026/05/15 11:11:07.882, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.76, 62 +2026-05-15T11:11:12+08:00 +2026/05/15 11:11:12.955, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.47, 63 +2026-05-15T11:11:17+08:00 +2026/05/15 11:11:18.007, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.48, 64 +2026-05-15T11:11:23+08:00 +2026/05/15 11:11:23.031, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.53, 64 +2026-05-15T11:11:28+08:00 +2026/05/15 11:11:28.075, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.74, 63 +2026-05-15T11:11:33+08:00 +2026/05/15 11:11:33.147, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.44, 63 +2026-05-15T11:11:38+08:00 +2026/05/15 11:11:38.198, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.34, 63 +2026-05-15T11:11:43+08:00 +2026/05/15 11:11:43.235, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.90, 64 +2026-05-15T11:11:48+08:00 +2026/05/15 11:11:48.259, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.61, 65 +2026-05-15T11:11:53+08:00 +2026/05/15 11:11:53.318, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 281.91, 57 +2026-05-15T11:11:58+08:00 +2026/05/15 11:11:58.342, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 359.85, 63 +2026-05-15T11:12:03+08:00 +2026/05/15 11:12:03.420, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.99, 64 +2026-05-15T11:12:08+08:00 +2026/05/15 11:12:08.444, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.15, 64 +2026-05-15T11:12:13+08:00 +2026/05/15 11:12:13.520, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.82, 63 +2026-05-15T11:12:18+08:00 +2026/05/15 11:12:18.543, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.34, 64 +2026-05-15T11:12:23+08:00 +2026/05/15 11:12:23.569, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.95, 63 +2026-05-15T11:12:28+08:00 +2026/05/15 11:12:28.592, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.76, 64 +2026-05-15T11:12:33+08:00 +2026/05/15 11:12:33.616, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.46, 64 +2026-05-15T11:12:38+08:00 +2026/05/15 11:12:38.639, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.16, 64 +2026-05-15T11:12:43+08:00 +2026/05/15 11:12:43.663, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 164.26, 56 +2026-05-15T11:12:48+08:00 +2026/05/15 11:12:48.684, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.49, 63 +2026-05-15T11:12:53+08:00 +2026/05/15 11:12:53.707, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.65, 64 +2026-05-15T11:12:58+08:00 +2026/05/15 11:12:58.732, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.20, 63 +2026-05-15T11:13:03+08:00 +2026/05/15 11:13:03.756, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.24, 64 +2026-05-15T11:13:08+08:00 +2026/05/15 11:13:08.818, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.11, 64 +2026-05-15T11:13:13+08:00 +2026/05/15 11:13:13.853, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.99, 64 +2026-05-15T11:13:18+08:00 +2026/05/15 11:13:18.876, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.26, 64 +2026-05-15T11:13:23+08:00 +2026/05/15 11:13:23.900, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.56, 63 +2026-05-15T11:13:28+08:00 +2026/05/15 11:13:28.924, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.88, 64 +2026-05-15T11:13:33+08:00 +2026/05/15 11:13:33.957, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.46, 63 +2026-05-15T11:13:38+08:00 +2026/05/15 11:13:38.980, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.89, 64 +2026-05-15T11:13:43+08:00 +2026/05/15 11:13:44.004, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.82, 62 +2026-05-15T11:13:49+08:00 +2026/05/15 11:13:49.026, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.71, 63 +2026-05-15T11:13:54+08:00 +2026/05/15 11:13:54.051, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.28, 63 +2026-05-15T11:13:59+08:00 +2026/05/15 11:13:59.075, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.52, 62 +2026-05-15T11:14:04+08:00 +2026/05/15 11:14:04.097, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.28, 63 +2026-05-15T11:14:09+08:00 +2026/05/15 11:14:09.124, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.15, 65 +2026-05-15T11:14:14+08:00 +2026/05/15 11:14:14.148, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.51, 64 +2026-05-15T11:14:19+08:00 +2026/05/15 11:14:19.175, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.11, 63 +2026-05-15T11:14:24+08:00 +2026/05/15 11:14:24.198, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.00, 64 +2026-05-15T11:14:29+08:00 +2026/05/15 11:14:29.221, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.73, 64 +2026-05-15T11:14:34+08:00 +2026/05/15 11:14:34.247, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.07, 64 +2026-05-15T11:14:39+08:00 +2026/05/15 11:14:39.270, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 258.99, 63 +2026-05-15T11:14:44+08:00 +2026/05/15 11:14:44.294, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.59, 63 +2026-05-15T11:14:49+08:00 +2026/05/15 11:14:49.322, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.25, 63 +2026-05-15T11:14:54+08:00 +2026/05/15 11:14:54.347, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.67, 64 +2026-05-15T11:14:59+08:00 +2026/05/15 11:14:59.371, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.09, 64 +2026-05-15T11:15:04+08:00 +2026/05/15 11:15:04.396, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.77, 63 +2026-05-15T11:15:09+08:00 +2026/05/15 11:15:09.420, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.18, 64 +2026-05-15T11:15:14+08:00 +2026/05/15 11:15:14.444, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.96, 64 +2026-05-15T11:15:19+08:00 +2026/05/15 11:15:19.467, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.70, 64 +2026-05-15T11:15:24+08:00 +2026/05/15 11:15:24.492, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.91, 63 +2026-05-15T11:15:29+08:00 +2026/05/15 11:15:29.518, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.70, 63 +2026-05-15T11:15:34+08:00 +2026/05/15 11:15:34.540, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 314.24, 63 +2026-05-15T11:15:39+08:00 +2026/05/15 11:15:39.563, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.98, 64 +2026-05-15T11:15:44+08:00 +2026/05/15 11:15:44.586, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.51, 64 +2026-05-15T11:15:49+08:00 +2026/05/15 11:15:49.612, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.13, 62 +2026-05-15T11:15:54+08:00 +2026/05/15 11:15:54.640, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.67, 63 +2026-05-15T11:15:59+08:00 +2026/05/15 11:15:59.668, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.38, 64 +2026-05-15T11:16:04+08:00 +2026/05/15 11:16:04.694, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.57, 63 +2026-05-15T11:16:09+08:00 +2026/05/15 11:16:09.718, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.89, 62 +2026-05-15T11:16:14+08:00 +2026/05/15 11:16:14.741, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.94, 63 +2026-05-15T11:16:19+08:00 +2026/05/15 11:16:19.765, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.49, 64 +2026-05-15T11:16:24+08:00 +2026/05/15 11:16:24.787, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 205.16, 56 +2026-05-15T11:16:29+08:00 +2026/05/15 11:16:29.811, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.34, 63 +2026-05-15T11:16:34+08:00 +2026/05/15 11:16:34.838, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 329.98, 62 +2026-05-15T11:16:39+08:00 +2026/05/15 11:16:39.861, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.81, 63 +2026-05-15T11:16:44+08:00 +2026/05/15 11:16:44.885, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.09, 64 +2026-05-15T11:16:49+08:00 +2026/05/15 11:16:49.908, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.03, 63 +2026-05-15T11:16:54+08:00 +2026/05/15 11:16:54.932, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.74, 63 +2026-05-15T11:16:59+08:00 +2026/05/15 11:16:59.954, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.02, 63 +2026-05-15T11:17:04+08:00 +2026/05/15 11:17:04.978, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.76, 64 +2026-05-15T11:17:09+08:00 +2026/05/15 11:17:10.001, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 362.23, 63 +2026-05-15T11:17:15+08:00 +2026/05/15 11:17:15.023, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.52, 64 +2026-05-15T11:17:20+08:00 +2026/05/15 11:17:20.047, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.90, 64 +2026-05-15T11:17:25+08:00 +2026/05/15 11:17:25.069, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.21, 62 +2026-05-15T11:17:30+08:00 +2026/05/15 11:17:30.091, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.80, 64 +2026-05-15T11:17:35+08:00 +2026/05/15 11:17:35.116, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 362.13, 64 +2026-05-15T11:17:40+08:00 +2026/05/15 11:17:40.139, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.07, 62 +2026-05-15T11:17:45+08:00 +2026/05/15 11:17:45.163, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.77, 63 +2026-05-15T11:17:50+08:00 +2026/05/15 11:17:50.187, NVIDIA GeForce RTX 5090, 80, 34, 9607, 32607, 276.88, 64 +2026-05-15T11:17:55+08:00 +2026/05/15 11:17:55.211, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.90, 62 +2026-05-15T11:18:00+08:00 +2026/05/15 11:18:00.239, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.88, 64 +2026-05-15T11:18:05+08:00 +2026/05/15 11:18:05.262, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.55, 64 +2026-05-15T11:18:10+08:00 +2026/05/15 11:18:10.286, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.90, 62 +2026-05-15T11:18:15+08:00 +2026/05/15 11:18:15.309, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.66, 63 +2026-05-15T11:18:20+08:00 +2026/05/15 11:18:20.333, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.76, 64 +2026-05-15T11:18:25+08:00 +2026/05/15 11:18:25.357, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.37, 63 +2026-05-15T11:18:30+08:00 +2026/05/15 11:18:30.381, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.95, 63 +2026-05-15T11:18:35+08:00 +2026/05/15 11:18:35.404, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.93, 63 +2026-05-15T11:18:40+08:00 +2026/05/15 11:18:40.428, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.37, 63 +2026-05-15T11:18:45+08:00 +2026/05/15 11:18:45.454, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.80, 64 +2026-05-15T11:18:50+08:00 +2026/05/15 11:18:50.480, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.47, 63 +2026-05-15T11:18:55+08:00 +2026/05/15 11:18:55.506, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.58, 65 +2026-05-15T11:19:00+08:00 +2026/05/15 11:19:00.529, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.78, 64 +2026-05-15T11:19:05+08:00 +2026/05/15 11:19:05.554, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 332.83, 63 +2026-05-15T11:19:10+08:00 +2026/05/15 11:19:10.578, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.92, 63 +2026-05-15T11:19:15+08:00 +2026/05/15 11:19:15.601, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.15, 62 +2026-05-15T11:19:20+08:00 +2026/05/15 11:19:20.624, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.46, 63 +2026-05-15T11:19:25+08:00 +2026/05/15 11:19:25.648, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.77, 63 +2026-05-15T11:19:30+08:00 +2026/05/15 11:19:30.671, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.38, 63 +2026-05-15T11:19:35+08:00 +2026/05/15 11:19:35.696, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.13, 62 +2026-05-15T11:19:40+08:00 +2026/05/15 11:19:40.720, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 246.31, 62 +2026-05-15T11:19:45+08:00 +2026/05/15 11:19:45.744, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.75, 64 +2026-05-15T11:19:50+08:00 +2026/05/15 11:19:50.769, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.96, 64 +2026-05-15T11:19:55+08:00 +2026/05/15 11:19:55.792, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.76, 63 +2026-05-15T11:20:00+08:00 +2026/05/15 11:20:00.852, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.75, 63 +2026-05-15T11:20:05+08:00 +2026/05/15 11:20:05.876, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.87, 63 +2026-05-15T11:20:10+08:00 +2026/05/15 11:20:10.920, NVIDIA GeForce RTX 5090, 88, 39, 9607, 32607, 363.01, 63 +2026-05-15T11:20:15+08:00 +2026/05/15 11:20:15.995, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.14, 64 +2026-05-15T11:20:21+08:00 +2026/05/15 11:20:21.052, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.54, 62 +2026-05-15T11:20:26+08:00 +2026/05/15 11:20:26.077, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.78, 63 +2026-05-15T11:20:31+08:00 +2026/05/15 11:20:31.149, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.36, 64 +2026-05-15T11:20:36+08:00 +2026/05/15 11:20:36.171, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.27, 64 +2026-05-15T11:20:41+08:00 +2026/05/15 11:20:41.243, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.60, 64 +2026-05-15T11:20:46+08:00 +2026/05/15 11:20:46.283, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.28, 63 +2026-05-15T11:20:51+08:00 +2026/05/15 11:20:51.341, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.24, 65 +2026-05-15T11:20:56+08:00 +2026/05/15 11:20:56.364, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 262.47, 63 +2026-05-15T11:21:01+08:00 +2026/05/15 11:21:01.388, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.84, 63 +2026-05-15T11:21:06+08:00 +2026/05/15 11:21:06.431, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.20, 64 +2026-05-15T11:21:11+08:00 +2026/05/15 11:21:11.456, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.01, 63 +2026-05-15T11:21:16+08:00 +2026/05/15 11:21:16.479, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.73, 64 +2026-05-15T11:21:21+08:00 +2026/05/15 11:21:21.504, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.25, 64 +2026-05-15T11:21:26+08:00 +2026/05/15 11:21:26.528, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.45, 63 +2026-05-15T11:21:31+08:00 +2026/05/15 11:21:31.554, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.45, 63 +2026-05-15T11:21:36+08:00 +2026/05/15 11:21:36.578, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.10, 63 +2026-05-15T11:21:41+08:00 +2026/05/15 11:21:41.601, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.43, 64 +2026-05-15T11:21:46+08:00 +2026/05/15 11:21:46.624, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.48, 64 +2026-05-15T11:21:51+08:00 +2026/05/15 11:21:51.648, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.74, 63 +2026-05-15T11:21:56+08:00 +2026/05/15 11:21:56.671, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.15, 63 +2026-05-15T11:22:01+08:00 +2026/05/15 11:22:01.693, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.27, 64 +2026-05-15T11:22:06+08:00 +2026/05/15 11:22:06.718, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.42, 64 +2026-05-15T11:22:11+08:00 +2026/05/15 11:22:11.743, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 263.27, 63 +2026-05-15T11:22:16+08:00 +2026/05/15 11:22:16.766, NVIDIA GeForce RTX 5090, 82, 36, 9607, 32607, 357.48, 62 +2026-05-15T11:22:21+08:00 +2026/05/15 11:22:21.790, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.94, 62 +2026-05-15T11:22:26+08:00 +2026/05/15 11:22:26.813, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.68, 63 +2026-05-15T11:22:31+08:00 +2026/05/15 11:22:31.840, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.92, 62 +2026-05-15T11:22:36+08:00 +2026/05/15 11:22:36.863, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.18, 62 +2026-05-15T11:22:41+08:00 +2026/05/15 11:22:41.887, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.43, 62 +2026-05-15T11:22:46+08:00 +2026/05/15 11:22:46.910, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 323.34, 64 +2026-05-15T11:22:51+08:00 +2026/05/15 11:22:51.934, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.37, 62 +2026-05-15T11:22:56+08:00 +2026/05/15 11:22:56.957, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.98, 63 +2026-05-15T11:23:01+08:00 +2026/05/15 11:23:01.980, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.35, 63 +2026-05-15T11:23:06+08:00 +2026/05/15 11:23:07.005, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.47, 63 +2026-05-15T11:23:12+08:00 +2026/05/15 11:23:12.029, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.41, 63 +2026-05-15T11:23:17+08:00 +2026/05/15 11:23:17.051, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.78, 63 +2026-05-15T11:23:22+08:00 +2026/05/15 11:23:22.075, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 351.15, 64 +2026-05-15T11:23:27+08:00 +2026/05/15 11:23:27.100, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.37, 63 +2026-05-15T11:23:32+08:00 +2026/05/15 11:23:32.127, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.32, 63 +2026-05-15T11:23:37+08:00 +2026/05/15 11:23:37.150, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.41, 63 +2026-05-15T11:23:42+08:00 +2026/05/15 11:23:42.173, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.12, 64 +2026-05-15T11:23:47+08:00 +2026/05/15 11:23:47.197, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.07, 64 +2026-05-15T11:23:52+08:00 +2026/05/15 11:23:52.219, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 352.69, 63 +2026-05-15T11:23:57+08:00 +2026/05/15 11:23:57.242, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.75, 64 +2026-05-15T11:24:02+08:00 +2026/05/15 11:24:02.265, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.16, 63 +2026-05-15T11:24:07+08:00 +2026/05/15 11:24:07.290, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.67, 63 +2026-05-15T11:24:12+08:00 +2026/05/15 11:24:12.313, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 194.37, 60 +2026-05-15T11:24:17+08:00 +2026/05/15 11:24:17.336, NVIDIA GeForce RTX 5090, 88, 36, 9607, 32607, 360.30, 63 +2026-05-15T11:24:22+08:00 +2026/05/15 11:24:22.360, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.49, 62 +2026-05-15T11:24:27+08:00 +2026/05/15 11:24:27.385, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.16, 63 +2026-05-15T11:24:32+08:00 +2026/05/15 11:24:32.407, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 359.46, 64 +2026-05-15T11:24:37+08:00 +2026/05/15 11:24:37.431, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.99, 64 +2026-05-15T11:24:42+08:00 +2026/05/15 11:24:42.454, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 349.12, 63 +2026-05-15T11:24:47+08:00 +2026/05/15 11:24:47.477, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.49, 64 +2026-05-15T11:24:52+08:00 +2026/05/15 11:24:52.503, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.33, 64 +2026-05-15T11:24:57+08:00 +2026/05/15 11:24:57.527, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.04, 63 +2026-05-15T11:25:02+08:00 +2026/05/15 11:25:02.550, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.60, 63 +2026-05-15T11:25:07+08:00 +2026/05/15 11:25:07.577, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.43, 63 +2026-05-15T11:25:12+08:00 +2026/05/15 11:25:12.604, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.15, 63 +2026-05-15T11:25:17+08:00 +2026/05/15 11:25:17.628, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.63, 63 +2026-05-15T11:25:22+08:00 +2026/05/15 11:25:22.651, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.88, 63 +2026-05-15T11:25:27+08:00 +2026/05/15 11:25:27.673, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.65, 63 +2026-05-15T11:25:32+08:00 +2026/05/15 11:25:32.696, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.92, 63 +2026-05-15T11:25:37+08:00 +2026/05/15 11:25:37.720, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.93, 64 +2026-05-15T11:25:42+08:00 +2026/05/15 11:25:42.744, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.34, 63 +2026-05-15T11:25:47+08:00 +2026/05/15 11:25:47.768, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 202.08, 62 +2026-05-15T11:25:52+08:00 +2026/05/15 11:25:52.790, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.33, 63 +2026-05-15T11:25:57+08:00 +2026/05/15 11:25:57.816, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.55, 64 +2026-05-15T11:26:02+08:00 +2026/05/15 11:26:02.842, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.95, 63 +2026-05-15T11:26:07+08:00 +2026/05/15 11:26:07.865, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.99, 64 +2026-05-15T11:26:12+08:00 +2026/05/15 11:26:12.888, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 361.71, 63 +2026-05-15T11:26:17+08:00 +2026/05/15 11:26:17.911, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.83, 64 +2026-05-15T11:26:22+08:00 +2026/05/15 11:26:22.934, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.13, 62 +2026-05-15T11:26:27+08:00 +2026/05/15 11:26:27.958, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.06, 64 +2026-05-15T11:26:32+08:00 +2026/05/15 11:26:32.982, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.11, 63 +2026-05-15T11:26:37+08:00 +2026/05/15 11:26:38.005, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.68, 64 +2026-05-15T11:26:43+08:00 +2026/05/15 11:26:43.028, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.81, 63 +2026-05-15T11:26:48+08:00 +2026/05/15 11:26:48.051, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.74, 63 +2026-05-15T11:26:53+08:00 +2026/05/15 11:26:53.074, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.65, 64 +2026-05-15T11:26:58+08:00 +2026/05/15 11:26:58.097, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.78, 64 +2026-05-15T11:27:03+08:00 +2026/05/15 11:27:03.122, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.53, 64 +2026-05-15T11:27:08+08:00 +2026/05/15 11:27:08.148, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 356.73, 63 +2026-05-15T11:27:13+08:00 +2026/05/15 11:27:13.172, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.94, 63 +2026-05-15T11:27:18+08:00 +2026/05/15 11:27:18.196, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.03, 63 +2026-05-15T11:27:23+08:00 +2026/05/15 11:27:23.218, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.81, 64 +2026-05-15T11:27:28+08:00 +2026/05/15 11:27:28.243, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.88, 63 +2026-05-15T11:27:33+08:00 +2026/05/15 11:27:33.267, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.62, 64 +2026-05-15T11:27:38+08:00 +2026/05/15 11:27:38.291, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.33, 64 +2026-05-15T11:27:43+08:00 +2026/05/15 11:27:43.315, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.30, 64 +2026-05-15T11:27:48+08:00 +2026/05/15 11:27:48.339, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 360.95, 63 +2026-05-15T11:27:53+08:00 +2026/05/15 11:27:53.365, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.03, 63 +2026-05-15T11:27:58+08:00 +2026/05/15 11:27:58.391, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.33, 64 +2026-05-15T11:28:03+08:00 +2026/05/15 11:28:03.414, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 219.23, 63 +2026-05-15T11:28:08+08:00 +2026/05/15 11:28:08.438, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.64, 64 +2026-05-15T11:28:13+08:00 +2026/05/15 11:28:13.511, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.48, 63 +2026-05-15T11:28:18+08:00 +2026/05/15 11:28:18.535, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.63, 63 +2026-05-15T11:28:23+08:00 +2026/05/15 11:28:23.608, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.47, 63 +2026-05-15T11:28:28+08:00 +2026/05/15 11:28:28.633, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.89, 63 +2026-05-15T11:28:33+08:00 +2026/05/15 11:28:33.711, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.68, 63 +2026-05-15T11:28:38+08:00 +2026/05/15 11:28:38.734, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.88, 64 +2026-05-15T11:28:43+08:00 +2026/05/15 11:28:43.757, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 359.02, 64 +2026-05-15T11:28:48+08:00 +2026/05/15 11:28:48.799, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.11, 63 +2026-05-15T11:28:53+08:00 +2026/05/15 11:28:53.842, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 358.83, 64 +2026-05-15T11:28:58+08:00 +2026/05/15 11:28:58.887, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.46, 63 +2026-05-15T11:29:03+08:00 +2026/05/15 11:29:03.959, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.46, 63 +2026-05-15T11:29:08+08:00 +2026/05/15 11:29:08.984, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.18, 63 +2026-05-15T11:29:14+08:00 +2026/05/15 11:29:14.027, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 360.89, 63 +2026-05-15T11:29:19+08:00 +2026/05/15 11:29:19.068, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.88, 63 +2026-05-15T11:29:24+08:00 +2026/05/15 11:29:24.111, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.97, 63 +2026-05-15T11:29:29+08:00 +2026/05/15 11:29:29.154, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 357.92, 63 +2026-05-15T11:29:34+08:00 +2026/05/15 11:29:34.195, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.57, 63 +2026-05-15T11:29:39+08:00 +2026/05/15 11:29:39.267, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.56, 63 +2026-05-15T11:29:44+08:00 +2026/05/15 11:29:44.292, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.49, 63 +2026-05-15T11:29:49+08:00 +2026/05/15 11:29:49.316, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.26, 63 +2026-05-15T11:29:54+08:00 +2026/05/15 11:29:54.341, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.29, 63 +2026-05-15T11:29:59+08:00 +2026/05/15 11:29:59.365, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.96, 63 +2026-05-15T11:30:04+08:00 +2026/05/15 11:30:04.388, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.49, 63 +2026-05-15T11:30:09+08:00 +2026/05/15 11:30:09.411, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.67, 62 +2026-05-15T11:30:14+08:00 +2026/05/15 11:30:14.436, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.89, 62 +2026-05-15T11:30:19+08:00 +2026/05/15 11:30:19.459, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.14, 62 +2026-05-15T11:30:24+08:00 +2026/05/15 11:30:24.482, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.10, 63 +2026-05-15T11:30:29+08:00 +2026/05/15 11:30:29.509, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.83, 64 +2026-05-15T11:30:34+08:00 +2026/05/15 11:30:34.532, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.64, 64 +2026-05-15T11:30:39+08:00 +2026/05/15 11:30:39.558, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.62, 62 +2026-05-15T11:30:44+08:00 +2026/05/15 11:30:44.582, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 359.53, 64 +2026-05-15T11:30:49+08:00 +2026/05/15 11:30:49.605, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.75, 63 +2026-05-15T11:30:54+08:00 +2026/05/15 11:30:54.627, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.67, 63 +2026-05-15T11:30:59+08:00 +2026/05/15 11:30:59.651, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 358.52, 63 +2026-05-15T11:31:04+08:00 +2026/05/15 11:31:04.673, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.00, 64 +2026-05-15T11:31:09+08:00 +2026/05/15 11:31:09.699, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 358.80, 63 +2026-05-15T11:31:14+08:00 +2026/05/15 11:31:14.722, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.87, 62 +2026-05-15T11:31:19+08:00 +2026/05/15 11:31:19.745, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 360.41, 64 +2026-05-15T11:31:24+08:00 +2026/05/15 11:31:24.768, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 359.73, 63 +2026-05-15T11:31:29+08:00 +2026/05/15 11:31:29.791, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.07, 63 +2026-05-15T11:31:34+08:00 +2026/05/15 11:31:34.814, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.14, 64 +2026-05-15T11:31:39+08:00 +2026/05/15 11:31:39.837, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.82, 64 +2026-05-15T11:31:44+08:00 +2026/05/15 11:31:44.862, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.89, 64 +2026-05-15T11:31:49+08:00 +2026/05/15 11:31:49.886, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 355.83, 63 +2026-05-15T11:31:54+08:00 +2026/05/15 11:31:54.908, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.25, 63 +2026-05-15T11:31:59+08:00 +2026/05/15 11:31:59.938, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.51, 64 +2026-05-15T11:32:04+08:00 +2026/05/15 11:32:04.966, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.83, 63 +2026-05-15T11:32:09+08:00 +2026/05/15 11:32:09.989, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.14, 64 +2026-05-15T11:32:15+08:00 +2026/05/15 11:32:15.017, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.65, 62 +2026-05-15T11:32:20+08:00 +2026/05/15 11:32:20.041, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.29, 63 +2026-05-15T11:32:25+08:00 +2026/05/15 11:32:25.066, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.05, 64 +2026-05-15T11:32:30+08:00 +2026/05/15 11:32:30.089, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.36, 64 +2026-05-15T11:32:35+08:00 +2026/05/15 11:32:35.111, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.15, 64 +2026-05-15T11:32:40+08:00 +2026/05/15 11:32:40.135, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.73, 63 +2026-05-15T11:32:45+08:00 +2026/05/15 11:32:45.172, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.30, 62 +2026-05-15T11:32:50+08:00 +2026/05/15 11:32:50.194, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.98, 63 +2026-05-15T11:32:55+08:00 +2026/05/15 11:32:55.218, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.27, 64 +2026-05-15T11:33:00+08:00 +2026/05/15 11:33:00.260, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.45, 64 +2026-05-15T11:33:05+08:00 +2026/05/15 11:33:05.286, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.25, 64 +2026-05-15T11:33:10+08:00 +2026/05/15 11:33:10.330, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.19, 64 +2026-05-15T11:33:15+08:00 +2026/05/15 11:33:15.371, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 287.90, 63 +2026-05-15T11:33:20+08:00 +2026/05/15 11:33:20.437, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.09, 64 +2026-05-15T11:33:25+08:00 +2026/05/15 11:33:25.462, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.12, 64 +2026-05-15T11:33:30+08:00 +2026/05/15 11:33:30.514, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.47, 64 +2026-05-15T11:33:35+08:00 +2026/05/15 11:33:35.550, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.03, 64 +2026-05-15T11:33:40+08:00 +2026/05/15 11:33:40.575, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.79, 63 +2026-05-15T11:33:45+08:00 +2026/05/15 11:33:45.624, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.27, 64 +2026-05-15T11:33:50+08:00 +2026/05/15 11:33:50.647, NVIDIA GeForce RTX 5090, 58, 27, 9607, 32607, 355.38, 62 +2026-05-15T11:33:55+08:00 +2026/05/15 11:33:55.712, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.00, 63 +2026-05-15T11:34:00+08:00 +2026/05/15 11:34:00.736, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.36, 63 +2026-05-15T11:34:05+08:00 +2026/05/15 11:34:05.776, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.47, 63 +2026-05-15T11:34:10+08:00 +2026/05/15 11:34:10.799, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.06, 63 +2026-05-15T11:34:15+08:00 +2026/05/15 11:34:15.839, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.24, 63 +2026-05-15T11:34:20+08:00 +2026/05/15 11:34:20.879, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.73, 63 +2026-05-15T11:34:25+08:00 +2026/05/15 11:34:25.928, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.05, 64 +2026-05-15T11:34:30+08:00 +2026/05/15 11:34:30.984, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.56, 62 +2026-05-15T11:34:35+08:00 +2026/05/15 11:34:36.010, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.69, 63 +2026-05-15T11:34:41+08:00 +2026/05/15 11:34:41.033, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.27, 63 +2026-05-15T11:34:46+08:00 +2026/05/15 11:34:46.104, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.11, 64 +2026-05-15T11:34:51+08:00 +2026/05/15 11:34:51.129, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.85, 62 +2026-05-15T11:34:56+08:00 +2026/05/15 11:34:56.176, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.06, 64 +2026-05-15T11:35:01+08:00 +2026/05/15 11:35:01.201, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.46, 64 +2026-05-15T11:35:06+08:00 +2026/05/15 11:35:06.224, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.93, 63 +2026-05-15T11:35:11+08:00 +2026/05/15 11:35:11.248, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.64, 64 +2026-05-15T11:35:16+08:00 +2026/05/15 11:35:16.275, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.10, 63 +2026-05-15T11:35:21+08:00 +2026/05/15 11:35:21.299, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.83, 63 +2026-05-15T11:35:26+08:00 +2026/05/15 11:35:26.323, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.02, 64 +2026-05-15T11:35:31+08:00 +2026/05/15 11:35:31.347, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.46, 63 +2026-05-15T11:35:36+08:00 +2026/05/15 11:35:36.371, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.04, 62 +2026-05-15T11:35:41+08:00 +2026/05/15 11:35:41.395, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 305.74, 58 +2026-05-15T11:35:46+08:00 +2026/05/15 11:35:46.418, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.37, 64 +2026-05-15T11:35:51+08:00 +2026/05/15 11:35:51.442, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.44, 63 +2026-05-15T11:35:56+08:00 +2026/05/15 11:35:56.465, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.07, 64 +2026-05-15T11:36:01+08:00 +2026/05/15 11:36:01.490, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.61, 64 +2026-05-15T11:36:06+08:00 +2026/05/15 11:36:06.514, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.55, 64 +2026-05-15T11:36:11+08:00 +2026/05/15 11:36:11.537, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.83, 63 +2026-05-15T11:36:16+08:00 +2026/05/15 11:36:16.561, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.46, 64 +2026-05-15T11:36:21+08:00 +2026/05/15 11:36:21.584, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.98, 63 +2026-05-15T11:36:26+08:00 +2026/05/15 11:36:26.608, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.28, 64 +2026-05-15T11:36:31+08:00 +2026/05/15 11:36:31.632, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.15, 63 +2026-05-15T11:36:36+08:00 +2026/05/15 11:36:36.657, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.57, 62 +2026-05-15T11:36:41+08:00 +2026/05/15 11:36:41.681, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.94, 63 +2026-05-15T11:36:46+08:00 +2026/05/15 11:36:46.705, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.60, 64 +2026-05-15T11:36:51+08:00 +2026/05/15 11:36:51.727, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.20, 63 +2026-05-15T11:36:56+08:00 +2026/05/15 11:36:56.752, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.67, 64 +2026-05-15T11:37:01+08:00 +2026/05/15 11:37:01.775, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 247.82, 63 +2026-05-15T11:37:06+08:00 +2026/05/15 11:37:06.800, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.15, 63 +2026-05-15T11:37:11+08:00 +2026/05/15 11:37:11.821, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 362.93, 64 +2026-05-15T11:37:16+08:00 +2026/05/15 11:37:16.846, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.24, 63 +2026-05-15T11:37:21+08:00 +2026/05/15 11:37:21.869, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.50, 64 +2026-05-15T11:37:26+08:00 +2026/05/15 11:37:26.893, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.75, 63 +2026-05-15T11:37:31+08:00 +2026/05/15 11:37:31.917, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 362.50, 63 +2026-05-15T11:37:36+08:00 +2026/05/15 11:37:36.942, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.42, 62 +2026-05-15T11:37:41+08:00 +2026/05/15 11:37:41.966, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 284.13, 57 +2026-05-15T11:37:46+08:00 +2026/05/15 11:37:46.991, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.39, 63 +2026-05-15T11:37:52+08:00 +2026/05/15 11:37:52.016, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.51, 63 +2026-05-15T11:37:57+08:00 +2026/05/15 11:37:57.039, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.88, 63 +2026-05-15T11:38:02+08:00 +2026/05/15 11:38:02.063, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.58, 63 +2026-05-15T11:38:07+08:00 +2026/05/15 11:38:07.087, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.02, 63 +2026-05-15T11:38:12+08:00 +2026/05/15 11:38:12.110, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.61, 63 +2026-05-15T11:38:17+08:00 +2026/05/15 11:38:17.135, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.69, 64 +2026-05-15T11:38:22+08:00 +2026/05/15 11:38:22.158, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.43, 62 +2026-05-15T11:38:27+08:00 +2026/05/15 11:38:27.183, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.22, 64 +2026-05-15T11:38:32+08:00 +2026/05/15 11:38:32.206, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.97, 64 +2026-05-15T11:38:37+08:00 +2026/05/15 11:38:37.236, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.96, 63 +2026-05-15T11:38:42+08:00 +2026/05/15 11:38:42.285, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.87, 63 +2026-05-15T11:38:47+08:00 +2026/05/15 11:38:47.310, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.11, 64 +2026-05-15T11:38:52+08:00 +2026/05/15 11:38:52.360, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.19, 64 +2026-05-15T11:38:57+08:00 +2026/05/15 11:38:57.405, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.11, 63 +2026-05-15T11:39:02+08:00 +2026/05/15 11:39:02.429, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.89, 63 +2026-05-15T11:39:07+08:00 +2026/05/15 11:39:07.457, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 210.28, 63 +2026-05-15T11:39:12+08:00 +2026/05/15 11:39:12.481, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.90, 64 +2026-05-15T11:39:17+08:00 +2026/05/15 11:39:17.509, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.49, 64 +2026-05-15T11:39:22+08:00 +2026/05/15 11:39:22.534, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.34, 64 +2026-05-15T11:39:27+08:00 +2026/05/15 11:39:27.558, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.64, 63 +2026-05-15T11:39:32+08:00 +2026/05/15 11:39:32.583, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.29, 64 +2026-05-15T11:39:37+08:00 +2026/05/15 11:39:37.608, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.36, 63 +2026-05-15T11:39:42+08:00 +2026/05/15 11:39:42.634, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 361.08, 63 +2026-05-15T11:39:47+08:00 +2026/05/15 11:39:47.663, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 361.53, 62 +2026-05-15T11:39:52+08:00 +2026/05/15 11:39:52.689, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.95, 62 +2026-05-15T11:39:57+08:00 +2026/05/15 11:39:57.712, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.86, 62 +2026-05-15T11:40:02+08:00 +2026/05/15 11:40:02.737, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.98, 62 +2026-05-15T11:40:07+08:00 +2026/05/15 11:40:07.760, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.63, 62 +2026-05-15T11:40:12+08:00 +2026/05/15 11:40:12.785, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 260.45, 63 +2026-05-15T11:40:17+08:00 +2026/05/15 11:40:17.808, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.85, 64 +2026-05-15T11:40:22+08:00 +2026/05/15 11:40:22.832, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 361.28, 63 +2026-05-15T11:40:27+08:00 +2026/05/15 11:40:27.856, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 361.85, 64 +2026-05-15T11:40:32+08:00 +2026/05/15 11:40:32.929, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.70, 63 +2026-05-15T11:40:37+08:00 +2026/05/15 11:40:37.954, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.51, 63 +2026-05-15T11:40:42+08:00 +2026/05/15 11:40:42.977, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 194.30, 62 +2026-05-15T11:40:47+08:00 +2026/05/15 11:40:47.998, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.23, 64 +2026-05-15T11:40:53+08:00 +2026/05/15 11:40:53.023, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.51, 63 +2026-05-15T11:40:58+08:00 +2026/05/15 11:40:58.046, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.60, 63 +2026-05-15T11:41:03+08:00 +2026/05/15 11:41:03.070, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.38, 63 +2026-05-15T11:41:08+08:00 +2026/05/15 11:41:08.094, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.29, 64 +2026-05-15T11:41:13+08:00 +2026/05/15 11:41:13.116, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.96, 64 +2026-05-15T11:41:18+08:00 +2026/05/15 11:41:18.138, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.65, 63 +2026-05-15T11:41:23+08:00 +2026/05/15 11:41:23.160, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.76, 63 +2026-05-15T11:41:28+08:00 +2026/05/15 11:41:28.183, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.71, 63 +2026-05-15T11:41:33+08:00 +2026/05/15 11:41:33.209, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 358.62, 64 +2026-05-15T11:41:38+08:00 +2026/05/15 11:41:38.234, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.94, 64 +2026-05-15T11:41:43+08:00 +2026/05/15 11:41:43.256, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.42, 64 +2026-05-15T11:41:48+08:00 +2026/05/15 11:41:48.279, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.34, 63 +2026-05-15T11:41:53+08:00 +2026/05/15 11:41:53.302, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.52, 63 +2026-05-15T11:41:58+08:00 +2026/05/15 11:41:58.325, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.04, 63 +2026-05-15T11:42:03+08:00 +2026/05/15 11:42:03.350, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.16, 63 +2026-05-15T11:42:08+08:00 +2026/05/15 11:42:08.372, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 359.78, 64 +2026-05-15T11:42:13+08:00 +2026/05/15 11:42:13.395, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.45, 63 +2026-05-15T11:42:18+08:00 +2026/05/15 11:42:18.418, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.38, 64 +2026-05-15T11:42:23+08:00 +2026/05/15 11:42:23.442, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.53, 64 +2026-05-15T11:42:28+08:00 +2026/05/15 11:42:28.467, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.05, 63 +2026-05-15T11:42:33+08:00 +2026/05/15 11:42:33.491, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.04, 64 +2026-05-15T11:42:38+08:00 +2026/05/15 11:42:38.521, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 300.61, 57 +2026-05-15T11:42:43+08:00 +2026/05/15 11:42:43.544, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.38, 63 +2026-05-15T11:42:48+08:00 +2026/05/15 11:42:48.566, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.07, 63 +2026-05-15T11:42:53+08:00 +2026/05/15 11:42:53.590, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.62, 63 +2026-05-15T11:42:58+08:00 +2026/05/15 11:42:58.613, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.65, 62 +2026-05-15T11:43:03+08:00 +2026/05/15 11:43:03.640, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.05, 63 +2026-05-15T11:43:08+08:00 +2026/05/15 11:43:08.663, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 360.69, 64 +2026-05-15T11:43:13+08:00 +2026/05/15 11:43:13.685, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.16, 63 +2026-05-15T11:43:18+08:00 +2026/05/15 11:43:18.708, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.70, 63 +2026-05-15T11:43:23+08:00 +2026/05/15 11:43:23.733, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.58, 64 +2026-05-15T11:43:28+08:00 +2026/05/15 11:43:28.758, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.14, 64 +2026-05-15T11:43:33+08:00 +2026/05/15 11:43:33.781, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.93, 64 +2026-05-15T11:43:38+08:00 +2026/05/15 11:43:38.807, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.88, 64 +2026-05-15T11:43:43+08:00 +2026/05/15 11:43:43.831, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.38, 64 +2026-05-15T11:43:48+08:00 +2026/05/15 11:43:48.854, NVIDIA GeForce RTX 5090, 89, 37, 9607, 32607, 283.42, 64 +2026-05-15T11:43:53+08:00 +2026/05/15 11:43:53.878, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.69, 64 +2026-05-15T11:43:58+08:00 +2026/05/15 11:43:58.901, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 314.73, 58 +2026-05-15T11:44:03+08:00 +2026/05/15 11:44:03.924, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.37, 62 +2026-05-15T11:44:08+08:00 +2026/05/15 11:44:08.951, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.96, 63 +2026-05-15T11:44:13+08:00 +2026/05/15 11:44:13.973, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.48, 63 +2026-05-15T11:44:18+08:00 +2026/05/15 11:44:18.998, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.68, 64 +2026-05-15T11:44:24+08:00 +2026/05/15 11:44:24.022, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.35, 64 +2026-05-15T11:44:29+08:00 +2026/05/15 11:44:29.044, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.09, 64 +2026-05-15T11:44:34+08:00 +2026/05/15 11:44:34.068, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.74, 63 +2026-05-15T11:44:39+08:00 +2026/05/15 11:44:39.092, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 341.54, 62 +2026-05-15T11:44:44+08:00 +2026/05/15 11:44:44.117, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 357.61, 63 +2026-05-15T11:44:49+08:00 +2026/05/15 11:44:49.140, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 359.56, 63 +2026-05-15T11:44:54+08:00 +2026/05/15 11:44:54.163, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.99, 63 +2026-05-15T11:44:59+08:00 +2026/05/15 11:44:59.185, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.85, 63 +2026-05-15T11:45:04+08:00 +2026/05/15 11:45:04.209, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.68, 63 +2026-05-15T11:45:09+08:00 +2026/05/15 11:45:09.235, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.55, 63 +2026-05-15T11:45:14+08:00 +2026/05/15 11:45:14.258, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.66, 62 +2026-05-15T11:45:19+08:00 +2026/05/15 11:45:19.281, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.81, 63 +2026-05-15T11:45:24+08:00 +2026/05/15 11:45:24.303, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.57, 64 +2026-05-15T11:45:29+08:00 +2026/05/15 11:45:29.326, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 357.89, 63 +2026-05-15T11:45:34+08:00 +2026/05/15 11:45:34.351, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.49, 63 +2026-05-15T11:45:39+08:00 +2026/05/15 11:45:39.374, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 358.32, 64 +2026-05-15T11:45:44+08:00 +2026/05/15 11:45:44.398, NVIDIA GeForce RTX 5090, 88, 36, 9607, 32607, 359.44, 64 +2026-05-15T11:45:49+08:00 +2026/05/15 11:45:49.422, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.05, 63 +2026-05-15T11:45:54+08:00 +2026/05/15 11:45:54.445, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.28, 63 +2026-05-15T11:45:59+08:00 +2026/05/15 11:45:59.474, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 358.38, 63 +2026-05-15T11:46:04+08:00 +2026/05/15 11:46:04.499, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.17, 64 +2026-05-15T11:46:09+08:00 +2026/05/15 11:46:09.522, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.55, 63 +2026-05-15T11:46:14+08:00 +2026/05/15 11:46:14.547, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 349.65, 63 +2026-05-15T11:46:19+08:00 +2026/05/15 11:46:19.570, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.80, 63 +2026-05-15T11:46:24+08:00 +2026/05/15 11:46:24.598, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.43, 64 +2026-05-15T11:46:29+08:00 +2026/05/15 11:46:29.622, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.89, 64 +2026-05-15T11:46:34+08:00 +2026/05/15 11:46:34.645, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 357.25, 63 +2026-05-15T11:46:39+08:00 +2026/05/15 11:46:39.667, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.20, 64 +2026-05-15T11:46:44+08:00 +2026/05/15 11:46:44.743, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.28, 63 +2026-05-15T11:46:49+08:00 +2026/05/15 11:46:49.766, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.76, 64 +2026-05-15T11:46:54+08:00 +2026/05/15 11:46:54.840, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.81, 63 +2026-05-15T11:46:59+08:00 +2026/05/15 11:46:59.864, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.87, 63 +2026-05-15T11:47:04+08:00 +2026/05/15 11:47:04.905, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 362.57, 64 +2026-05-15T11:47:09+08:00 +2026/05/15 11:47:09.929, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.21, 63 +2026-05-15T11:47:14+08:00 +2026/05/15 11:47:14.954, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.31, 63 +2026-05-15T11:47:19+08:00 +2026/05/15 11:47:19.976, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.67, 64 +2026-05-15T11:47:24+08:00 +2026/05/15 11:47:24.999, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.97, 63 +2026-05-15T11:47:30+08:00 +2026/05/15 11:47:30.022, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.29, 63 +2026-05-15T11:47:35+08:00 +2026/05/15 11:47:35.045, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.69, 63 +2026-05-15T11:47:40+08:00 +2026/05/15 11:47:40.068, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.13, 63 +2026-05-15T11:47:45+08:00 +2026/05/15 11:47:45.091, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 320.61, 64 +2026-05-15T11:47:50+08:00 +2026/05/15 11:47:50.116, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 361.83, 63 +2026-05-15T11:47:55+08:00 +2026/05/15 11:47:55.140, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 340.38, 63 +2026-05-15T11:48:00+08:00 +2026/05/15 11:48:00.164, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.88, 63 +2026-05-15T11:48:05+08:00 +2026/05/15 11:48:05.190, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.02, 63 +2026-05-15T11:48:10+08:00 +2026/05/15 11:48:10.214, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.05, 63 +2026-05-15T11:48:15+08:00 +2026/05/15 11:48:15.241, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.58, 64 +2026-05-15T11:48:20+08:00 +2026/05/15 11:48:20.265, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.68, 63 +2026-05-15T11:48:25+08:00 +2026/05/15 11:48:25.289, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.92, 63 +2026-05-15T11:48:30+08:00 +2026/05/15 11:48:30.313, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 244.95, 62 +2026-05-15T11:48:35+08:00 +2026/05/15 11:48:35.338, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.53, 64 +2026-05-15T11:48:40+08:00 +2026/05/15 11:48:40.360, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.35, 63 +2026-05-15T11:48:45+08:00 +2026/05/15 11:48:45.384, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.91, 64 +2026-05-15T11:48:50+08:00 +2026/05/15 11:48:50.406, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.59, 64 +2026-05-15T11:48:55+08:00 +2026/05/15 11:48:55.429, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.44, 63 +2026-05-15T11:49:00+08:00 +2026/05/15 11:49:00.451, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 352.62, 63 +2026-05-15T11:49:05+08:00 +2026/05/15 11:49:05.477, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.73, 64 +2026-05-15T11:49:10+08:00 +2026/05/15 11:49:10.500, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.10, 63 +2026-05-15T11:49:15+08:00 +2026/05/15 11:49:15.522, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.08, 64 +2026-05-15T11:49:20+08:00 +2026/05/15 11:49:20.544, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 360.08, 64 +2026-05-15T11:49:25+08:00 +2026/05/15 11:49:25.570, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 360.65, 63 +2026-05-15T11:49:30+08:00 +2026/05/15 11:49:30.607, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 360.19, 64 +2026-05-15T11:49:35+08:00 +2026/05/15 11:49:35.630, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.44, 64 +2026-05-15T11:49:40+08:00 +2026/05/15 11:49:40.698, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.34, 63 +2026-05-15T11:49:45+08:00 +2026/05/15 11:49:45.722, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.38, 64 +2026-05-15T11:49:50+08:00 +2026/05/15 11:49:50.747, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.74, 63 +2026-05-15T11:49:55+08:00 +2026/05/15 11:49:55.789, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.45, 64 +2026-05-15T11:50:00+08:00 +2026/05/15 11:50:00.811, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.19, 63 +2026-05-15T11:50:05+08:00 +2026/05/15 11:50:05.835, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.18, 63 +2026-05-15T11:50:10+08:00 +2026/05/15 11:50:10.859, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.50, 63 +2026-05-15T11:50:15+08:00 +2026/05/15 11:50:15.882, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.66, 63 +2026-05-15T11:50:20+08:00 +2026/05/15 11:50:20.904, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.92, 63 +2026-05-15T11:50:25+08:00 +2026/05/15 11:50:25.927, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.02, 63 +2026-05-15T11:50:30+08:00 +2026/05/15 11:50:30.949, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.79, 63 +2026-05-15T11:50:35+08:00 +2026/05/15 11:50:35.972, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.81, 63 +2026-05-15T11:50:40+08:00 +2026/05/15 11:50:40.999, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.54, 63 +2026-05-15T11:50:46+08:00 +2026/05/15 11:50:46.022, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 242.44, 64 +2026-05-15T11:50:51+08:00 +2026/05/15 11:50:51.046, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.35, 64 +2026-05-15T11:50:56+08:00 +2026/05/15 11:50:56.070, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.80, 64 +2026-05-15T11:51:01+08:00 +2026/05/15 11:51:01.098, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.97, 63 +2026-05-15T11:51:06+08:00 +2026/05/15 11:51:06.124, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.85, 63 +2026-05-15T11:51:11+08:00 +2026/05/15 11:51:11.147, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.70, 64 +2026-05-15T11:51:16+08:00 +2026/05/15 11:51:16.171, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 362.56, 64 +2026-05-15T11:51:21+08:00 +2026/05/15 11:51:21.196, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.28, 64 +2026-05-15T11:51:26+08:00 +2026/05/15 11:51:26.221, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.09, 64 +2026-05-15T11:51:31+08:00 +2026/05/15 11:51:31.245, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.94, 63 +2026-05-15T11:51:36+08:00 +2026/05/15 11:51:36.269, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 362.21, 64 +2026-05-15T11:51:41+08:00 +2026/05/15 11:51:41.292, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.14, 64 +2026-05-15T11:51:46+08:00 +2026/05/15 11:51:46.316, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.11, 63 +2026-05-15T11:51:51+08:00 +2026/05/15 11:51:51.342, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 362.72, 64 +2026-05-15T11:51:56+08:00 +2026/05/15 11:51:56.371, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.98, 63 +2026-05-15T11:52:01+08:00 +2026/05/15 11:52:01.397, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.70, 64 +2026-05-15T11:52:06+08:00 +2026/05/15 11:52:06.421, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.43, 63 +2026-05-15T11:52:11+08:00 +2026/05/15 11:52:11.445, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.69, 62 +2026-05-15T11:52:16+08:00 +2026/05/15 11:52:16.469, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.36, 64 +2026-05-15T11:52:21+08:00 +2026/05/15 11:52:21.492, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.31, 62 +2026-05-15T11:52:26+08:00 +2026/05/15 11:52:26.516, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.90, 63 +2026-05-15T11:52:31+08:00 +2026/05/15 11:52:31.541, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.28, 64 +2026-05-15T11:52:36+08:00 +2026/05/15 11:52:36.565, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.41, 63 +2026-05-15T11:52:41+08:00 +2026/05/15 11:52:41.587, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.14, 63 +2026-05-15T11:52:46+08:00 +2026/05/15 11:52:46.612, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.53, 63 +2026-05-15T11:52:51+08:00 +2026/05/15 11:52:51.636, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 355.75, 63 +2026-05-15T11:52:56+08:00 +2026/05/15 11:52:56.660, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 314.20, 63 +2026-05-15T11:53:01+08:00 +2026/05/15 11:53:01.683, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.46, 64 +2026-05-15T11:53:06+08:00 +2026/05/15 11:53:06.709, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.16, 63 +2026-05-15T11:53:11+08:00 +2026/05/15 11:53:11.733, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.27, 63 +2026-05-15T11:53:16+08:00 +2026/05/15 11:53:16.763, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.08, 64 +2026-05-15T11:53:21+08:00 +2026/05/15 11:53:21.788, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.07, 63 +2026-05-15T11:53:26+08:00 +2026/05/15 11:53:26.814, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.94, 64 +2026-05-15T11:53:31+08:00 +2026/05/15 11:53:31.839, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.74, 64 +2026-05-15T11:53:36+08:00 +2026/05/15 11:53:36.864, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.02, 63 +2026-05-15T11:53:41+08:00 +2026/05/15 11:53:41.887, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.16, 63 +2026-05-15T11:53:46+08:00 +2026/05/15 11:53:46.914, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.13, 64 +2026-05-15T11:53:51+08:00 +2026/05/15 11:53:51.939, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.14, 62 +2026-05-15T11:53:56+08:00 +2026/05/15 11:53:56.978, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.83, 63 +2026-05-15T11:54:02+08:00 +2026/05/15 11:54:02.020, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.57, 64 +2026-05-15T11:54:07+08:00 +2026/05/15 11:54:07.072, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.49, 64 +2026-05-15T11:54:12+08:00 +2026/05/15 11:54:12.093, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.05, 65 +2026-05-15T11:54:17+08:00 +2026/05/15 11:54:17.135, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.01, 64 +2026-05-15T11:54:22+08:00 +2026/05/15 11:54:22.179, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.08, 63 +2026-05-15T11:54:27+08:00 +2026/05/15 11:54:27.220, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.11, 64 +2026-05-15T11:54:32+08:00 +2026/05/15 11:54:32.246, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.33, 64 +2026-05-15T11:54:37+08:00 +2026/05/15 11:54:37.269, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.04, 62 +2026-05-15T11:54:42+08:00 +2026/05/15 11:54:42.292, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.24, 64 +2026-05-15T11:54:47+08:00 +2026/05/15 11:54:47.316, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 260.57, 62 +2026-05-15T11:54:52+08:00 +2026/05/15 11:54:52.341, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.11, 64 +2026-05-15T11:54:57+08:00 +2026/05/15 11:54:57.365, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.04, 64 +2026-05-15T11:55:02+08:00 +2026/05/15 11:55:02.389, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 362.11, 64 +2026-05-15T11:55:07+08:00 +2026/05/15 11:55:07.413, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.98, 63 +2026-05-15T11:55:12+08:00 +2026/05/15 11:55:12.436, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.21, 64 +2026-05-15T11:55:17+08:00 +2026/05/15 11:55:17.460, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.00, 64 +2026-05-15T11:55:22+08:00 +2026/05/15 11:55:22.483, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.36, 63 +2026-05-15T11:55:27+08:00 +2026/05/15 11:55:27.508, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.71, 64 +2026-05-15T11:55:32+08:00 +2026/05/15 11:55:32.532, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.75, 64 +2026-05-15T11:55:37+08:00 +2026/05/15 11:55:37.555, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.56, 63 +2026-05-15T11:55:42+08:00 +2026/05/15 11:55:42.580, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.16, 63 +2026-05-15T11:55:47+08:00 +2026/05/15 11:55:47.604, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.33, 62 +2026-05-15T11:55:52+08:00 +2026/05/15 11:55:52.627, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.32, 64 +2026-05-15T11:55:57+08:00 +2026/05/15 11:55:57.652, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 361.40, 64 +2026-05-15T11:56:02+08:00 +2026/05/15 11:56:02.674, NVIDIA GeForce RTX 5090, 88, 39, 9607, 32607, 362.26, 64 +2026-05-15T11:56:07+08:00 +2026/05/15 11:56:07.732, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.65, 64 +2026-05-15T11:56:12+08:00 +2026/05/15 11:56:12.755, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.52, 62 +2026-05-15T11:56:17+08:00 +2026/05/15 11:56:17.809, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.14, 62 +2026-05-15T11:56:22+08:00 +2026/05/15 11:56:22.834, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.00, 63 +2026-05-15T11:56:27+08:00 +2026/05/15 11:56:27.885, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.66, 63 +2026-05-15T11:56:32+08:00 +2026/05/15 11:56:32.907, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.68, 62 +2026-05-15T11:56:37+08:00 +2026/05/15 11:56:37.931, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.15, 63 +2026-05-15T11:56:42+08:00 +2026/05/15 11:56:42.974, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.44, 64 +2026-05-15T11:56:48+08:00 +2026/05/15 11:56:48.014, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.07, 64 +2026-05-15T11:56:53+08:00 +2026/05/15 11:56:53.089, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.80, 63 +2026-05-15T11:56:58+08:00 +2026/05/15 11:56:58.113, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.43, 64 +2026-05-15T11:57:03+08:00 +2026/05/15 11:57:03.167, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.14, 64 +2026-05-15T11:57:08+08:00 +2026/05/15 11:57:08.192, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.67, 63 +2026-05-15T11:57:13+08:00 +2026/05/15 11:57:13.246, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.13, 64 +2026-05-15T11:57:18+08:00 +2026/05/15 11:57:18.270, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.19, 63 +2026-05-15T11:57:23+08:00 +2026/05/15 11:57:23.294, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.23, 63 +2026-05-15T11:57:28+08:00 +2026/05/15 11:57:28.316, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.28, 63 +2026-05-15T11:57:33+08:00 +2026/05/15 11:57:33.339, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.19, 63 +2026-05-15T11:57:38+08:00 +2026/05/15 11:57:38.362, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.39, 64 +2026-05-15T11:57:43+08:00 +2026/05/15 11:57:43.389, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.05, 64 +2026-05-15T11:57:48+08:00 +2026/05/15 11:57:48.413, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.20, 64 +2026-05-15T11:57:53+08:00 +2026/05/15 11:57:53.437, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 307.13, 62 +2026-05-15T11:57:58+08:00 +2026/05/15 11:57:58.463, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.40, 65 +2026-05-15T11:58:03+08:00 +2026/05/15 11:58:03.487, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.34, 63 +2026-05-15T11:58:08+08:00 +2026/05/15 11:58:08.510, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.24, 62 +2026-05-15T11:58:13+08:00 +2026/05/15 11:58:13.577, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.07, 63 +2026-05-15T11:58:18+08:00 +2026/05/15 11:58:18.610, NVIDIA GeForce RTX 5090, 12, 11, 9607, 32607, 219.74, 63 +2026-05-15T11:58:23+08:00 +2026/05/15 11:58:23.632, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.19, 63 +2026-05-15T11:58:28+08:00 +2026/05/15 11:58:28.705, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.56, 63 +2026-05-15T11:58:33+08:00 +2026/05/15 11:58:33.728, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.55, 62 +2026-05-15T11:58:38+08:00 +2026/05/15 11:58:38.751, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.37, 63 +2026-05-15T11:58:43+08:00 +2026/05/15 11:58:43.774, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.83, 63 +2026-05-15T11:58:48+08:00 +2026/05/15 11:58:48.798, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.59, 63 +2026-05-15T11:58:53+08:00 +2026/05/15 11:58:53.821, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.22, 63 +2026-05-15T11:58:58+08:00 +2026/05/15 11:58:58.844, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.98, 63 +2026-05-15T11:59:03+08:00 +2026/05/15 11:59:03.866, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.06, 63 +2026-05-15T11:59:08+08:00 +2026/05/15 11:59:08.893, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 245.18, 63 +2026-05-15T11:59:13+08:00 +2026/05/15 11:59:13.916, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.65, 63 +2026-05-15T11:59:18+08:00 +2026/05/15 11:59:18.942, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.25, 63 +2026-05-15T11:59:23+08:00 +2026/05/15 11:59:23.964, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.44, 63 +2026-05-15T11:59:28+08:00 +2026/05/15 11:59:28.987, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.95, 63 +2026-05-15T11:59:33+08:00 +2026/05/15 11:59:34.010, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.49, 63 +2026-05-15T11:59:39+08:00 +2026/05/15 11:59:39.035, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.88, 63 +2026-05-15T11:59:44+08:00 +2026/05/15 11:59:44.059, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.90, 63 +2026-05-15T11:59:49+08:00 +2026/05/15 11:59:49.084, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.37, 64 +2026-05-15T11:59:54+08:00 +2026/05/15 11:59:54.111, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.31, 64 +2026-05-15T11:59:59+08:00 +2026/05/15 11:59:59.134, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.04, 63 +2026-05-15T12:00:04+08:00 +2026/05/15 12:00:04.157, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.90, 63 +2026-05-15T12:00:09+08:00 +2026/05/15 12:00:09.182, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.05, 64 +2026-05-15T12:00:14+08:00 +2026/05/15 12:00:14.207, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 361.70, 63 +2026-05-15T12:00:19+08:00 +2026/05/15 12:00:19.232, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.01, 63 +2026-05-15T12:00:24+08:00 +2026/05/15 12:00:24.256, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.70, 63 +2026-05-15T12:00:29+08:00 +2026/05/15 12:00:29.283, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.90, 63 +2026-05-15T12:00:34+08:00 +2026/05/15 12:00:34.310, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.12, 62 +2026-05-15T12:00:39+08:00 +2026/05/15 12:00:39.333, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.90, 62 +2026-05-15T12:00:44+08:00 +2026/05/15 12:00:44.358, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.46, 62 +2026-05-15T12:00:49+08:00 +2026/05/15 12:00:49.381, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.85, 62 +2026-05-15T12:00:54+08:00 +2026/05/15 12:00:54.405, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.11, 62 +2026-05-15T12:00:59+08:00 +2026/05/15 12:00:59.430, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 348.01, 63 +2026-05-15T12:01:04+08:00 +2026/05/15 12:01:04.455, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.35, 64 +2026-05-15T12:01:09+08:00 +2026/05/15 12:01:09.478, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.62, 64 +2026-05-15T12:01:14+08:00 +2026/05/15 12:01:14.503, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.26, 64 +2026-05-15T12:01:19+08:00 +2026/05/15 12:01:19.528, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.48, 64 +2026-05-15T12:01:24+08:00 +2026/05/15 12:01:24.552, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.74, 64 +2026-05-15T12:01:29+08:00 +2026/05/15 12:01:29.575, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.80, 64 +2026-05-15T12:01:34+08:00 +2026/05/15 12:01:34.602, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.24, 63 +2026-05-15T12:01:39+08:00 +2026/05/15 12:01:39.628, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.34, 63 +2026-05-15T12:01:44+08:00 +2026/05/15 12:01:44.651, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.10, 64 +2026-05-15T12:01:49+08:00 +2026/05/15 12:01:49.672, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.28, 63 +2026-05-15T12:01:54+08:00 +2026/05/15 12:01:54.694, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.45, 63 +2026-05-15T12:01:59+08:00 +2026/05/15 12:01:59.718, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.97, 63 +2026-05-15T12:02:04+08:00 +2026/05/15 12:02:04.743, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.70, 64 +2026-05-15T12:02:09+08:00 +2026/05/15 12:02:09.768, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.28, 63 +2026-05-15T12:02:14+08:00 +2026/05/15 12:02:14.792, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.40, 64 +2026-05-15T12:02:19+08:00 +2026/05/15 12:02:19.815, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.89, 63 +2026-05-15T12:02:24+08:00 +2026/05/15 12:02:24.839, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 258.97, 63 +2026-05-15T12:02:29+08:00 +2026/05/15 12:02:29.864, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.33, 64 +2026-05-15T12:02:34+08:00 +2026/05/15 12:02:34.889, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.77, 65 +2026-05-15T12:02:39+08:00 +2026/05/15 12:02:39.912, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.56, 64 +2026-05-15T12:02:44+08:00 +2026/05/15 12:02:44.939, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.70, 63 +2026-05-15T12:02:49+08:00 +2026/05/15 12:02:49.963, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.67, 64 +2026-05-15T12:02:54+08:00 +2026/05/15 12:02:54.988, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.20, 64 +2026-05-15T12:02:59+08:00 +2026/05/15 12:03:00.013, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.48, 64 +2026-05-15T12:03:05+08:00 +2026/05/15 12:03:05.035, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.60, 63 +2026-05-15T12:03:10+08:00 +2026/05/15 12:03:10.062, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.64, 63 +2026-05-15T12:03:15+08:00 +2026/05/15 12:03:15.087, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.58, 63 +2026-05-15T12:03:20+08:00 +2026/05/15 12:03:20.110, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.67, 63 +2026-05-15T12:03:25+08:00 +2026/05/15 12:03:25.135, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.25, 63 +2026-05-15T12:03:30+08:00 +2026/05/15 12:03:30.158, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.75, 63 +2026-05-15T12:03:35+08:00 +2026/05/15 12:03:35.180, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.08, 64 +2026-05-15T12:03:40+08:00 +2026/05/15 12:03:40.208, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 260.38, 63 +2026-05-15T12:03:45+08:00 +2026/05/15 12:03:45.232, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.83, 63 +2026-05-15T12:03:50+08:00 +2026/05/15 12:03:50.254, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.55, 64 +2026-05-15T12:03:55+08:00 +2026/05/15 12:03:55.279, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.97, 64 +2026-05-15T12:04:00+08:00 +2026/05/15 12:04:00.303, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.04, 63 +2026-05-15T12:04:05+08:00 +2026/05/15 12:04:05.332, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.53, 64 +2026-05-15T12:04:10+08:00 +2026/05/15 12:04:10.356, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.87, 64 +2026-05-15T12:04:15+08:00 +2026/05/15 12:04:15.380, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.94, 62 +2026-05-15T12:04:20+08:00 +2026/05/15 12:04:20.404, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 358.17, 62 +2026-05-15T12:04:25+08:00 +2026/05/15 12:04:25.427, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 359.58, 64 +2026-05-15T12:04:30+08:00 +2026/05/15 12:04:30.450, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 352.65, 63 +2026-05-15T12:04:35+08:00 +2026/05/15 12:04:35.473, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.27, 64 +2026-05-15T12:04:40+08:00 +2026/05/15 12:04:40.502, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.05, 63 +2026-05-15T12:04:45+08:00 +2026/05/15 12:04:45.526, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.54, 64 +2026-05-15T12:04:50+08:00 +2026/05/15 12:04:50.550, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.22, 64 +2026-05-15T12:04:55+08:00 +2026/05/15 12:04:55.580, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 257.13, 63 +2026-05-15T12:05:00+08:00 +2026/05/15 12:05:00.603, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.71, 63 +2026-05-15T12:05:05+08:00 +2026/05/15 12:05:05.627, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 361.95, 63 +2026-05-15T12:05:10+08:00 +2026/05/15 12:05:10.650, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.11, 63 +2026-05-15T12:05:15+08:00 +2026/05/15 12:05:15.693, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.52, 62 +2026-05-15T12:05:20+08:00 +2026/05/15 12:05:20.716, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 362.22, 63 +2026-05-15T12:05:25+08:00 +2026/05/15 12:05:25.738, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.26, 63 +2026-05-15T12:05:30+08:00 +2026/05/15 12:05:30.786, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.36, 65 +2026-05-15T12:05:35+08:00 +2026/05/15 12:05:35.809, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.21, 63 +2026-05-15T12:05:40+08:00 +2026/05/15 12:05:40.876, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.12, 64 +2026-05-15T12:05:45+08:00 +2026/05/15 12:05:45.900, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.77, 63 +2026-05-15T12:05:50+08:00 +2026/05/15 12:05:50.953, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.84, 64 +2026-05-15T12:05:55+08:00 +2026/05/15 12:05:56.012, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.81, 63 +2026-05-15T12:06:01+08:00 +2026/05/15 12:06:01.035, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.89, 63 +2026-05-15T12:06:06+08:00 +2026/05/15 12:06:06.058, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.78, 63 +2026-05-15T12:06:11+08:00 +2026/05/15 12:06:11.100, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 256.77, 64 +2026-05-15T12:06:16+08:00 +2026/05/15 12:06:16.143, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.74, 63 +2026-05-15T12:06:21+08:00 +2026/05/15 12:06:21.183, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.74, 63 +2026-05-15T12:06:26+08:00 +2026/05/15 12:06:26.227, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.53, 63 +2026-05-15T12:06:31+08:00 +2026/05/15 12:06:31.270, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.23, 63 +2026-05-15T12:06:36+08:00 +2026/05/15 12:06:36.320, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.22, 62 +2026-05-15T12:06:41+08:00 +2026/05/15 12:06:41.345, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.49, 64 +2026-05-15T12:06:46+08:00 +2026/05/15 12:06:46.396, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.86, 63 +2026-05-15T12:06:51+08:00 +2026/05/15 12:06:51.444, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 298.15, 63 +2026-05-15T12:06:56+08:00 +2026/05/15 12:06:56.467, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.62, 63 +2026-05-15T12:07:01+08:00 +2026/05/15 12:07:01.492, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.02, 63 +2026-05-15T12:07:06+08:00 +2026/05/15 12:07:06.532, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.89, 63 +2026-05-15T12:07:11+08:00 +2026/05/15 12:07:11.578, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.81, 63 +2026-05-15T12:07:16+08:00 +2026/05/15 12:07:16.604, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.12, 64 +2026-05-15T12:07:21+08:00 +2026/05/15 12:07:21.629, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 361.91, 64 +2026-05-15T12:07:26+08:00 +2026/05/15 12:07:26.654, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.90, 63 +2026-05-15T12:07:31+08:00 +2026/05/15 12:07:31.681, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 360.49, 64 +2026-05-15T12:07:36+08:00 +2026/05/15 12:07:36.705, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.73, 64 +2026-05-15T12:07:41+08:00 +2026/05/15 12:07:41.729, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 361.27, 63 +2026-05-15T12:07:46+08:00 +2026/05/15 12:07:46.754, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 360.97, 63 +2026-05-15T12:07:51+08:00 +2026/05/15 12:07:51.778, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.72, 63 +2026-05-15T12:07:56+08:00 +2026/05/15 12:07:56.801, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.03, 63 +2026-05-15T12:08:01+08:00 +2026/05/15 12:08:01.826, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.65, 63 +2026-05-15T12:08:06+08:00 +2026/05/15 12:08:06.851, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 352.66, 62 +2026-05-15T12:08:11+08:00 +2026/05/15 12:08:11.880, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.66, 62 +2026-05-15T12:08:16+08:00 +2026/05/15 12:08:16.904, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.33, 62 +2026-05-15T12:08:21+08:00 +2026/05/15 12:08:21.927, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.28, 62 +2026-05-15T12:08:26+08:00 +2026/05/15 12:08:26.951, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.02, 63 +2026-05-15T12:08:31+08:00 +2026/05/15 12:08:31.979, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.62, 63 +2026-05-15T12:08:36+08:00 +2026/05/15 12:08:37.001, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.81, 63 +2026-05-15T12:08:42+08:00 +2026/05/15 12:08:42.023, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 278.20, 63 +2026-05-15T12:08:47+08:00 +2026/05/15 12:08:47.047, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.81, 63 +2026-05-15T12:08:52+08:00 +2026/05/15 12:08:52.070, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.59, 63 +2026-05-15T12:08:57+08:00 +2026/05/15 12:08:57.094, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.59, 62 +2026-05-15T12:09:02+08:00 +2026/05/15 12:09:02.118, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.52, 63 +2026-05-15T12:09:07+08:00 +2026/05/15 12:09:07.141, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.06, 63 +2026-05-15T12:09:12+08:00 +2026/05/15 12:09:12.166, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.45, 63 +2026-05-15T12:09:17+08:00 +2026/05/15 12:09:17.190, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.54, 64 +2026-05-15T12:09:22+08:00 +2026/05/15 12:09:22.213, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.27, 63 +2026-05-15T12:09:27+08:00 +2026/05/15 12:09:27.236, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.05, 63 +2026-05-15T12:09:32+08:00 +2026/05/15 12:09:32.264, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.08, 63 +2026-05-15T12:09:37+08:00 +2026/05/15 12:09:37.288, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.87, 63 +2026-05-15T12:09:42+08:00 +2026/05/15 12:09:42.312, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.57, 63 +2026-05-15T12:09:47+08:00 +2026/05/15 12:09:47.336, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.10, 63 +2026-05-15T12:09:52+08:00 +2026/05/15 12:09:52.363, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.63, 63 +2026-05-15T12:09:57+08:00 +2026/05/15 12:09:57.387, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.30, 63 +2026-05-15T12:10:02+08:00 +2026/05/15 12:10:02.411, NVIDIA GeForce RTX 5090, 78, 35, 9607, 32607, 359.60, 63 +2026-05-15T12:10:07+08:00 +2026/05/15 12:10:07.434, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.77, 64 +2026-05-15T12:10:12+08:00 +2026/05/15 12:10:12.458, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.88, 63 +2026-05-15T12:10:17+08:00 +2026/05/15 12:10:17.481, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.02, 63 +2026-05-15T12:10:22+08:00 +2026/05/15 12:10:22.506, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.08, 62 +2026-05-15T12:10:27+08:00 +2026/05/15 12:10:27.530, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 360.32, 64 +2026-05-15T12:10:32+08:00 +2026/05/15 12:10:32.553, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.57, 63 +2026-05-15T12:10:37+08:00 +2026/05/15 12:10:37.577, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.05, 63 +2026-05-15T12:10:42+08:00 +2026/05/15 12:10:42.599, NVIDIA GeForce RTX 5090, 87, 36, 9607, 32607, 358.01, 64 +2026-05-15T12:10:47+08:00 +2026/05/15 12:10:47.623, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.50, 64 +2026-05-15T12:10:52+08:00 +2026/05/15 12:10:52.646, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.74, 63 +2026-05-15T12:10:57+08:00 +2026/05/15 12:10:57.672, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.70, 63 +2026-05-15T12:11:02+08:00 +2026/05/15 12:11:02.696, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.78, 64 +2026-05-15T12:11:07+08:00 +2026/05/15 12:11:07.739, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.98, 62 +2026-05-15T12:11:12+08:00 +2026/05/15 12:11:12.799, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.36, 62 +2026-05-15T12:11:17+08:00 +2026/05/15 12:11:17.823, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.67, 64 +2026-05-15T12:11:22+08:00 +2026/05/15 12:11:22.875, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.96, 64 +2026-05-15T12:11:27+08:00 +2026/05/15 12:11:27.899, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.07, 64 +2026-05-15T12:11:32+08:00 +2026/05/15 12:11:32.969, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.13, 65 +2026-05-15T12:11:37+08:00 +2026/05/15 12:11:38.016, NVIDIA GeForce RTX 5090, 32, 19, 9607, 32607, 197.98, 61 +2026-05-15T12:11:43+08:00 +2026/05/15 12:11:43.039, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.83, 64 +2026-05-15T12:11:48+08:00 +2026/05/15 12:11:48.112, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.22, 64 +2026-05-15T12:11:53+08:00 +2026/05/15 12:11:53.134, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.83, 63 +2026-05-15T12:11:58+08:00 +2026/05/15 12:11:58.191, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.16, 62 +2026-05-15T12:12:03+08:00 +2026/05/15 12:12:03.214, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.56, 62 +2026-05-15T12:12:08+08:00 +2026/05/15 12:12:08.286, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.96, 63 +2026-05-15T12:12:13+08:00 +2026/05/15 12:12:13.325, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.90, 63 +2026-05-15T12:12:18+08:00 +2026/05/15 12:12:18.350, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.15, 63 +2026-05-15T12:12:23+08:00 +2026/05/15 12:12:23.376, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.16, 63 +2026-05-15T12:12:28+08:00 +2026/05/15 12:12:28.399, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.82, 64 +2026-05-15T12:12:33+08:00 +2026/05/15 12:12:33.424, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.24, 63 +2026-05-15T12:12:38+08:00 +2026/05/15 12:12:38.450, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.69, 63 +2026-05-15T12:12:43+08:00 +2026/05/15 12:12:43.473, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.30, 63 +2026-05-15T12:12:48+08:00 +2026/05/15 12:12:48.498, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.47, 63 +2026-05-15T12:12:53+08:00 +2026/05/15 12:12:53.522, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.24, 64 +2026-05-15T12:12:58+08:00 +2026/05/15 12:12:58.545, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.65, 63 +2026-05-15T12:13:03+08:00 +2026/05/15 12:13:03.569, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.88, 63 +2026-05-15T12:13:08+08:00 +2026/05/15 12:13:08.593, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.85, 63 +2026-05-15T12:13:13+08:00 +2026/05/15 12:13:13.615, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.98, 63 +2026-05-15T12:13:18+08:00 +2026/05/15 12:13:18.639, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.01, 64 +2026-05-15T12:13:23+08:00 +2026/05/15 12:13:23.663, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.47, 63 +2026-05-15T12:13:28+08:00 +2026/05/15 12:13:28.685, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.95, 64 +2026-05-15T12:13:33+08:00 +2026/05/15 12:13:33.710, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.13, 64 +2026-05-15T12:13:38+08:00 +2026/05/15 12:13:38.734, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.08, 64 +2026-05-15T12:13:43+08:00 +2026/05/15 12:13:43.759, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.16, 64 +2026-05-15T12:13:48+08:00 +2026/05/15 12:13:48.783, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 309.88, 62 +2026-05-15T12:13:53+08:00 +2026/05/15 12:13:53.808, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.49, 63 +2026-05-15T12:13:58+08:00 +2026/05/15 12:13:58.836, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.14, 64 +2026-05-15T12:14:03+08:00 +2026/05/15 12:14:03.860, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.82, 64 +2026-05-15T12:14:08+08:00 +2026/05/15 12:14:08.885, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.86, 64 +2026-05-15T12:14:13+08:00 +2026/05/15 12:14:13.907, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.24, 64 +2026-05-15T12:14:18+08:00 +2026/05/15 12:14:18.934, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.39, 64 +2026-05-15T12:14:23+08:00 +2026/05/15 12:14:23.957, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.13, 64 +2026-05-15T12:14:28+08:00 +2026/05/15 12:14:28.985, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.79, 63 +2026-05-15T12:14:33+08:00 +2026/05/15 12:14:34.009, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.07, 63 +2026-05-15T12:14:39+08:00 +2026/05/15 12:14:39.037, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.93, 63 +2026-05-15T12:14:44+08:00 +2026/05/15 12:14:44.059, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.74, 64 +2026-05-15T12:14:49+08:00 +2026/05/15 12:14:49.083, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.97, 63 +2026-05-15T12:14:54+08:00 +2026/05/15 12:14:54.106, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.50, 63 +2026-05-15T12:14:59+08:00 +2026/05/15 12:14:59.132, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.34, 63 +2026-05-15T12:15:04+08:00 +2026/05/15 12:15:04.155, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 324.77, 64 +2026-05-15T12:15:09+08:00 +2026/05/15 12:15:09.178, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.22, 63 +2026-05-15T12:15:14+08:00 +2026/05/15 12:15:14.203, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.92, 64 +2026-05-15T12:15:19+08:00 +2026/05/15 12:15:19.226, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.81, 64 +2026-05-15T12:15:24+08:00 +2026/05/15 12:15:24.250, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 361.76, 63 +2026-05-15T12:15:29+08:00 +2026/05/15 12:15:29.275, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 362.35, 64 +2026-05-15T12:15:34+08:00 +2026/05/15 12:15:34.300, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 361.16, 64 +2026-05-15T12:15:39+08:00 +2026/05/15 12:15:39.324, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 350.02, 59 +2026-05-15T12:15:44+08:00 +2026/05/15 12:15:44.345, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.44, 63 +2026-05-15T12:15:49+08:00 +2026/05/15 12:15:49.369, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.36, 62 +2026-05-15T12:15:54+08:00 +2026/05/15 12:15:54.393, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 364.47, 63 +2026-05-15T12:15:59+08:00 +2026/05/15 12:15:59.417, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.00, 64 +2026-05-15T12:16:04+08:00 +2026/05/15 12:16:04.439, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.69, 64 +2026-05-15T12:16:09+08:00 +2026/05/15 12:16:09.504, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.69, 62 +2026-05-15T12:16:14+08:00 +2026/05/15 12:16:14.528, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.57, 64 +2026-05-15T12:16:19+08:00 +2026/05/15 12:16:19.573, NVIDIA GeForce RTX 5090, 75, 34, 9607, 32607, 263.20, 61 +2026-05-15T12:16:24+08:00 +2026/05/15 12:16:24.600, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.02, 62 +2026-05-15T12:16:29+08:00 +2026/05/15 12:16:29.677, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.60, 63 +2026-05-15T12:16:34+08:00 +2026/05/15 12:16:34.703, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.65, 64 +2026-05-15T12:16:39+08:00 +2026/05/15 12:16:39.743, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.57, 64 +2026-05-15T12:16:44+08:00 +2026/05/15 12:16:44.769, NVIDIA GeForce RTX 5090, 88, 39, 9607, 32607, 362.05, 63 +2026-05-15T12:16:49+08:00 +2026/05/15 12:16:49.809, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.40, 63 +2026-05-15T12:16:54+08:00 +2026/05/15 12:16:54.851, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.92, 64 +2026-05-15T12:16:59+08:00 +2026/05/15 12:16:59.895, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 266.39, 64 +2026-05-15T12:17:04+08:00 +2026/05/15 12:17:04.918, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.52, 63 +2026-05-15T12:17:09+08:00 +2026/05/15 12:17:09.946, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.69, 63 +2026-05-15T12:17:14+08:00 +2026/05/15 12:17:14.969, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 363.53, 64 +2026-05-15T12:17:19+08:00 +2026/05/15 12:17:19.991, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.69, 63 +2026-05-15T12:17:24+08:00 +2026/05/15 12:17:25.014, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.52, 62 +2026-05-15T12:17:30+08:00 +2026/05/15 12:17:30.036, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.17, 63 +2026-05-15T12:17:35+08:00 +2026/05/15 12:17:35.059, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.39, 63 +2026-05-15T12:17:40+08:00 +2026/05/15 12:17:40.083, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 290.62, 63 +2026-05-15T12:17:45+08:00 +2026/05/15 12:17:45.105, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.50, 64 +2026-05-15T12:17:50+08:00 +2026/05/15 12:17:50.128, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.62, 64 +2026-05-15T12:17:55+08:00 +2026/05/15 12:17:55.152, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.84, 62 +2026-05-15T12:18:00+08:00 +2026/05/15 12:18:00.177, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.23, 64 +2026-05-15T12:18:05+08:00 +2026/05/15 12:18:05.201, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 363.15, 63 +2026-05-15T12:18:10+08:00 +2026/05/15 12:18:10.225, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.23, 64 +2026-05-15T12:18:15+08:00 +2026/05/15 12:18:15.249, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.22, 63 +2026-05-15T12:18:20+08:00 +2026/05/15 12:18:20.272, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.94, 63 +2026-05-15T12:18:25+08:00 +2026/05/15 12:18:25.297, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.31, 64 +2026-05-15T12:18:30+08:00 +2026/05/15 12:18:30.321, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.78, 64 +2026-05-15T12:18:35+08:00 +2026/05/15 12:18:35.344, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.43, 63 +2026-05-15T12:18:40+08:00 +2026/05/15 12:18:40.367, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.93, 64 +2026-05-15T12:18:45+08:00 +2026/05/15 12:18:45.394, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.55, 63 +2026-05-15T12:18:50+08:00 +2026/05/15 12:18:50.420, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.54, 64 +2026-05-15T12:18:55+08:00 +2026/05/15 12:18:55.443, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.70, 64 +2026-05-15T12:19:00+08:00 +2026/05/15 12:19:00.466, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.32, 63 +2026-05-15T12:19:05+08:00 +2026/05/15 12:19:05.490, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.14, 64 +2026-05-15T12:19:10+08:00 +2026/05/15 12:19:10.514, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.10, 63 +2026-05-15T12:19:15+08:00 +2026/05/15 12:19:15.539, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.20, 64 +2026-05-15T12:19:20+08:00 +2026/05/15 12:19:20.563, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.71, 64 +2026-05-15T12:19:25+08:00 +2026/05/15 12:19:25.586, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.66, 64 +2026-05-15T12:19:30+08:00 +2026/05/15 12:19:30.609, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.81, 64 +2026-05-15T12:19:35+08:00 +2026/05/15 12:19:35.631, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.15, 64 +2026-05-15T12:19:40+08:00 +2026/05/15 12:19:40.655, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.44, 64 +2026-05-15T12:19:45+08:00 +2026/05/15 12:19:45.678, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 362.43, 64 +2026-05-15T12:19:50+08:00 +2026/05/15 12:19:50.702, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.21, 63 +2026-05-15T12:19:55+08:00 +2026/05/15 12:19:55.724, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.38, 63 +2026-05-15T12:20:00+08:00 +2026/05/15 12:20:00.747, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.47, 64 +2026-05-15T12:20:05+08:00 +2026/05/15 12:20:05.771, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 250.01, 63 +2026-05-15T12:20:10+08:00 +2026/05/15 12:20:10.798, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.82, 63 +2026-05-15T12:20:15+08:00 +2026/05/15 12:20:15.820, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.26, 65 +2026-05-15T12:20:20+08:00 +2026/05/15 12:20:20.847, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 362.60, 64 +2026-05-15T12:20:25+08:00 +2026/05/15 12:20:25.871, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.36, 64 +2026-05-15T12:20:30+08:00 +2026/05/15 12:20:30.898, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.57, 62 +2026-05-15T12:20:35+08:00 +2026/05/15 12:20:35.924, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.54, 64 +2026-05-15T12:20:40+08:00 +2026/05/15 12:20:40.952, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.14, 63 +2026-05-15T12:20:45+08:00 +2026/05/15 12:20:45.974, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.77, 63 +2026-05-15T12:20:50+08:00 +2026/05/15 12:20:50.997, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.08, 64 +2026-05-15T12:20:56+08:00 +2026/05/15 12:20:56.025, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.67, 63 +2026-05-15T12:21:01+08:00 +2026/05/15 12:21:01.049, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.06, 62 +2026-05-15T12:21:06+08:00 +2026/05/15 12:21:06.078, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.95, 64 +2026-05-15T12:21:11+08:00 +2026/05/15 12:21:11.101, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.35, 63 +2026-05-15T12:21:16+08:00 +2026/05/15 12:21:16.125, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.30, 64 +2026-05-15T12:21:21+08:00 +2026/05/15 12:21:21.148, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.10, 63 +2026-05-15T12:21:26+08:00 +2026/05/15 12:21:26.172, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.86, 64 +2026-05-15T12:21:31+08:00 +2026/05/15 12:21:31.197, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.01, 64 +2026-05-15T12:21:36+08:00 +2026/05/15 12:21:36.221, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.20, 63 +2026-05-15T12:21:41+08:00 +2026/05/15 12:21:41.246, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.40, 63 +2026-05-15T12:21:46+08:00 +2026/05/15 12:21:46.278, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.68, 63 +2026-05-15T12:21:51+08:00 +2026/05/15 12:21:51.301, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.82, 63 +2026-05-15T12:21:56+08:00 +2026/05/15 12:21:56.325, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 361.95, 63 +2026-05-15T12:22:01+08:00 +2026/05/15 12:22:01.349, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.99, 63 +2026-05-15T12:22:06+08:00 +2026/05/15 12:22:06.374, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.84, 62 +2026-05-15T12:22:11+08:00 +2026/05/15 12:22:11.395, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.25, 63 +2026-05-15T12:22:16+08:00 +2026/05/15 12:22:16.417, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.12, 64 +2026-05-15T12:22:21+08:00 +2026/05/15 12:22:21.446, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.81, 64 +2026-05-15T12:22:26+08:00 +2026/05/15 12:22:26.470, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 362.50, 63 +2026-05-15T12:22:31+08:00 +2026/05/15 12:22:31.496, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.40, 63 +2026-05-15T12:22:36+08:00 +2026/05/15 12:22:36.519, NVIDIA GeForce RTX 5090, 33, 11, 9607, 32607, 257.49, 61 +2026-05-15T12:22:41+08:00 +2026/05/15 12:22:41.544, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.42, 62 +2026-05-15T12:22:46+08:00 +2026/05/15 12:22:46.568, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.82, 62 +2026-05-15T12:22:51+08:00 +2026/05/15 12:22:51.589, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.95, 63 +2026-05-15T12:22:56+08:00 +2026/05/15 12:22:56.614, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.32, 63 +2026-05-15T12:23:01+08:00 +2026/05/15 12:23:01.637, NVIDIA GeForce RTX 5090, 87, 36, 9607, 32607, 361.04, 63 +2026-05-15T12:23:06+08:00 +2026/05/15 12:23:06.660, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.79, 64 +2026-05-15T12:23:11+08:00 +2026/05/15 12:23:11.682, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 335.42, 63 +2026-05-15T12:23:16+08:00 +2026/05/15 12:23:16.705, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.10, 63 +2026-05-15T12:23:21+08:00 +2026/05/15 12:23:21.732, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.31, 64 +2026-05-15T12:23:26+08:00 +2026/05/15 12:23:26.757, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.30, 63 +2026-05-15T12:23:31+08:00 +2026/05/15 12:23:31.781, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.92, 64 +2026-05-15T12:23:36+08:00 +2026/05/15 12:23:36.804, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.00, 64 +2026-05-15T12:23:41+08:00 +2026/05/15 12:23:41.830, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.32, 63 +2026-05-15T12:23:46+08:00 +2026/05/15 12:23:46.856, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 359.68, 64 +2026-05-15T12:23:51+08:00 +2026/05/15 12:23:51.881, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.41, 63 +2026-05-15T12:23:56+08:00 +2026/05/15 12:23:56.906, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.08, 63 +2026-05-15T12:24:01+08:00 +2026/05/15 12:24:01.931, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.58, 63 +2026-05-15T12:24:06+08:00 +2026/05/15 12:24:06.954, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 360.30, 63 +2026-05-15T12:24:11+08:00 +2026/05/15 12:24:11.978, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.07, 63 +2026-05-15T12:24:16+08:00 +2026/05/15 12:24:17.001, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.06, 63 +2026-05-15T12:24:22+08:00 +2026/05/15 12:24:22.023, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.64, 63 +2026-05-15T12:24:27+08:00 +2026/05/15 12:24:27.049, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.70, 63 +2026-05-15T12:24:32+08:00 +2026/05/15 12:24:32.074, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.96, 64 +2026-05-15T12:24:37+08:00 +2026/05/15 12:24:37.099, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 287.91, 57 +2026-05-15T12:24:42+08:00 +2026/05/15 12:24:42.122, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 360.87, 62 +2026-05-15T12:24:47+08:00 +2026/05/15 12:24:47.146, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.34, 63 +2026-05-15T12:24:52+08:00 +2026/05/15 12:24:52.170, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.23, 62 +2026-05-15T12:24:57+08:00 +2026/05/15 12:24:57.195, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.12, 63 +2026-05-15T12:25:02+08:00 +2026/05/15 12:25:02.219, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.58, 64 +2026-05-15T12:25:07+08:00 +2026/05/15 12:25:07.242, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.38, 64 +2026-05-15T12:25:12+08:00 +2026/05/15 12:25:12.265, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.48, 63 +2026-05-15T12:25:17+08:00 +2026/05/15 12:25:17.289, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.01, 64 +2026-05-15T12:25:22+08:00 +2026/05/15 12:25:22.313, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.59, 63 +2026-05-15T12:25:27+08:00 +2026/05/15 12:25:27.337, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.17, 62 +2026-05-15T12:25:32+08:00 +2026/05/15 12:25:32.361, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.89, 64 +2026-05-15T12:25:37+08:00 +2026/05/15 12:25:37.385, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.23, 64 +2026-05-15T12:25:42+08:00 +2026/05/15 12:25:42.408, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.93, 63 +2026-05-15T12:25:47+08:00 +2026/05/15 12:25:47.436, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 274.02, 64 +2026-05-15T12:25:52+08:00 +2026/05/15 12:25:52.458, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.60, 63 +2026-05-15T12:25:57+08:00 +2026/05/15 12:25:57.482, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 362.36, 64 +2026-05-15T12:26:02+08:00 +2026/05/15 12:26:02.523, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.52, 63 +2026-05-15T12:26:07+08:00 +2026/05/15 12:26:07.597, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.82, 63 +2026-05-15T12:26:12+08:00 +2026/05/15 12:26:12.645, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 271.68, 57 +2026-05-15T12:26:17+08:00 +2026/05/15 12:26:17.669, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.11, 62 +2026-05-15T12:26:22+08:00 +2026/05/15 12:26:22.711, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.70, 63 +2026-05-15T12:26:27+08:00 +2026/05/15 12:26:27.736, NVIDIA GeForce RTX 5090, 57, 20, 9607, 32607, 255.63, 61 +2026-05-15T12:26:32+08:00 +2026/05/15 12:26:32.761, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.98, 63 +2026-05-15T12:26:37+08:00 +2026/05/15 12:26:37.785, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.59, 63 +2026-05-15T12:26:42+08:00 +2026/05/15 12:26:42.856, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.79, 64 +2026-05-15T12:26:47+08:00 +2026/05/15 12:26:47.882, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.23, 63 +2026-05-15T12:26:52+08:00 +2026/05/15 12:26:52.923, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.79, 63 +2026-05-15T12:26:57+08:00 +2026/05/15 12:26:57.947, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.38, 64 +2026-05-15T12:27:02+08:00 +2026/05/15 12:27:02.970, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.07, 64 +2026-05-15T12:27:07+08:00 +2026/05/15 12:27:08.032, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.10, 63 +2026-05-15T12:27:13+08:00 +2026/05/15 12:27:13.057, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.24, 63 +2026-05-15T12:27:18+08:00 +2026/05/15 12:27:18.098, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.56, 63 +2026-05-15T12:27:23+08:00 +2026/05/15 12:27:23.123, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.98, 64 +2026-05-15T12:27:28+08:00 +2026/05/15 12:27:28.147, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.70, 63 +2026-05-15T12:27:33+08:00 +2026/05/15 12:27:33.172, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.15, 64 +2026-05-15T12:27:38+08:00 +2026/05/15 12:27:38.195, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.95, 63 +2026-05-15T12:27:43+08:00 +2026/05/15 12:27:43.219, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.61, 63 +2026-05-15T12:27:48+08:00 +2026/05/15 12:27:48.242, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.48, 63 +2026-05-15T12:27:53+08:00 +2026/05/15 12:27:53.267, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 361.89, 64 +2026-05-15T12:27:58+08:00 +2026/05/15 12:27:58.290, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.44, 64 +2026-05-15T12:28:03+08:00 +2026/05/15 12:28:03.314, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.25, 63 +2026-05-15T12:28:08+08:00 +2026/05/15 12:28:08.377, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.89, 63 +2026-05-15T12:28:13+08:00 +2026/05/15 12:28:13.404, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.32, 63 +2026-05-15T12:28:18+08:00 +2026/05/15 12:28:18.443, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.87, 63 +2026-05-15T12:28:23+08:00 +2026/05/15 12:28:23.466, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.60, 64 +2026-05-15T12:28:28+08:00 +2026/05/15 12:28:28.508, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.83, 64 +2026-05-15T12:28:33+08:00 +2026/05/15 12:28:33.565, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.92, 64 +2026-05-15T12:28:38+08:00 +2026/05/15 12:28:38.592, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.28, 63 +2026-05-15T12:28:43+08:00 +2026/05/15 12:28:43.651, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.89, 62 +2026-05-15T12:28:48+08:00 +2026/05/15 12:28:48.695, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.00, 63 +2026-05-15T12:28:53+08:00 +2026/05/15 12:28:53.730, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.78, 64 +2026-05-15T12:28:58+08:00 +2026/05/15 12:28:58.754, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.35, 64 +2026-05-15T12:29:03+08:00 +2026/05/15 12:29:03.827, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.64, 64 +2026-05-15T12:29:08+08:00 +2026/05/15 12:29:08.849, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.20, 63 +2026-05-15T12:29:13+08:00 +2026/05/15 12:29:13.873, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.98, 63 +2026-05-15T12:29:18+08:00 +2026/05/15 12:29:18.920, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.90, 63 +2026-05-15T12:29:23+08:00 +2026/05/15 12:29:23.943, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.08, 64 +2026-05-15T12:29:28+08:00 +2026/05/15 12:29:28.984, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.52, 63 +2026-05-15T12:29:33+08:00 +2026/05/15 12:29:34.009, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.87, 63 +2026-05-15T12:29:39+08:00 +2026/05/15 12:29:39.034, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.42, 64 +2026-05-15T12:29:44+08:00 +2026/05/15 12:29:44.057, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 363.05, 64 +2026-05-15T12:29:49+08:00 +2026/05/15 12:29:49.080, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.31, 63 +2026-05-15T12:29:54+08:00 +2026/05/15 12:29:54.107, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.96, 64 +2026-05-15T12:29:59+08:00 +2026/05/15 12:29:59.131, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 362.55, 64 +2026-05-15T12:30:04+08:00 +2026/05/15 12:30:04.156, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.95, 64 +2026-05-15T12:30:09+08:00 +2026/05/15 12:30:09.179, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.09, 64 +2026-05-15T12:30:14+08:00 +2026/05/15 12:30:14.208, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.10, 63 +2026-05-15T12:30:19+08:00 +2026/05/15 12:30:19.233, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.09, 64 +2026-05-15T12:30:24+08:00 +2026/05/15 12:30:24.257, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 330.73, 59 +2026-05-15T12:30:29+08:00 +2026/05/15 12:30:29.279, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 360.96, 64 +2026-05-15T12:30:34+08:00 +2026/05/15 12:30:34.305, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 362.94, 64 +2026-05-15T12:30:39+08:00 +2026/05/15 12:30:39.329, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.14, 64 +2026-05-15T12:30:44+08:00 +2026/05/15 12:30:44.355, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.27, 64 +2026-05-15T12:30:49+08:00 +2026/05/15 12:30:49.379, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 359.30, 63 +2026-05-15T12:30:54+08:00 +2026/05/15 12:30:54.402, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.28, 64 +2026-05-15T12:30:59+08:00 +2026/05/15 12:30:59.431, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.64, 64 +2026-05-15T12:31:04+08:00 +2026/05/15 12:31:04.458, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.75, 62 +2026-05-15T12:31:09+08:00 +2026/05/15 12:31:09.482, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.78, 63 +2026-05-15T12:31:14+08:00 +2026/05/15 12:31:14.505, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.43, 63 +2026-05-15T12:31:19+08:00 +2026/05/15 12:31:19.529, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.91, 64 +2026-05-15T12:31:24+08:00 +2026/05/15 12:31:24.554, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.57, 63 +2026-05-15T12:31:29+08:00 +2026/05/15 12:31:29.577, NVIDIA GeForce RTX 5090, 83, 37, 9607, 32607, 295.49, 63 +2026-05-15T12:31:34+08:00 +2026/05/15 12:31:34.602, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.87, 63 +2026-05-15T12:31:39+08:00 +2026/05/15 12:31:39.645, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.59, 63 +2026-05-15T12:31:44+08:00 +2026/05/15 12:31:44.673, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.93, 63 +2026-05-15T12:31:49+08:00 +2026/05/15 12:31:49.717, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.75, 62 +2026-05-15T12:31:54+08:00 +2026/05/15 12:31:54.741, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.75, 63 +2026-05-15T12:31:59+08:00 +2026/05/15 12:31:59.785, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.17, 63 +2026-05-15T12:32:04+08:00 +2026/05/15 12:32:04.857, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.38, 64 +2026-05-15T12:32:09+08:00 +2026/05/15 12:32:09.890, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.99, 63 +2026-05-15T12:32:14+08:00 +2026/05/15 12:32:14.917, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 361.89, 64 +2026-05-15T12:32:19+08:00 +2026/05/15 12:32:19.955, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.90, 64 +2026-05-15T12:32:24+08:00 +2026/05/15 12:32:24.980, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.68, 63 +2026-05-15T12:32:29+08:00 +2026/05/15 12:32:30.005, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.27, 63 +2026-05-15T12:32:35+08:00 +2026/05/15 12:32:35.031, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.12, 64 +2026-05-15T12:32:40+08:00 +2026/05/15 12:32:40.055, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.32, 63 +2026-05-15T12:32:45+08:00 +2026/05/15 12:32:45.080, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.24, 64 +2026-05-15T12:32:50+08:00 +2026/05/15 12:32:50.107, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.36, 63 +2026-05-15T12:32:55+08:00 +2026/05/15 12:32:55.133, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.39, 64 +2026-05-15T12:33:00+08:00 +2026/05/15 12:33:00.155, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.67, 63 +2026-05-15T12:33:05+08:00 +2026/05/15 12:33:05.179, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.38, 63 +2026-05-15T12:33:10+08:00 +2026/05/15 12:33:10.205, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.83, 63 +2026-05-15T12:33:15+08:00 +2026/05/15 12:33:15.229, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.57, 63 +2026-05-15T12:33:20+08:00 +2026/05/15 12:33:20.256, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.15, 62 +2026-05-15T12:33:25+08:00 +2026/05/15 12:33:25.286, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 343.40, 63 +2026-05-15T12:33:30+08:00 +2026/05/15 12:33:30.308, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.83, 63 +2026-05-15T12:33:35+08:00 +2026/05/15 12:33:35.332, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.65, 63 +2026-05-15T12:33:40+08:00 +2026/05/15 12:33:40.356, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.75, 63 +2026-05-15T12:33:45+08:00 +2026/05/15 12:33:45.380, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.62, 63 +2026-05-15T12:33:50+08:00 +2026/05/15 12:33:50.403, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.86, 63 +2026-05-15T12:33:55+08:00 +2026/05/15 12:33:55.426, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.13, 64 +2026-05-15T12:34:00+08:00 +2026/05/15 12:34:00.449, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.51, 63 +2026-05-15T12:34:05+08:00 +2026/05/15 12:34:05.471, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.16, 62 +2026-05-15T12:34:10+08:00 +2026/05/15 12:34:10.495, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.44, 62 +2026-05-15T12:34:15+08:00 +2026/05/15 12:34:15.518, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.55, 63 +2026-05-15T12:34:20+08:00 +2026/05/15 12:34:20.543, NVIDIA GeForce RTX 5090, 88, 39, 9607, 32607, 361.76, 64 +2026-05-15T12:34:25+08:00 +2026/05/15 12:34:25.566, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.15, 64 +2026-05-15T12:34:30+08:00 +2026/05/15 12:34:30.589, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.04, 64 +2026-05-15T12:34:35+08:00 +2026/05/15 12:34:35.616, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.49, 64 +2026-05-15T12:34:40+08:00 +2026/05/15 12:34:40.642, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 318.07, 58 +2026-05-15T12:34:45+08:00 +2026/05/15 12:34:45.666, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 357.76, 63 +2026-05-15T12:34:50+08:00 +2026/05/15 12:34:50.689, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.71, 64 +2026-05-15T12:34:55+08:00 +2026/05/15 12:34:55.716, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.90, 64 +2026-05-15T12:35:00+08:00 +2026/05/15 12:35:00.737, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.32, 64 +2026-05-15T12:35:05+08:00 +2026/05/15 12:35:05.762, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.08, 63 +2026-05-15T12:35:10+08:00 +2026/05/15 12:35:10.787, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.55, 62 +2026-05-15T12:35:15+08:00 +2026/05/15 12:35:15.813, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.03, 63 +2026-05-15T12:35:20+08:00 +2026/05/15 12:35:20.838, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.04, 64 +2026-05-15T12:35:25+08:00 +2026/05/15 12:35:25.862, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.90, 63 +2026-05-15T12:35:30+08:00 +2026/05/15 12:35:30.885, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.82, 63 +2026-05-15T12:35:35+08:00 +2026/05/15 12:35:35.912, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.83, 63 +2026-05-15T12:35:40+08:00 +2026/05/15 12:35:40.935, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.36, 64 +2026-05-15T12:35:45+08:00 +2026/05/15 12:35:45.962, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.14, 64 +2026-05-15T12:35:50+08:00 +2026/05/15 12:35:50.987, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.73, 64 +2026-05-15T12:35:55+08:00 +2026/05/15 12:35:56.012, NVIDIA GeForce RTX 5090, 74, 29, 9607, 32607, 253.22, 61 +2026-05-15T12:36:01+08:00 +2026/05/15 12:36:01.040, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.72, 63 +2026-05-15T12:36:06+08:00 +2026/05/15 12:36:06.066, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.32, 63 +2026-05-15T12:36:11+08:00 +2026/05/15 12:36:11.087, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.96, 64 +2026-05-15T12:36:16+08:00 +2026/05/15 12:36:16.110, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.40, 62 +2026-05-15T12:36:21+08:00 +2026/05/15 12:36:21.134, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.76, 64 +2026-05-15T12:36:26+08:00 +2026/05/15 12:36:26.157, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.39, 63 +2026-05-15T12:36:31+08:00 +2026/05/15 12:36:31.184, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.95, 64 +2026-05-15T12:36:36+08:00 +2026/05/15 12:36:36.207, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 297.71, 63 +2026-05-15T12:36:41+08:00 +2026/05/15 12:36:41.231, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.29, 64 +2026-05-15T12:36:46+08:00 +2026/05/15 12:36:46.255, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.03, 64 +2026-05-15T12:36:51+08:00 +2026/05/15 12:36:51.278, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.46, 62 +2026-05-15T12:36:56+08:00 +2026/05/15 12:36:56.303, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.45, 64 +2026-05-15T12:37:01+08:00 +2026/05/15 12:37:01.326, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.06, 64 +2026-05-15T12:37:06+08:00 +2026/05/15 12:37:06.348, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.28, 64 +2026-05-15T12:37:11+08:00 +2026/05/15 12:37:11.371, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 313.34, 58 +2026-05-15T12:37:16+08:00 +2026/05/15 12:37:16.395, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.95, 63 +2026-05-15T12:37:21+08:00 +2026/05/15 12:37:21.420, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 362.93, 63 +2026-05-15T12:37:26+08:00 +2026/05/15 12:37:26.447, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.75, 64 +2026-05-15T12:37:31+08:00 +2026/05/15 12:37:31.471, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 253.42, 63 +2026-05-15T12:37:36+08:00 +2026/05/15 12:37:36.493, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.61, 62 +2026-05-15T12:37:41+08:00 +2026/05/15 12:37:41.518, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.20, 64 +2026-05-15T12:37:46+08:00 +2026/05/15 12:37:46.543, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.69, 63 +2026-05-15T12:37:51+08:00 +2026/05/15 12:37:51.566, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.60, 64 +2026-05-15T12:37:56+08:00 +2026/05/15 12:37:56.588, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.92, 63 +2026-05-15T12:38:01+08:00 +2026/05/15 12:38:01.612, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.51, 64 +2026-05-15T12:38:06+08:00 +2026/05/15 12:38:06.635, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.49, 63 +2026-05-15T12:38:11+08:00 +2026/05/15 12:38:11.657, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.55, 64 +2026-05-15T12:38:16+08:00 +2026/05/15 12:38:16.681, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.61, 64 +2026-05-15T12:38:21+08:00 +2026/05/15 12:38:21.705, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.26, 64 +2026-05-15T12:38:26+08:00 +2026/05/15 12:38:26.726, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.55, 64 +2026-05-15T12:38:31+08:00 +2026/05/15 12:38:31.751, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.71, 63 +2026-05-15T12:38:36+08:00 +2026/05/15 12:38:36.778, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.08, 63 +2026-05-15T12:38:41+08:00 +2026/05/15 12:38:41.802, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.60, 64 +2026-05-15T12:38:46+08:00 +2026/05/15 12:38:46.830, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.53, 64 +2026-05-15T12:38:51+08:00 +2026/05/15 12:38:51.854, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.95, 63 +2026-05-15T12:38:56+08:00 +2026/05/15 12:38:56.880, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.06, 64 +2026-05-15T12:39:01+08:00 +2026/05/15 12:39:01.905, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.50, 64 +2026-05-15T12:39:06+08:00 +2026/05/15 12:39:06.931, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.66, 63 +2026-05-15T12:39:11+08:00 +2026/05/15 12:39:11.954, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 326.48, 63 +2026-05-15T12:39:16+08:00 +2026/05/15 12:39:16.977, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.72, 63 +2026-05-15T12:39:21+08:00 +2026/05/15 12:39:22.004, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.08, 63 +2026-05-15T12:39:27+08:00 +2026/05/15 12:39:27.028, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.04, 64 +2026-05-15T12:39:32+08:00 +2026/05/15 12:39:32.051, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.29, 63 +2026-05-15T12:39:37+08:00 +2026/05/15 12:39:37.073, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.84, 63 +2026-05-15T12:39:42+08:00 +2026/05/15 12:39:42.097, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.43, 64 +2026-05-15T12:39:47+08:00 +2026/05/15 12:39:47.119, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.73, 64 +2026-05-15T12:39:52+08:00 +2026/05/15 12:39:52.142, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.80, 62 +2026-05-15T12:39:57+08:00 +2026/05/15 12:39:57.165, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 361.72, 63 +2026-05-15T12:40:02+08:00 +2026/05/15 12:40:02.189, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.29, 64 +2026-05-15T12:40:07+08:00 +2026/05/15 12:40:07.215, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.88, 63 +2026-05-15T12:40:12+08:00 +2026/05/15 12:40:12.238, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.31, 64 +2026-05-15T12:40:17+08:00 +2026/05/15 12:40:17.261, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.72, 63 +2026-05-15T12:40:22+08:00 +2026/05/15 12:40:22.284, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.38, 64 +2026-05-15T12:40:27+08:00 +2026/05/15 12:40:27.309, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.07, 64 +2026-05-15T12:40:32+08:00 +2026/05/15 12:40:32.332, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 237.96, 62 +2026-05-15T12:40:37+08:00 +2026/05/15 12:40:37.355, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.64, 63 +2026-05-15T12:40:42+08:00 +2026/05/15 12:40:42.379, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.95, 63 +2026-05-15T12:40:47+08:00 +2026/05/15 12:40:47.404, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.96, 63 +2026-05-15T12:40:52+08:00 +2026/05/15 12:40:52.427, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.55, 63 +2026-05-15T12:40:57+08:00 +2026/05/15 12:40:57.451, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.88, 64 +2026-05-15T12:41:02+08:00 +2026/05/15 12:41:02.475, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.43, 64 +2026-05-15T12:41:07+08:00 +2026/05/15 12:41:07.497, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.13, 64 +2026-05-15T12:41:12+08:00 +2026/05/15 12:41:12.521, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.33, 64 +2026-05-15T12:41:17+08:00 +2026/05/15 12:41:17.543, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.69, 62 +2026-05-15T12:41:22+08:00 +2026/05/15 12:41:22.568, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.92, 63 +2026-05-15T12:41:27+08:00 +2026/05/15 12:41:27.592, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.26, 63 +2026-05-15T12:41:32+08:00 +2026/05/15 12:41:32.617, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 361.10, 64 +2026-05-15T12:41:37+08:00 +2026/05/15 12:41:37.642, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.59, 62 +2026-05-15T12:41:42+08:00 +2026/05/15 12:41:42.668, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.95, 64 +2026-05-15T12:41:47+08:00 +2026/05/15 12:41:47.692, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.14, 63 +2026-05-15T12:41:52+08:00 +2026/05/15 12:41:52.716, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.02, 63 +2026-05-15T12:41:57+08:00 +2026/05/15 12:41:57.741, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.75, 63 +2026-05-15T12:42:02+08:00 +2026/05/15 12:42:02.767, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 361.69, 63 +2026-05-15T12:42:07+08:00 +2026/05/15 12:42:07.795, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 355.71, 64 +2026-05-15T12:42:12+08:00 +2026/05/15 12:42:12.819, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.79, 62 +2026-05-15T12:42:17+08:00 +2026/05/15 12:42:17.842, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.36, 65 +2026-05-15T12:42:22+08:00 +2026/05/15 12:42:22.869, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.63, 63 +2026-05-15T12:42:27+08:00 +2026/05/15 12:42:27.892, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.70, 64 +2026-05-15T12:42:32+08:00 +2026/05/15 12:42:32.920, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 352.68, 64 +2026-05-15T12:42:37+08:00 +2026/05/15 12:42:37.945, NVIDIA GeForce RTX 5090, 67, 31, 9607, 32607, 195.95, 62 +2026-05-15T12:42:42+08:00 +2026/05/15 12:42:42.971, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.23, 63 +2026-05-15T12:42:47+08:00 +2026/05/15 12:42:47.994, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.43, 65 +2026-05-15T12:42:53+08:00 +2026/05/15 12:42:53.017, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.63, 64 +2026-05-15T12:42:58+08:00 +2026/05/15 12:42:58.088, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.43, 65 +2026-05-15T12:43:03+08:00 +2026/05/15 12:43:03.111, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.43, 64 +2026-05-15T12:43:08+08:00 +2026/05/15 12:43:08.161, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.11, 64 +2026-05-15T12:43:13+08:00 +2026/05/15 12:43:13.202, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.14, 63 +2026-05-15T12:43:18+08:00 +2026/05/15 12:43:18.277, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.70, 64 +2026-05-15T12:43:23+08:00 +2026/05/15 12:43:23.301, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.39, 63 +2026-05-15T12:43:28+08:00 +2026/05/15 12:43:28.373, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.71, 64 +2026-05-15T12:43:33+08:00 +2026/05/15 12:43:33.397, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.31, 64 +2026-05-15T12:43:38+08:00 +2026/05/15 12:43:38.461, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.18, 63 +2026-05-15T12:43:43+08:00 +2026/05/15 12:43:43.496, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.13, 64 +2026-05-15T12:43:48+08:00 +2026/05/15 12:43:48.519, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.17, 63 +2026-05-15T12:43:53+08:00 +2026/05/15 12:43:53.543, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.32, 64 +2026-05-15T12:43:58+08:00 +2026/05/15 12:43:58.613, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.91, 63 +2026-05-15T12:44:03+08:00 +2026/05/15 12:44:03.636, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.53, 63 +2026-05-15T12:44:08+08:00 +2026/05/15 12:44:08.709, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.29, 63 +2026-05-15T12:44:13+08:00 +2026/05/15 12:44:13.734, NVIDIA GeForce RTX 5090, 52, 18, 9607, 32607, 231.42, 63 +2026-05-15T12:44:18+08:00 +2026/05/15 12:44:18.757, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.60, 63 +2026-05-15T12:44:23+08:00 +2026/05/15 12:44:23.782, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 362.14, 63 +2026-05-15T12:44:28+08:00 +2026/05/15 12:44:28.806, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.83, 63 +2026-05-15T12:44:33+08:00 +2026/05/15 12:44:33.830, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.20, 64 +2026-05-15T12:44:38+08:00 +2026/05/15 12:44:38.872, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.65, 64 +2026-05-15T12:44:43+08:00 +2026/05/15 12:44:43.896, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.78, 64 +2026-05-15T12:44:48+08:00 +2026/05/15 12:44:48.920, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.92, 63 +2026-05-15T12:44:53+08:00 +2026/05/15 12:44:53.942, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.95, 63 +2026-05-15T12:44:58+08:00 +2026/05/15 12:44:58.968, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.34, 63 +2026-05-15T12:45:03+08:00 +2026/05/15 12:45:03.991, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.90, 64 +2026-05-15T12:45:09+08:00 +2026/05/15 12:45:09.014, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.39, 64 +2026-05-15T12:45:14+08:00 +2026/05/15 12:45:14.037, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.85, 62 +2026-05-15T12:45:19+08:00 +2026/05/15 12:45:19.060, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.87, 63 +2026-05-15T12:45:24+08:00 +2026/05/15 12:45:24.117, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.62, 63 +2026-05-15T12:45:29+08:00 +2026/05/15 12:45:29.141, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.77, 64 +2026-05-15T12:45:34+08:00 +2026/05/15 12:45:34.165, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.18, 64 +2026-05-15T12:45:39+08:00 +2026/05/15 12:45:39.188, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 346.83, 63 +2026-05-15T12:45:44+08:00 +2026/05/15 12:45:44.212, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 278.00, 57 +2026-05-15T12:45:49+08:00 +2026/05/15 12:45:49.236, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.88, 63 +2026-05-15T12:45:54+08:00 +2026/05/15 12:45:54.277, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.41, 63 +2026-05-15T12:45:59+08:00 +2026/05/15 12:45:59.319, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.82, 64 +2026-05-15T12:46:04+08:00 +2026/05/15 12:46:04.342, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.99, 64 +2026-05-15T12:46:09+08:00 +2026/05/15 12:46:09.414, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.63, 63 +2026-05-15T12:46:14+08:00 +2026/05/15 12:46:14.437, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.99, 60 +2026-05-15T12:46:19+08:00 +2026/05/15 12:46:19.478, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.89, 62 +2026-05-15T12:46:24+08:00 +2026/05/15 12:46:24.535, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.10, 62 +2026-05-15T12:46:29+08:00 +2026/05/15 12:46:29.559, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.52, 63 +2026-05-15T12:46:34+08:00 +2026/05/15 12:46:34.639, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.33, 63 +2026-05-15T12:46:39+08:00 +2026/05/15 12:46:39.667, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.36, 64 +2026-05-15T12:46:44+08:00 +2026/05/15 12:46:44.713, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.99, 63 +2026-05-15T12:46:49+08:00 +2026/05/15 12:46:49.737, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.66, 64 +2026-05-15T12:46:54+08:00 +2026/05/15 12:46:54.781, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.71, 63 +2026-05-15T12:46:59+08:00 +2026/05/15 12:46:59.843, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 361.98, 63 +2026-05-15T12:47:04+08:00 +2026/05/15 12:47:04.868, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.53, 62 +2026-05-15T12:47:09+08:00 +2026/05/15 12:47:09.892, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.87, 63 +2026-05-15T12:47:14+08:00 +2026/05/15 12:47:14.964, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.36, 64 +2026-05-15T12:47:19+08:00 +2026/05/15 12:47:19.988, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.93, 62 +2026-05-15T12:47:24+08:00 +2026/05/15 12:47:25.011, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.25, 63 +2026-05-15T12:47:30+08:00 +2026/05/15 12:47:30.036, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.74, 64 +2026-05-15T12:47:35+08:00 +2026/05/15 12:47:35.060, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.74, 63 +2026-05-15T12:47:40+08:00 +2026/05/15 12:47:40.086, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.92, 64 +2026-05-15T12:47:45+08:00 +2026/05/15 12:47:45.112, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 362.88, 63 +2026-05-15T12:47:50+08:00 +2026/05/15 12:47:50.135, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.14, 64 +2026-05-15T12:47:55+08:00 +2026/05/15 12:47:55.158, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.27, 63 +2026-05-15T12:48:00+08:00 +2026/05/15 12:48:00.181, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.97, 62 +2026-05-15T12:48:05+08:00 +2026/05/15 12:48:05.205, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.75, 63 +2026-05-15T12:48:10+08:00 +2026/05/15 12:48:10.229, NVIDIA GeForce RTX 5090, 82, 36, 9607, 32607, 153.84, 62 +2026-05-15T12:48:15+08:00 +2026/05/15 12:48:15.252, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.26, 63 +2026-05-15T12:48:20+08:00 +2026/05/15 12:48:20.276, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.64, 63 +2026-05-15T12:48:25+08:00 +2026/05/15 12:48:25.299, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.57, 62 +2026-05-15T12:48:30+08:00 +2026/05/15 12:48:30.322, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 352.33, 64 +2026-05-15T12:48:35+08:00 +2026/05/15 12:48:35.346, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.94, 64 +2026-05-15T12:48:40+08:00 +2026/05/15 12:48:40.372, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.25, 62 +2026-05-15T12:48:45+08:00 +2026/05/15 12:48:45.395, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.38, 63 +2026-05-15T12:48:50+08:00 +2026/05/15 12:48:50.421, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.59, 63 +2026-05-15T12:48:55+08:00 +2026/05/15 12:48:55.445, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.80, 62 +2026-05-15T12:49:00+08:00 +2026/05/15 12:49:00.490, NVIDIA GeForce RTX 5090, 63, 30, 9607, 32607, 247.62, 63 +2026-05-15T12:49:05+08:00 +2026/05/15 12:49:05.517, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.70, 64 +2026-05-15T12:49:10+08:00 +2026/05/15 12:49:10.545, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.66, 64 +2026-05-15T12:49:15+08:00 +2026/05/15 12:49:15.570, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.15, 63 +2026-05-15T12:49:20+08:00 +2026/05/15 12:49:20.594, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.77, 64 +2026-05-15T12:49:25+08:00 +2026/05/15 12:49:25.637, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.22, 63 +2026-05-15T12:49:30+08:00 +2026/05/15 12:49:30.677, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 361.06, 64 +2026-05-15T12:49:35+08:00 +2026/05/15 12:49:35.702, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.51, 64 +2026-05-15T12:49:40+08:00 +2026/05/15 12:49:40.726, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.84, 63 +2026-05-15T12:49:45+08:00 +2026/05/15 12:49:45.769, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.61, 63 +2026-05-15T12:49:50+08:00 +2026/05/15 12:49:50.810, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.60, 64 +2026-05-15T12:49:55+08:00 +2026/05/15 12:49:55.882, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.98, 64 +2026-05-15T12:50:00+08:00 +2026/05/15 12:50:00.906, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.86, 64 +2026-05-15T12:50:05+08:00 +2026/05/15 12:50:05.948, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.68, 64 +2026-05-15T12:50:10+08:00 +2026/05/15 12:50:10.974, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.23, 64 +2026-05-15T12:50:15+08:00 +2026/05/15 12:50:15.998, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.03, 63 +2026-05-15T12:50:21+08:00 +2026/05/15 12:50:21.021, NVIDIA GeForce RTX 5090, 57, 28, 9607, 32607, 208.99, 61 +2026-05-15T12:50:26+08:00 +2026/05/15 12:50:26.063, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 358.00, 63 +2026-05-15T12:50:31+08:00 +2026/05/15 12:50:31.087, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.10, 64 +2026-05-15T12:50:36+08:00 +2026/05/15 12:50:36.111, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.21, 63 +2026-05-15T12:50:41+08:00 +2026/05/15 12:50:41.135, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 309.86, 58 +2026-05-15T12:50:46+08:00 +2026/05/15 12:50:46.157, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.21, 62 +2026-05-15T12:50:51+08:00 +2026/05/15 12:50:51.181, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 359.66, 64 +2026-05-15T12:50:56+08:00 +2026/05/15 12:50:56.204, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.21, 63 +2026-05-15T12:51:01+08:00 +2026/05/15 12:51:01.226, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 357.29, 63 +2026-05-15T12:51:06+08:00 +2026/05/15 12:51:06.251, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 359.04, 64 +2026-05-15T12:51:11+08:00 +2026/05/15 12:51:11.274, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.31, 63 +2026-05-15T12:51:16+08:00 +2026/05/15 12:51:16.297, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.75, 64 +2026-05-15T12:51:21+08:00 +2026/05/15 12:51:21.320, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 237.40, 63 +2026-05-15T12:51:26+08:00 +2026/05/15 12:51:26.343, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.33, 63 +2026-05-15T12:51:31+08:00 +2026/05/15 12:51:31.365, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 357.97, 64 +2026-05-15T12:51:36+08:00 +2026/05/15 12:51:36.390, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 359.52, 64 +2026-05-15T12:51:41+08:00 +2026/05/15 12:51:41.413, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 358.31, 63 +2026-05-15T12:51:46+08:00 +2026/05/15 12:51:46.439, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.71, 62 +2026-05-15T12:51:51+08:00 +2026/05/15 12:51:51.462, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 359.81, 63 +2026-05-15T12:51:56+08:00 +2026/05/15 12:51:56.486, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.11, 63 +2026-05-15T12:52:01+08:00 +2026/05/15 12:52:01.511, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.20, 63 +2026-05-15T12:52:06+08:00 +2026/05/15 12:52:06.534, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 358.55, 63 +2026-05-15T12:52:11+08:00 +2026/05/15 12:52:11.558, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 358.54, 62 +2026-05-15T12:52:16+08:00 +2026/05/15 12:52:16.582, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.28, 64 +2026-05-15T12:52:21+08:00 +2026/05/15 12:52:21.605, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.55, 63 +2026-05-15T12:52:26+08:00 +2026/05/15 12:52:26.630, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.09, 64 +2026-05-15T12:52:31+08:00 +2026/05/15 12:52:31.652, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.23, 64 +2026-05-15T12:52:36+08:00 +2026/05/15 12:52:36.677, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.55, 63 +2026-05-15T12:52:41+08:00 +2026/05/15 12:52:41.698, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.73, 63 +2026-05-15T12:52:46+08:00 +2026/05/15 12:52:46.720, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.06, 63 +2026-05-15T12:52:51+08:00 +2026/05/15 12:52:51.743, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.36, 63 +2026-05-15T12:52:56+08:00 +2026/05/15 12:52:56.769, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.59, 63 +2026-05-15T12:53:01+08:00 +2026/05/15 12:53:01.796, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.56, 63 +2026-05-15T12:53:06+08:00 +2026/05/15 12:53:06.819, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.42, 63 +2026-05-15T12:53:11+08:00 +2026/05/15 12:53:11.842, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.35, 63 +2026-05-15T12:53:16+08:00 +2026/05/15 12:53:16.868, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.32, 63 +2026-05-15T12:53:21+08:00 +2026/05/15 12:53:21.893, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.93, 64 +2026-05-15T12:53:26+08:00 +2026/05/15 12:53:26.917, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.83, 64 +2026-05-15T12:53:31+08:00 +2026/05/15 12:53:31.941, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.49, 63 +2026-05-15T12:53:36+08:00 +2026/05/15 12:53:36.968, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.80, 64 +2026-05-15T12:53:41+08:00 +2026/05/15 12:53:41.993, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.69, 63 +2026-05-15T12:53:47+08:00 +2026/05/15 12:53:47.022, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.83, 62 +2026-05-15T12:53:52+08:00 +2026/05/15 12:53:52.045, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.98, 63 +2026-05-15T12:53:57+08:00 +2026/05/15 12:53:57.069, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 285.78, 63 +2026-05-15T12:54:02+08:00 +2026/05/15 12:54:02.096, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.36, 62 +2026-05-15T12:54:07+08:00 +2026/05/15 12:54:07.120, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.57, 63 +2026-05-15T12:54:12+08:00 +2026/05/15 12:54:12.144, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.05, 64 +2026-05-15T12:54:17+08:00 +2026/05/15 12:54:17.167, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.48, 63 +2026-05-15T12:54:22+08:00 +2026/05/15 12:54:22.191, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.32, 63 +2026-05-15T12:54:27+08:00 +2026/05/15 12:54:27.218, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.58, 64 +2026-05-15T12:54:32+08:00 +2026/05/15 12:54:32.242, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.88, 64 +2026-05-15T12:54:37+08:00 +2026/05/15 12:54:37.265, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 246.72, 57 +2026-05-15T12:54:42+08:00 +2026/05/15 12:54:42.295, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.06, 63 +2026-05-15T12:54:47+08:00 +2026/05/15 12:54:47.319, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.05, 64 +2026-05-15T12:54:52+08:00 +2026/05/15 12:54:52.344, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.02, 63 +2026-05-15T12:54:57+08:00 +2026/05/15 12:54:57.369, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.61, 63 +2026-05-15T12:55:02+08:00 +2026/05/15 12:55:02.399, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.78, 63 +2026-05-15T12:55:07+08:00 +2026/05/15 12:55:07.423, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.54, 64 +2026-05-15T12:55:12+08:00 +2026/05/15 12:55:12.449, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.11, 63 +2026-05-15T12:55:17+08:00 +2026/05/15 12:55:17.473, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.34, 63 +2026-05-15T12:55:22+08:00 +2026/05/15 12:55:22.496, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.40, 64 +2026-05-15T12:55:27+08:00 +2026/05/15 12:55:27.519, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.06, 63 +2026-05-15T12:55:32+08:00 +2026/05/15 12:55:32.544, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.35, 63 +2026-05-15T12:55:37+08:00 +2026/05/15 12:55:37.568, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.53, 63 +2026-05-15T12:55:42+08:00 +2026/05/15 12:55:42.594, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.03, 64 +2026-05-15T12:55:47+08:00 +2026/05/15 12:55:47.619, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.21, 64 +2026-05-15T12:55:52+08:00 +2026/05/15 12:55:52.643, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 352.51, 64 +2026-05-15T12:55:57+08:00 +2026/05/15 12:55:57.667, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.36, 63 +2026-05-15T12:56:02+08:00 +2026/05/15 12:56:02.692, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.65, 63 +2026-05-15T12:56:07+08:00 +2026/05/15 12:56:07.716, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.98, 63 +2026-05-15T12:56:12+08:00 +2026/05/15 12:56:12.741, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 209.93, 62 +2026-05-15T12:56:17+08:00 +2026/05/15 12:56:17.766, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.50, 64 +2026-05-15T12:56:22+08:00 +2026/05/15 12:56:22.788, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.54, 64 +2026-05-15T12:56:27+08:00 +2026/05/15 12:56:27.812, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.85, 64 +2026-05-15T12:56:32+08:00 +2026/05/15 12:56:32.836, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.37, 64 +2026-05-15T12:56:37+08:00 +2026/05/15 12:56:37.862, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.52, 63 +2026-05-15T12:56:42+08:00 +2026/05/15 12:56:42.887, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.52, 63 +2026-05-15T12:56:47+08:00 +2026/05/15 12:56:47.911, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.22, 63 +2026-05-15T12:56:52+08:00 +2026/05/15 12:56:52.934, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.05, 63 +2026-05-15T12:56:57+08:00 +2026/05/15 12:56:57.960, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.28, 64 +2026-05-15T12:57:02+08:00 +2026/05/15 12:57:02.983, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.16, 64 +2026-05-15T12:57:07+08:00 +2026/05/15 12:57:08.007, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.86, 62 +2026-05-15T12:57:13+08:00 +2026/05/15 12:57:13.031, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.23, 62 +2026-05-15T12:57:18+08:00 +2026/05/15 12:57:18.056, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.12, 62 +2026-05-15T12:57:23+08:00 +2026/05/15 12:57:23.080, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.14, 63 +2026-05-15T12:57:28+08:00 +2026/05/15 12:57:28.104, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.32, 63 +2026-05-15T12:57:33+08:00 +2026/05/15 12:57:33.127, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.24, 63 +2026-05-15T12:57:38+08:00 +2026/05/15 12:57:38.154, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.47, 63 +2026-05-15T12:57:43+08:00 +2026/05/15 12:57:43.178, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 268.23, 57 +2026-05-15T12:57:48+08:00 +2026/05/15 12:57:48.204, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.29, 64 +2026-05-15T12:57:53+08:00 +2026/05/15 12:57:53.227, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.10, 64 +2026-05-15T12:57:58+08:00 +2026/05/15 12:57:58.252, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.82, 64 +2026-05-15T12:58:03+08:00 +2026/05/15 12:58:03.276, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.90, 63 +2026-05-15T12:58:08+08:00 +2026/05/15 12:58:08.299, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.37, 64 +2026-05-15T12:58:13+08:00 +2026/05/15 12:58:13.327, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.89, 63 +2026-05-15T12:58:18+08:00 +2026/05/15 12:58:18.354, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.09, 64 +2026-05-15T12:58:23+08:00 +2026/05/15 12:58:23.377, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.99, 64 +2026-05-15T12:58:28+08:00 +2026/05/15 12:58:28.401, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 362.58, 64 +2026-05-15T12:58:33+08:00 +2026/05/15 12:58:33.430, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 362.09, 64 +2026-05-15T12:58:38+08:00 +2026/05/15 12:58:38.454, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 362.54, 64 +2026-05-15T12:58:43+08:00 +2026/05/15 12:58:43.478, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.74, 63 +2026-05-15T12:58:48+08:00 +2026/05/15 12:58:48.501, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.57, 62 +2026-05-15T12:58:53+08:00 +2026/05/15 12:58:53.524, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 361.04, 64 +2026-05-15T12:58:58+08:00 +2026/05/15 12:58:58.550, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 236.39, 62 +2026-05-15T12:59:03+08:00 +2026/05/15 12:59:03.576, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 359.40, 63 +2026-05-15T12:59:08+08:00 +2026/05/15 12:59:08.601, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.24, 63 +2026-05-15T12:59:13+08:00 +2026/05/15 12:59:13.624, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 359.89, 62 +2026-05-15T12:59:18+08:00 +2026/05/15 12:59:18.649, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.19, 63 +2026-05-15T12:59:23+08:00 +2026/05/15 12:59:23.690, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.20, 64 +2026-05-15T12:59:28+08:00 +2026/05/15 12:59:28.714, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.68, 63 +2026-05-15T12:59:33+08:00 +2026/05/15 12:59:33.740, NVIDIA GeForce RTX 5090, 88, 37, 9607, 32607, 362.37, 63 +2026-05-15T12:59:38+08:00 +2026/05/15 12:59:38.762, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.32, 62 +2026-05-15T12:59:43+08:00 +2026/05/15 12:59:43.807, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.01, 63 +2026-05-15T12:59:48+08:00 +2026/05/15 12:59:48.847, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 211.15, 62 +2026-05-15T12:59:53+08:00 +2026/05/15 12:59:53.904, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.10, 63 +2026-05-15T12:59:58+08:00 +2026/05/15 12:59:58.929, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.75, 63 +2026-05-15T13:00:03+08:00 +2026/05/15 13:00:03.969, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.40, 63 +2026-05-15T13:00:08+08:00 +2026/05/15 13:00:08.993, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.89, 64 +2026-05-15T13:00:14+08:00 +2026/05/15 13:00:14.035, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 285.73, 57 +2026-05-15T13:00:19+08:00 +2026/05/15 13:00:19.092, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.21, 63 +2026-05-15T13:00:24+08:00 +2026/05/15 13:00:24.114, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.86, 63 +2026-05-15T13:00:29+08:00 +2026/05/15 13:00:29.189, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.09, 64 +2026-05-15T13:00:34+08:00 +2026/05/15 13:00:34.249, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.06, 63 +2026-05-15T13:00:39+08:00 +2026/05/15 13:00:39.288, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.21, 64 +2026-05-15T13:00:44+08:00 +2026/05/15 13:00:44.311, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.74, 63 +2026-05-15T13:00:49+08:00 +2026/05/15 13:00:49.384, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.02, 64 +2026-05-15T13:00:54+08:00 +2026/05/15 13:00:54.408, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.56, 63 +2026-05-15T13:00:59+08:00 +2026/05/15 13:00:59.485, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.57, 63 +2026-05-15T13:01:04+08:00 +2026/05/15 13:01:04.508, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.37, 63 +2026-05-15T13:01:09+08:00 +2026/05/15 13:01:09.533, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.03, 64 +2026-05-15T13:01:14+08:00 +2026/05/15 13:01:14.584, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.95, 63 +2026-05-15T13:01:19+08:00 +2026/05/15 13:01:19.606, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.12, 63 +2026-05-15T13:01:24+08:00 +2026/05/15 13:01:24.660, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 360.18, 63 +2026-05-15T13:01:29+08:00 +2026/05/15 13:01:29.683, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.32, 63 +2026-05-15T13:01:34+08:00 +2026/05/15 13:01:34.724, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.72, 63 +2026-05-15T13:01:39+08:00 +2026/05/15 13:01:39.797, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.41, 63 +2026-05-15T13:01:44+08:00 +2026/05/15 13:01:44.820, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.43, 63 +2026-05-15T13:01:49+08:00 +2026/05/15 13:01:49.896, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.07, 63 +2026-05-15T13:01:54+08:00 +2026/05/15 13:01:54.919, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.92, 64 +2026-05-15T13:01:59+08:00 +2026/05/15 13:01:59.943, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.35, 64 +2026-05-15T13:02:04+08:00 +2026/05/15 13:02:04.966, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.89, 64 +2026-05-15T13:02:09+08:00 +2026/05/15 13:02:09.990, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.60, 63 +2026-05-15T13:02:14+08:00 +2026/05/15 13:02:15.012, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.26, 63 +2026-05-15T13:02:20+08:00 +2026/05/15 13:02:20.035, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.36, 63 +2026-05-15T13:02:25+08:00 +2026/05/15 13:02:25.060, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.42, 63 +2026-05-15T13:02:30+08:00 +2026/05/15 13:02:30.084, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.82, 63 +2026-05-15T13:02:35+08:00 +2026/05/15 13:02:35.105, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.70, 63 +2026-05-15T13:02:40+08:00 +2026/05/15 13:02:40.129, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.23, 63 +2026-05-15T13:02:45+08:00 +2026/05/15 13:02:45.153, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 325.91, 58 +2026-05-15T13:02:50+08:00 +2026/05/15 13:02:50.175, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.50, 63 +2026-05-15T13:02:55+08:00 +2026/05/15 13:02:55.199, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.56, 64 +2026-05-15T13:03:00+08:00 +2026/05/15 13:03:00.222, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.69, 63 +2026-05-15T13:03:05+08:00 +2026/05/15 13:03:05.248, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.73, 63 +2026-05-15T13:03:10+08:00 +2026/05/15 13:03:10.270, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.00, 63 +2026-05-15T13:03:15+08:00 +2026/05/15 13:03:15.299, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.07, 63 +2026-05-15T13:03:20+08:00 +2026/05/15 13:03:20.322, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 363.20, 63 +2026-05-15T13:03:25+08:00 +2026/05/15 13:03:25.349, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 253.74, 63 +2026-05-15T13:03:30+08:00 +2026/05/15 13:03:30.373, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.39, 63 +2026-05-15T13:03:35+08:00 +2026/05/15 13:03:35.399, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.86, 64 +2026-05-15T13:03:40+08:00 +2026/05/15 13:03:40.425, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 289.12, 63 +2026-05-15T13:03:45+08:00 +2026/05/15 13:03:45.448, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.78, 63 +2026-05-15T13:03:50+08:00 +2026/05/15 13:03:50.476, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.83, 63 +2026-05-15T13:03:55+08:00 +2026/05/15 13:03:55.501, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.14, 64 +2026-05-15T13:04:00+08:00 +2026/05/15 13:04:00.524, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.85, 63 +2026-05-15T13:04:05+08:00 +2026/05/15 13:04:05.548, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.86, 63 +2026-05-15T13:04:10+08:00 +2026/05/15 13:04:10.572, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.35, 64 +2026-05-15T13:04:15+08:00 +2026/05/15 13:04:15.597, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.64, 64 +2026-05-15T13:04:20+08:00 +2026/05/15 13:04:20.625, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.07, 63 +2026-05-15T13:04:25+08:00 +2026/05/15 13:04:25.650, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.02, 64 +2026-05-15T13:04:30+08:00 +2026/05/15 13:04:30.673, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.70, 63 +2026-05-15T13:04:35+08:00 +2026/05/15 13:04:35.698, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.74, 64 +2026-05-15T13:04:40+08:00 +2026/05/15 13:04:40.723, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.69, 64 +2026-05-15T13:04:45+08:00 +2026/05/15 13:04:45.750, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.17, 64 +2026-05-15T13:04:50+08:00 +2026/05/15 13:04:50.777, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.49, 64 +2026-05-15T13:04:55+08:00 +2026/05/15 13:04:55.801, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.31, 63 +2026-05-15T13:05:00+08:00 +2026/05/15 13:05:00.826, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.38, 64 +2026-05-15T13:05:05+08:00 +2026/05/15 13:05:05.851, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.11, 63 +2026-05-15T13:05:10+08:00 +2026/05/15 13:05:10.875, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.40, 62 +2026-05-15T13:05:15+08:00 +2026/05/15 13:05:15.904, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 357.10, 64 +2026-05-15T13:05:20+08:00 +2026/05/15 13:05:20.931, NVIDIA GeForce RTX 5090, 1, 0, 9607, 32607, 258.02, 63 +2026-05-15T13:05:25+08:00 +2026/05/15 13:05:25.955, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.81, 63 +2026-05-15T13:05:30+08:00 +2026/05/15 13:05:30.986, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.24, 63 +2026-05-15T13:05:35+08:00 +2026/05/15 13:05:36.009, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.65, 63 +2026-05-15T13:05:41+08:00 +2026/05/15 13:05:41.033, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.77, 62 +2026-05-15T13:05:46+08:00 +2026/05/15 13:05:46.057, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.70, 63 +2026-05-15T13:05:51+08:00 +2026/05/15 13:05:51.083, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.56, 63 +2026-05-15T13:05:56+08:00 +2026/05/15 13:05:56.107, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.10, 63 +2026-05-15T13:06:01+08:00 +2026/05/15 13:06:01.132, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.07, 63 +2026-05-15T13:06:06+08:00 +2026/05/15 13:06:06.155, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.85, 62 +2026-05-15T13:06:11+08:00 +2026/05/15 13:06:11.180, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.61, 63 +2026-05-15T13:06:16+08:00 +2026/05/15 13:06:16.207, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.49, 63 +2026-05-15T13:06:21+08:00 +2026/05/15 13:06:21.230, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 359.30, 62 +2026-05-15T13:06:26+08:00 +2026/05/15 13:06:26.255, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.15, 64 +2026-05-15T13:06:31+08:00 +2026/05/15 13:06:31.280, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.39, 63 +2026-05-15T13:06:36+08:00 +2026/05/15 13:06:36.304, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.44, 64 +2026-05-15T13:06:41+08:00 +2026/05/15 13:06:41.328, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 296.80, 63 +2026-05-15T13:06:46+08:00 +2026/05/15 13:06:46.352, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.05, 63 +2026-05-15T13:06:51+08:00 +2026/05/15 13:06:51.376, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.66, 62 +2026-05-15T13:06:56+08:00 +2026/05/15 13:06:56.403, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.05, 62 +2026-05-15T13:07:01+08:00 +2026/05/15 13:07:01.426, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.19, 63 +2026-05-15T13:07:06+08:00 +2026/05/15 13:07:06.448, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 338.58, 63 +2026-05-15T13:07:11+08:00 +2026/05/15 13:07:11.473, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.42, 63 +2026-05-15T13:07:16+08:00 +2026/05/15 13:07:16.495, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 360.79, 63 +2026-05-15T13:07:21+08:00 +2026/05/15 13:07:21.520, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 358.50, 64 +2026-05-15T13:07:26+08:00 +2026/05/15 13:07:26.555, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.23, 63 +2026-05-15T13:07:31+08:00 +2026/05/15 13:07:31.577, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.17, 64 +2026-05-15T13:07:36+08:00 +2026/05/15 13:07:36.602, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.58, 63 +2026-05-15T13:07:41+08:00 +2026/05/15 13:07:41.624, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.29, 64 +2026-05-15T13:07:46+08:00 +2026/05/15 13:07:46.651, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.17, 63 +2026-05-15T13:07:51+08:00 +2026/05/15 13:07:51.673, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.43, 63 +2026-05-15T13:07:56+08:00 +2026/05/15 13:07:56.697, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.54, 62 +2026-05-15T13:08:01+08:00 +2026/05/15 13:08:01.719, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.38, 63 +2026-05-15T13:08:06+08:00 +2026/05/15 13:08:06.745, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.56, 63 +2026-05-15T13:08:11+08:00 +2026/05/15 13:08:11.770, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.57, 63 +2026-05-15T13:08:16+08:00 +2026/05/15 13:08:16.798, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.91, 63 +2026-05-15T13:08:21+08:00 +2026/05/15 13:08:21.821, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.17, 63 +2026-05-15T13:08:26+08:00 +2026/05/15 13:08:26.847, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.85, 63 +2026-05-15T13:08:31+08:00 +2026/05/15 13:08:31.872, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.73, 63 +2026-05-15T13:08:36+08:00 +2026/05/15 13:08:36.898, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.67, 63 +2026-05-15T13:08:41+08:00 +2026/05/15 13:08:41.922, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.15, 63 +2026-05-15T13:08:46+08:00 +2026/05/15 13:08:46.945, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.50, 63 +2026-05-15T13:08:51+08:00 +2026/05/15 13:08:51.971, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.33, 63 +2026-05-15T13:08:56+08:00 +2026/05/15 13:08:56.995, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 352.80, 63 +2026-05-15T13:09:02+08:00 +2026/05/15 13:09:02.018, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.25, 63 +2026-05-15T13:09:07+08:00 +2026/05/15 13:09:07.044, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.47, 63 +2026-05-15T13:09:12+08:00 +2026/05/15 13:09:12.068, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 331.63, 59 +2026-05-15T13:09:17+08:00 +2026/05/15 13:09:17.090, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.95, 63 +2026-05-15T13:09:22+08:00 +2026/05/15 13:09:22.113, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.17, 63 +2026-05-15T13:09:27+08:00 +2026/05/15 13:09:27.137, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.82, 64 +2026-05-15T13:09:32+08:00 +2026/05/15 13:09:32.178, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.87, 64 +2026-05-15T13:09:37+08:00 +2026/05/15 13:09:37.202, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.09, 63 +2026-05-15T13:09:42+08:00 +2026/05/15 13:09:42.261, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.62, 63 +2026-05-15T13:09:47+08:00 +2026/05/15 13:09:47.286, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.83, 63 +2026-05-15T13:09:52+08:00 +2026/05/15 13:09:52.330, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.41, 63 +2026-05-15T13:09:57+08:00 +2026/05/15 13:09:57.370, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.18, 64 +2026-05-15T13:10:02+08:00 +2026/05/15 13:10:02.412, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.04, 62 +2026-05-15T13:10:07+08:00 +2026/05/15 13:10:07.455, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.70, 63 +2026-05-15T13:10:12+08:00 +2026/05/15 13:10:12.506, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.11, 64 +2026-05-15T13:10:17+08:00 +2026/05/15 13:10:17.530, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.37, 63 +2026-05-15T13:10:22+08:00 +2026/05/15 13:10:22.589, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.63, 63 +2026-05-15T13:10:27+08:00 +2026/05/15 13:10:27.612, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.38, 64 +2026-05-15T13:10:32+08:00 +2026/05/15 13:10:32.635, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.48, 64 +2026-05-15T13:10:37+08:00 +2026/05/15 13:10:37.657, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.60, 64 +2026-05-15T13:10:42+08:00 +2026/05/15 13:10:42.683, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.76, 62 +2026-05-15T13:10:47+08:00 +2026/05/15 13:10:47.742, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.65, 64 +2026-05-15T13:10:52+08:00 +2026/05/15 13:10:52.781, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.63, 64 +2026-05-15T13:10:57+08:00 +2026/05/15 13:10:57.805, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.17, 64 +2026-05-15T13:11:02+08:00 +2026/05/15 13:11:02.876, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.51, 63 +2026-05-15T13:11:07+08:00 +2026/05/15 13:11:07.900, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.15, 63 +2026-05-15T13:11:12+08:00 +2026/05/15 13:11:12.926, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.41, 63 +2026-05-15T13:11:17+08:00 +2026/05/15 13:11:17.969, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.67, 63 +2026-05-15T13:11:22+08:00 +2026/05/15 13:11:23.014, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.39, 63 +2026-05-15T13:11:28+08:00 +2026/05/15 13:11:28.067, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.07, 64 +2026-05-15T13:11:33+08:00 +2026/05/15 13:11:33.104, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.49, 63 +2026-05-15T13:11:38+08:00 +2026/05/15 13:11:38.128, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.04, 63 +2026-05-15T13:11:43+08:00 +2026/05/15 13:11:43.190, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.92, 63 +2026-05-15T13:11:48+08:00 +2026/05/15 13:11:48.214, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 361.35, 64 +2026-05-15T13:11:53+08:00 +2026/05/15 13:11:53.290, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.69, 63 +2026-05-15T13:11:58+08:00 +2026/05/15 13:11:58.330, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.53, 62 +2026-05-15T13:12:03+08:00 +2026/05/15 13:12:03.367, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.67, 62 +2026-05-15T13:12:08+08:00 +2026/05/15 13:12:08.393, NVIDIA GeForce RTX 5090, 8, 0, 9607, 32607, 260.68, 56 +2026-05-15T13:12:13+08:00 +2026/05/15 13:12:13.416, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.43, 64 +2026-05-15T13:12:18+08:00 +2026/05/15 13:12:18.442, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.52, 63 +2026-05-15T13:12:23+08:00 +2026/05/15 13:12:23.467, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.48, 63 +2026-05-15T13:12:28+08:00 +2026/05/15 13:12:28.492, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.48, 62 +2026-05-15T13:12:33+08:00 +2026/05/15 13:12:33.516, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 208.52, 59 +2026-05-15T13:12:38+08:00 +2026/05/15 13:12:38.541, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.57, 63 +2026-05-15T13:12:43+08:00 +2026/05/15 13:12:43.567, NVIDIA GeForce RTX 5090, 83, 38, 9607, 32607, 358.04, 63 +2026-05-15T13:12:48+08:00 +2026/05/15 13:12:48.590, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.70, 63 +2026-05-15T13:12:53+08:00 +2026/05/15 13:12:53.615, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.39, 64 +2026-05-15T13:12:58+08:00 +2026/05/15 13:12:58.642, NVIDIA GeForce RTX 5090, 83, 36, 9607, 32607, 353.79, 63 +2026-05-15T13:13:03+08:00 +2026/05/15 13:13:03.666, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.67, 63 +2026-05-15T13:13:08+08:00 +2026/05/15 13:13:08.690, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 288.36, 62 +2026-05-15T13:13:13+08:00 +2026/05/15 13:13:13.716, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 351.00, 64 +2026-05-15T13:13:18+08:00 +2026/05/15 13:13:18.739, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 350.76, 64 +2026-05-15T13:13:23+08:00 +2026/05/15 13:13:23.769, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.61, 64 +2026-05-15T13:13:28+08:00 +2026/05/15 13:13:28.792, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.52, 64 +2026-05-15T13:13:33+08:00 +2026/05/15 13:13:33.817, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.49, 63 +2026-05-15T13:13:38+08:00 +2026/05/15 13:13:38.842, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.27, 64 +2026-05-15T13:13:43+08:00 +2026/05/15 13:13:43.870, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.63, 64 +2026-05-15T13:13:48+08:00 +2026/05/15 13:13:48.895, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.58, 64 +2026-05-15T13:13:53+08:00 +2026/05/15 13:13:53.924, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.70, 64 +2026-05-15T13:13:58+08:00 +2026/05/15 13:13:58.948, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.11, 64 +2026-05-15T13:14:03+08:00 +2026/05/15 13:14:03.970, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.63, 63 +2026-05-15T13:14:08+08:00 +2026/05/15 13:14:08.996, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 208.93, 63 +2026-05-15T13:14:14+08:00 +2026/05/15 13:14:14.025, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.16, 62 +2026-05-15T13:14:19+08:00 +2026/05/15 13:14:19.048, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.79, 62 +2026-05-15T13:14:24+08:00 +2026/05/15 13:14:24.071, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.47, 62 +2026-05-15T13:14:29+08:00 +2026/05/15 13:14:29.094, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.36, 64 +2026-05-15T13:14:34+08:00 +2026/05/15 13:14:34.117, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.89, 63 +2026-05-15T13:14:39+08:00 +2026/05/15 13:14:39.141, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.15, 64 +2026-05-15T13:14:44+08:00 +2026/05/15 13:14:44.168, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.18, 64 +2026-05-15T13:14:49+08:00 +2026/05/15 13:14:49.193, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.03, 63 +2026-05-15T13:14:54+08:00 +2026/05/15 13:14:54.218, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.62, 63 +2026-05-15T13:14:59+08:00 +2026/05/15 13:14:59.239, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.74, 63 +2026-05-15T13:15:04+08:00 +2026/05/15 13:15:04.264, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.41, 63 +2026-05-15T13:15:09+08:00 +2026/05/15 13:15:09.287, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.50, 64 +2026-05-15T13:15:14+08:00 +2026/05/15 13:15:14.312, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.55, 64 +2026-05-15T13:15:19+08:00 +2026/05/15 13:15:19.338, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.45, 64 +2026-05-15T13:15:24+08:00 +2026/05/15 13:15:24.361, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.42, 63 +2026-05-15T13:15:29+08:00 +2026/05/15 13:15:29.386, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.88, 63 +2026-05-15T13:15:34+08:00 +2026/05/15 13:15:34.408, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.83, 63 +2026-05-15T13:15:39+08:00 +2026/05/15 13:15:39.431, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.42, 63 +2026-05-15T13:15:44+08:00 +2026/05/15 13:15:44.455, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.58, 64 +2026-05-15T13:15:49+08:00 +2026/05/15 13:15:49.480, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 362.27, 63 +2026-05-15T13:15:54+08:00 +2026/05/15 13:15:54.506, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.09, 63 +2026-05-15T13:15:59+08:00 +2026/05/15 13:15:59.530, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 358.68, 64 +2026-05-15T13:16:04+08:00 +2026/05/15 13:16:04.560, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.16, 63 +2026-05-15T13:16:09+08:00 +2026/05/15 13:16:09.586, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 360.27, 63 +2026-05-15T13:16:14+08:00 +2026/05/15 13:16:14.611, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 359.90, 63 +2026-05-15T13:16:19+08:00 +2026/05/15 13:16:19.633, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.48, 63 +2026-05-15T13:16:24+08:00 +2026/05/15 13:16:24.655, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.40, 63 +2026-05-15T13:16:29+08:00 +2026/05/15 13:16:29.677, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 359.95, 64 +2026-05-15T13:16:34+08:00 +2026/05/15 13:16:34.699, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 359.35, 64 +2026-05-15T13:16:39+08:00 +2026/05/15 13:16:39.726, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 359.46, 63 +2026-05-15T13:16:44+08:00 +2026/05/15 13:16:44.746, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.65, 63 +2026-05-15T13:16:49+08:00 +2026/05/15 13:16:49.769, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.93, 63 +2026-05-15T13:16:54+08:00 +2026/05/15 13:16:54.812, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.60, 63 +2026-05-15T13:16:59+08:00 +2026/05/15 13:16:59.856, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 335.77, 58 +2026-05-15T13:17:04+08:00 +2026/05/15 13:17:04.880, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.20, 64 +2026-05-15T13:17:09+08:00 +2026/05/15 13:17:09.903, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.31, 63 +2026-05-15T13:17:14+08:00 +2026/05/15 13:17:14.927, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 357.90, 63 +2026-05-15T13:17:19+08:00 +2026/05/15 13:17:19.951, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.96, 64 +2026-05-15T13:17:24+08:00 +2026/05/15 13:17:24.973, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 359.96, 63 +2026-05-15T13:17:29+08:00 +2026/05/15 13:17:29.995, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 358.33, 63 +2026-05-15T13:17:35+08:00 +2026/05/15 13:17:35.019, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 357.96, 63 +2026-05-15T13:17:40+08:00 +2026/05/15 13:17:40.040, NVIDIA GeForce RTX 5090, 24, 8, 9607, 32607, 341.68, 58 +2026-05-15T13:17:45+08:00 +2026/05/15 13:17:45.062, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 359.26, 64 +2026-05-15T13:17:50+08:00 +2026/05/15 13:17:50.085, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 357.83, 63 +2026-05-15T13:17:55+08:00 +2026/05/15 13:17:55.108, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.07, 62 +2026-05-15T13:18:00+08:00 +2026/05/15 13:18:00.131, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.90, 62 +2026-05-15T13:18:05+08:00 +2026/05/15 13:18:05.154, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.23, 62 +2026-05-15T13:18:10+08:00 +2026/05/15 13:18:10.177, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.35, 62 +2026-05-15T13:18:15+08:00 +2026/05/15 13:18:15.203, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.41, 63 +2026-05-15T13:18:20+08:00 +2026/05/15 13:18:20.227, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.78, 63 +2026-05-15T13:18:25+08:00 +2026/05/15 13:18:25.250, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.51, 64 +2026-05-15T13:18:30+08:00 +2026/05/15 13:18:30.276, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.56, 63 +2026-05-15T13:18:35+08:00 +2026/05/15 13:18:35.301, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.47, 64 +2026-05-15T13:18:40+08:00 +2026/05/15 13:18:40.328, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.39, 62 +2026-05-15T13:18:45+08:00 +2026/05/15 13:18:45.352, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.03, 63 +2026-05-15T13:18:50+08:00 +2026/05/15 13:18:50.378, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.29, 63 +2026-05-15T13:18:55+08:00 +2026/05/15 13:18:55.401, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.89, 63 +2026-05-15T13:19:00+08:00 +2026/05/15 13:19:00.431, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 342.54, 63 +2026-05-15T13:19:05+08:00 +2026/05/15 13:19:05.454, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.20, 63 +2026-05-15T13:19:10+08:00 +2026/05/15 13:19:10.478, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.33, 63 +2026-05-15T13:19:15+08:00 +2026/05/15 13:19:15.500, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.07, 63 +2026-05-15T13:19:20+08:00 +2026/05/15 13:19:20.522, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.33, 64 +2026-05-15T13:19:25+08:00 +2026/05/15 13:19:25.551, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.77, 63 +2026-05-15T13:19:30+08:00 +2026/05/15 13:19:30.573, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.22, 63 +2026-05-15T13:19:35+08:00 +2026/05/15 13:19:35.599, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 357.97, 63 +2026-05-15T13:19:40+08:00 +2026/05/15 13:19:40.623, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 358.62, 63 +2026-05-15T13:19:45+08:00 +2026/05/15 13:19:45.647, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 357.94, 62 +2026-05-15T13:19:50+08:00 +2026/05/15 13:19:50.670, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 254.51, 57 +2026-05-15T13:19:55+08:00 +2026/05/15 13:19:55.690, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 358.64, 63 +2026-05-15T13:20:00+08:00 +2026/05/15 13:20:00.714, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.45, 64 +2026-05-15T13:20:05+08:00 +2026/05/15 13:20:05.738, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 358.45, 64 +2026-05-15T13:20:10+08:00 +2026/05/15 13:20:10.767, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.84, 62 +2026-05-15T13:20:15+08:00 +2026/05/15 13:20:15.793, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 357.58, 62 +2026-05-15T13:20:20+08:00 +2026/05/15 13:20:20.817, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 358.67, 63 +2026-05-15T13:20:25+08:00 +2026/05/15 13:20:25.844, NVIDIA GeForce RTX 5090, 87, 36, 9607, 32607, 357.90, 63 +2026-05-15T13:20:30+08:00 +2026/05/15 13:20:30.867, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.29, 62 +2026-05-15T13:20:35+08:00 +2026/05/15 13:20:35.890, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 359.17, 63 +2026-05-15T13:20:40+08:00 +2026/05/15 13:20:40.914, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.33, 64 +2026-05-15T13:20:45+08:00 +2026/05/15 13:20:45.936, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.60, 63 +2026-05-15T13:20:50+08:00 +2026/05/15 13:20:50.961, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 359.46, 62 +2026-05-15T13:20:55+08:00 +2026/05/15 13:20:55.985, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 358.38, 63 +2026-05-15T13:21:00+08:00 +2026/05/15 13:21:01.009, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.09, 63 +2026-05-15T13:21:06+08:00 +2026/05/15 13:21:06.034, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 358.27, 63 +2026-05-15T13:21:11+08:00 +2026/05/15 13:21:11.059, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.66, 63 +2026-05-15T13:21:16+08:00 +2026/05/15 13:21:16.083, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 351.09, 64 +2026-05-15T13:21:21+08:00 +2026/05/15 13:21:21.108, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.88, 63 +2026-05-15T13:21:26+08:00 +2026/05/15 13:21:26.132, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 323.15, 63 +2026-05-15T13:21:31+08:00 +2026/05/15 13:21:31.162, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 283.20, 57 +2026-05-15T13:21:36+08:00 +2026/05/15 13:21:36.198, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.33, 63 +2026-05-15T13:21:41+08:00 +2026/05/15 13:21:41.269, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.73, 63 +2026-05-15T13:21:46+08:00 +2026/05/15 13:21:46.293, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.48, 63 +2026-05-15T13:21:51+08:00 +2026/05/15 13:21:51.320, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.60, 63 +2026-05-15T13:21:56+08:00 +2026/05/15 13:21:56.388, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 360.49, 63 +2026-05-15T13:22:01+08:00 +2026/05/15 13:22:01.412, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 360.11, 63 +2026-05-15T13:22:06+08:00 +2026/05/15 13:22:06.451, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.67, 64 +2026-05-15T13:22:11+08:00 +2026/05/15 13:22:11.475, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.97, 63 +2026-05-15T13:22:16+08:00 +2026/05/15 13:22:16.499, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 286.44, 61 +2026-05-15T13:22:21+08:00 +2026/05/15 13:22:21.524, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.48, 61 +2026-05-15T13:22:26+08:00 +2026/05/15 13:22:26.551, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.77, 62 +2026-05-15T13:22:31+08:00 +2026/05/15 13:22:31.577, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.23, 63 +2026-05-15T13:22:36+08:00 +2026/05/15 13:22:36.604, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.66, 63 +2026-05-15T13:22:41+08:00 +2026/05/15 13:22:41.628, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.02, 63 +2026-05-15T13:22:46+08:00 +2026/05/15 13:22:46.652, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.94, 63 +2026-05-15T13:22:51+08:00 +2026/05/15 13:22:51.678, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.22, 63 +2026-05-15T13:22:56+08:00 +2026/05/15 13:22:56.699, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.31, 63 +2026-05-15T13:23:01+08:00 +2026/05/15 13:23:01.725, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.37, 63 +2026-05-15T13:23:06+08:00 +2026/05/15 13:23:06.749, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.20, 63 +2026-05-15T13:23:11+08:00 +2026/05/15 13:23:11.775, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.02, 63 +2026-05-15T13:23:16+08:00 +2026/05/15 13:23:16.799, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.49, 63 +2026-05-15T13:23:21+08:00 +2026/05/15 13:23:21.827, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.05, 63 +2026-05-15T13:23:26+08:00 +2026/05/15 13:23:26.851, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 359.23, 64 +2026-05-15T13:23:31+08:00 +2026/05/15 13:23:31.876, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 359.77, 63 +2026-05-15T13:23:36+08:00 +2026/05/15 13:23:36.899, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 359.77, 63 +2026-05-15T13:23:41+08:00 +2026/05/15 13:23:41.923, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.80, 63 +2026-05-15T13:23:46+08:00 +2026/05/15 13:23:46.948, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.25, 63 +2026-05-15T13:23:51+08:00 +2026/05/15 13:23:51.974, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.72, 63 +2026-05-15T13:23:56+08:00 +2026/05/15 13:23:56.997, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.04, 63 +2026-05-15T13:24:02+08:00 +2026/05/15 13:24:02.021, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.26, 64 +2026-05-15T13:24:07+08:00 +2026/05/15 13:24:07.044, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.09, 63 +2026-05-15T13:24:12+08:00 +2026/05/15 13:24:12.069, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.45, 64 +2026-05-15T13:24:17+08:00 +2026/05/15 13:24:17.094, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.46, 63 +2026-05-15T13:24:22+08:00 +2026/05/15 13:24:22.119, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.29, 64 +2026-05-15T13:24:27+08:00 +2026/05/15 13:24:27.146, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.54, 63 +2026-05-15T13:24:32+08:00 +2026/05/15 13:24:32.171, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.52, 62 +2026-05-15T13:24:37+08:00 +2026/05/15 13:24:37.196, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.45, 63 +2026-05-15T13:24:42+08:00 +2026/05/15 13:24:42.221, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.21, 63 +2026-05-15T13:24:47+08:00 +2026/05/15 13:24:47.244, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.46, 63 +2026-05-15T13:24:52+08:00 +2026/05/15 13:24:52.269, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.08, 64 +2026-05-15T13:24:57+08:00 +2026/05/15 13:24:57.293, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.35, 63 +2026-05-15T13:25:02+08:00 +2026/05/15 13:25:02.318, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.89, 62 +2026-05-15T13:25:07+08:00 +2026/05/15 13:25:07.343, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.66, 63 +2026-05-15T13:25:12+08:00 +2026/05/15 13:25:12.367, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.16, 64 +2026-05-15T13:25:17+08:00 +2026/05/15 13:25:17.392, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.74, 63 +2026-05-15T13:25:22+08:00 +2026/05/15 13:25:22.417, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 362.63, 64 +2026-05-15T13:25:27+08:00 +2026/05/15 13:25:27.443, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.66, 64 +2026-05-15T13:25:32+08:00 +2026/05/15 13:25:32.467, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.78, 64 +2026-05-15T13:25:37+08:00 +2026/05/15 13:25:37.492, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.53, 64 +2026-05-15T13:25:42+08:00 +2026/05/15 13:25:42.517, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.44, 63 +2026-05-15T13:25:47+08:00 +2026/05/15 13:25:47.542, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.78, 63 +2026-05-15T13:25:52+08:00 +2026/05/15 13:25:52.565, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.21, 63 +2026-05-15T13:25:57+08:00 +2026/05/15 13:25:57.588, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 292.60, 57 +2026-05-15T13:26:02+08:00 +2026/05/15 13:26:02.612, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.64, 64 +2026-05-15T13:26:07+08:00 +2026/05/15 13:26:07.637, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.40, 64 +2026-05-15T13:26:12+08:00 +2026/05/15 13:26:12.662, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.98, 63 +2026-05-15T13:26:17+08:00 +2026/05/15 13:26:17.686, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.70, 63 +2026-05-15T13:26:22+08:00 +2026/05/15 13:26:22.728, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.93, 63 +2026-05-15T13:26:27+08:00 +2026/05/15 13:26:27.771, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.17, 63 +2026-05-15T13:26:32+08:00 +2026/05/15 13:26:32.798, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.50, 64 +2026-05-15T13:26:37+08:00 +2026/05/15 13:26:37.821, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 340.45, 59 +2026-05-15T13:26:42+08:00 +2026/05/15 13:26:42.864, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.34, 63 +2026-05-15T13:26:47+08:00 +2026/05/15 13:26:47.889, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.27, 63 +2026-05-15T13:26:52+08:00 +2026/05/15 13:26:52.961, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.71, 63 +2026-05-15T13:26:57+08:00 +2026/05/15 13:26:57.987, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 360.76, 63 +2026-05-15T13:27:02+08:00 +2026/05/15 13:27:03.013, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 360.71, 63 +2026-05-15T13:27:08+08:00 +2026/05/15 13:27:08.051, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.62, 64 +2026-05-15T13:27:13+08:00 +2026/05/15 13:27:13.131, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.52, 63 +2026-05-15T13:27:18+08:00 +2026/05/15 13:27:18.157, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 312.28, 62 +2026-05-15T13:27:23+08:00 +2026/05/15 13:27:23.179, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.44, 63 +2026-05-15T13:27:28+08:00 +2026/05/15 13:27:28.203, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.49, 64 +2026-05-15T13:27:33+08:00 +2026/05/15 13:27:33.227, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.51, 63 +2026-05-15T13:27:38+08:00 +2026/05/15 13:27:38.251, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.24, 63 +2026-05-15T13:27:43+08:00 +2026/05/15 13:27:43.276, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 359.77, 63 +2026-05-15T13:27:48+08:00 +2026/05/15 13:27:48.301, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.03, 62 +2026-05-15T13:27:53+08:00 +2026/05/15 13:27:53.324, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.71, 63 +2026-05-15T13:27:58+08:00 +2026/05/15 13:27:58.349, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.08, 63 +2026-05-15T13:28:03+08:00 +2026/05/15 13:28:03.374, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.76, 64 +2026-05-15T13:28:08+08:00 +2026/05/15 13:28:08.400, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.21, 62 +2026-05-15T13:28:13+08:00 +2026/05/15 13:28:13.424, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.05, 63 +2026-05-15T13:28:18+08:00 +2026/05/15 13:28:18.450, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.96, 64 +2026-05-15T13:28:23+08:00 +2026/05/15 13:28:23.482, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.45, 63 +2026-05-15T13:28:28+08:00 +2026/05/15 13:28:28.503, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.14, 63 +2026-05-15T13:28:33+08:00 +2026/05/15 13:28:33.528, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 332.49, 62 +2026-05-15T13:28:38+08:00 +2026/05/15 13:28:38.552, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.08, 63 +2026-05-15T13:28:43+08:00 +2026/05/15 13:28:43.579, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.98, 64 +2026-05-15T13:28:48+08:00 +2026/05/15 13:28:48.603, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.96, 64 +2026-05-15T13:28:53+08:00 +2026/05/15 13:28:53.628, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.74, 63 +2026-05-15T13:28:58+08:00 +2026/05/15 13:28:58.652, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.66, 63 +2026-05-15T13:29:03+08:00 +2026/05/15 13:29:03.677, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 361.73, 63 +2026-05-15T13:29:08+08:00 +2026/05/15 13:29:08.702, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 250.82, 57 +2026-05-15T13:29:13+08:00 +2026/05/15 13:29:13.727, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.14, 63 +2026-05-15T13:29:18+08:00 +2026/05/15 13:29:18.748, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.02, 62 +2026-05-15T13:29:23+08:00 +2026/05/15 13:29:23.774, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.94, 63 +2026-05-15T13:29:28+08:00 +2026/05/15 13:29:28.801, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.13, 63 +2026-05-15T13:29:33+08:00 +2026/05/15 13:29:33.825, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.21, 63 +2026-05-15T13:29:38+08:00 +2026/05/15 13:29:38.848, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.64, 62 +2026-05-15T13:29:43+08:00 +2026/05/15 13:29:43.873, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.01, 63 +2026-05-15T13:29:48+08:00 +2026/05/15 13:29:48.902, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 348.17, 63 +2026-05-15T13:29:53+08:00 +2026/05/15 13:29:53.927, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.04, 63 +2026-05-15T13:29:58+08:00 +2026/05/15 13:29:58.951, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.61, 63 +2026-05-15T13:30:03+08:00 +2026/05/15 13:30:03.977, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.33, 63 +2026-05-15T13:30:08+08:00 +2026/05/15 13:30:09.001, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.43, 62 +2026-05-15T13:30:14+08:00 +2026/05/15 13:30:14.025, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.53, 62 +2026-05-15T13:30:19+08:00 +2026/05/15 13:30:19.052, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 359.21, 63 +2026-05-15T13:30:24+08:00 +2026/05/15 13:30:24.077, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.07, 64 +2026-05-15T13:30:29+08:00 +2026/05/15 13:30:29.101, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.17, 63 +2026-05-15T13:30:34+08:00 +2026/05/15 13:30:34.127, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.08, 63 +2026-05-15T13:30:39+08:00 +2026/05/15 13:30:39.154, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.16, 62 +2026-05-15T13:30:44+08:00 +2026/05/15 13:30:44.179, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.86, 63 +2026-05-15T13:30:49+08:00 +2026/05/15 13:30:49.203, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.08, 64 +2026-05-15T13:30:54+08:00 +2026/05/15 13:30:54.227, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 360.87, 64 +2026-05-15T13:30:59+08:00 +2026/05/15 13:30:59.252, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.03, 64 +2026-05-15T13:31:04+08:00 +2026/05/15 13:31:04.277, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 205.83, 63 +2026-05-15T13:31:09+08:00 +2026/05/15 13:31:09.300, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.75, 63 +2026-05-15T13:31:14+08:00 +2026/05/15 13:31:14.323, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.49, 63 +2026-05-15T13:31:19+08:00 +2026/05/15 13:31:19.350, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 359.38, 62 +2026-05-15T13:31:24+08:00 +2026/05/15 13:31:24.374, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.55, 62 +2026-05-15T13:31:29+08:00 +2026/05/15 13:31:29.399, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.66, 63 +2026-05-15T13:31:34+08:00 +2026/05/15 13:31:34.430, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.44, 64 +2026-05-15T13:31:39+08:00 +2026/05/15 13:31:39.455, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.89, 64 +2026-05-15T13:31:44+08:00 +2026/05/15 13:31:44.481, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 271.18, 63 +2026-05-15T13:31:49+08:00 +2026/05/15 13:31:49.506, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.77, 63 +2026-05-15T13:31:54+08:00 +2026/05/15 13:31:54.531, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.16, 62 +2026-05-15T13:31:59+08:00 +2026/05/15 13:31:59.555, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.60, 62 +2026-05-15T13:32:04+08:00 +2026/05/15 13:32:04.580, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.97, 63 +2026-05-15T13:32:09+08:00 +2026/05/15 13:32:09.604, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.72, 62 +2026-05-15T13:32:14+08:00 +2026/05/15 13:32:14.633, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.76, 62 +2026-05-15T13:32:19+08:00 +2026/05/15 13:32:19.658, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.33, 63 +2026-05-15T13:32:24+08:00 +2026/05/15 13:32:24.682, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.34, 63 +2026-05-15T13:32:29+08:00 +2026/05/15 13:32:29.707, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.97, 64 +2026-05-15T13:32:34+08:00 +2026/05/15 13:32:34.731, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.14, 64 +2026-05-15T13:32:39+08:00 +2026/05/15 13:32:39.760, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.46, 63 +2026-05-15T13:32:44+08:00 +2026/05/15 13:32:44.786, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.40, 63 +2026-05-15T13:32:49+08:00 +2026/05/15 13:32:49.810, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.45, 63 +2026-05-15T13:32:54+08:00 +2026/05/15 13:32:54.836, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.16, 64 +2026-05-15T13:32:59+08:00 +2026/05/15 13:32:59.870, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.73, 64 +2026-05-15T13:33:04+08:00 +2026/05/15 13:33:04.898, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.14, 62 +2026-05-15T13:33:09+08:00 +2026/05/15 13:33:09.922, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.01, 63 +2026-05-15T13:33:14+08:00 +2026/05/15 13:33:14.947, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.14, 63 +2026-05-15T13:33:19+08:00 +2026/05/15 13:33:19.973, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.59, 64 +2026-05-15T13:33:24+08:00 +2026/05/15 13:33:24.998, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.40, 63 +2026-05-15T13:33:30+08:00 +2026/05/15 13:33:30.021, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.75, 63 +2026-05-15T13:33:35+08:00 +2026/05/15 13:33:35.045, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.08, 63 +2026-05-15T13:33:40+08:00 +2026/05/15 13:33:40.069, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.40, 64 +2026-05-15T13:33:45+08:00 +2026/05/15 13:33:45.095, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.19, 62 +2026-05-15T13:33:50+08:00 +2026/05/15 13:33:50.118, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.07, 63 +2026-05-15T13:33:55+08:00 +2026/05/15 13:33:55.142, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.85, 64 +2026-05-15T13:34:00+08:00 +2026/05/15 13:34:00.197, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.37, 63 +2026-05-15T13:34:05+08:00 +2026/05/15 13:34:05.222, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.72, 62 +2026-05-15T13:34:10+08:00 +2026/05/15 13:34:10.263, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.16, 63 +2026-05-15T13:34:15+08:00 +2026/05/15 13:34:15.289, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.83, 62 +2026-05-15T13:34:20+08:00 +2026/05/15 13:34:20.331, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.36, 63 +2026-05-15T13:34:25+08:00 +2026/05/15 13:34:25.356, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.85, 63 +2026-05-15T13:34:30+08:00 +2026/05/15 13:34:30.382, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.87, 63 +2026-05-15T13:34:35+08:00 +2026/05/15 13:34:35.408, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.77, 62 +2026-05-15T13:34:40+08:00 +2026/05/15 13:34:40.454, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 361.22, 63 +2026-05-15T13:34:45+08:00 +2026/05/15 13:34:45.479, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.42, 64 +2026-05-15T13:34:50+08:00 +2026/05/15 13:34:50.501, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.40, 63 +2026-05-15T13:34:55+08:00 +2026/05/15 13:34:55.544, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.24, 64 +2026-05-15T13:35:00+08:00 +2026/05/15 13:35:00.567, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.42, 64 +2026-05-15T13:35:05+08:00 +2026/05/15 13:35:05.609, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.94, 62 +2026-05-15T13:35:10+08:00 +2026/05/15 13:35:10.636, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 360.33, 63 +2026-05-15T13:35:15+08:00 +2026/05/15 13:35:15.660, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.00, 64 +2026-05-15T13:35:20+08:00 +2026/05/15 13:35:20.683, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.17, 64 +2026-05-15T13:35:25+08:00 +2026/05/15 13:35:25.706, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.89, 63 +2026-05-15T13:35:30+08:00 +2026/05/15 13:35:30.730, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.87, 64 +2026-05-15T13:35:35+08:00 +2026/05/15 13:35:35.754, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.10, 62 +2026-05-15T13:35:40+08:00 +2026/05/15 13:35:40.779, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.23, 62 +2026-05-15T13:35:45+08:00 +2026/05/15 13:35:45.803, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 360.01, 63 +2026-05-15T13:35:50+08:00 +2026/05/15 13:35:50.832, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.14, 64 +2026-05-15T13:35:55+08:00 +2026/05/15 13:35:55.855, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.56, 63 +2026-05-15T13:36:00+08:00 +2026/05/15 13:36:00.879, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.62, 63 +2026-05-15T13:36:05+08:00 +2026/05/15 13:36:05.903, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.77, 63 +2026-05-15T13:36:10+08:00 +2026/05/15 13:36:10.929, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.02, 63 +2026-05-15T13:36:15+08:00 +2026/05/15 13:36:15.961, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.69, 63 +2026-05-15T13:36:20+08:00 +2026/05/15 13:36:20.986, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.58, 63 +2026-05-15T13:36:25+08:00 +2026/05/15 13:36:26.010, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.75, 62 +2026-05-15T13:36:31+08:00 +2026/05/15 13:36:31.033, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.18, 63 +2026-05-15T13:36:36+08:00 +2026/05/15 13:36:36.058, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.77, 63 +2026-05-15T13:36:41+08:00 +2026/05/15 13:36:41.083, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.10, 63 +2026-05-15T13:36:46+08:00 +2026/05/15 13:36:46.108, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.25, 63 +2026-05-15T13:36:51+08:00 +2026/05/15 13:36:51.135, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.98, 64 +2026-05-15T13:36:56+08:00 +2026/05/15 13:36:56.160, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.52, 64 +2026-05-15T13:37:01+08:00 +2026/05/15 13:37:01.183, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.60, 63 +2026-05-15T13:37:06+08:00 +2026/05/15 13:37:06.210, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.95, 63 +2026-05-15T13:37:11+08:00 +2026/05/15 13:37:11.234, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.26, 63 +2026-05-15T13:37:16+08:00 +2026/05/15 13:37:16.258, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.55, 63 +2026-05-15T13:37:21+08:00 +2026/05/15 13:37:21.282, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.92, 62 +2026-05-15T13:37:26+08:00 +2026/05/15 13:37:26.305, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.67, 62 +2026-05-15T13:37:31+08:00 +2026/05/15 13:37:31.332, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.07, 63 +2026-05-15T13:37:36+08:00 +2026/05/15 13:37:36.356, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.29, 63 +2026-05-15T13:37:41+08:00 +2026/05/15 13:37:41.380, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.00, 64 +2026-05-15T13:37:46+08:00 +2026/05/15 13:37:46.404, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 361.38, 64 +2026-05-15T13:37:51+08:00 +2026/05/15 13:37:51.428, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.65, 64 +2026-05-15T13:37:56+08:00 +2026/05/15 13:37:56.453, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.50, 63 +2026-05-15T13:38:01+08:00 +2026/05/15 13:38:01.477, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.67, 63 +2026-05-15T13:38:06+08:00 +2026/05/15 13:38:06.504, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.95, 63 +2026-05-15T13:38:11+08:00 +2026/05/15 13:38:11.528, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.20, 63 +2026-05-15T13:38:16+08:00 +2026/05/15 13:38:16.552, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.66, 64 +2026-05-15T13:38:21+08:00 +2026/05/15 13:38:21.581, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.37, 63 +2026-05-15T13:38:26+08:00 +2026/05/15 13:38:26.605, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.43, 63 +2026-05-15T13:38:31+08:00 +2026/05/15 13:38:31.630, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.92, 63 +2026-05-15T13:38:36+08:00 +2026/05/15 13:38:36.654, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.82, 63 +2026-05-15T13:38:41+08:00 +2026/05/15 13:38:41.680, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.17, 63 +2026-05-15T13:38:46+08:00 +2026/05/15 13:38:46.705, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.65, 63 +2026-05-15T13:38:51+08:00 +2026/05/15 13:38:51.733, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.21, 63 +2026-05-15T13:38:56+08:00 +2026/05/15 13:38:56.758, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.84, 63 +2026-05-15T13:39:01+08:00 +2026/05/15 13:39:01.785, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.14, 63 +2026-05-15T13:39:06+08:00 +2026/05/15 13:39:06.810, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.23, 64 +2026-05-15T13:39:11+08:00 +2026/05/15 13:39:11.833, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.55, 62 +2026-05-15T13:39:16+08:00 +2026/05/15 13:39:16.859, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.33, 63 +2026-05-15T13:39:21+08:00 +2026/05/15 13:39:21.885, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.57, 63 +2026-05-15T13:39:26+08:00 +2026/05/15 13:39:26.908, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.07, 63 +2026-05-15T13:39:31+08:00 +2026/05/15 13:39:31.933, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.31, 63 +2026-05-15T13:39:36+08:00 +2026/05/15 13:39:36.961, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.25, 64 +2026-05-15T13:39:41+08:00 +2026/05/15 13:39:41.985, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.87, 63 +2026-05-15T13:39:46+08:00 +2026/05/15 13:39:47.008, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.92, 63 +2026-05-15T13:39:52+08:00 +2026/05/15 13:39:52.033, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.61, 63 +2026-05-15T13:39:57+08:00 +2026/05/15 13:39:57.056, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.90, 63 +2026-05-15T13:40:02+08:00 +2026/05/15 13:40:02.080, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 360.32, 63 +2026-05-15T13:40:07+08:00 +2026/05/15 13:40:07.105, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.33, 62 +2026-05-15T13:40:12+08:00 +2026/05/15 13:40:12.129, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.91, 63 +2026-05-15T13:40:17+08:00 +2026/05/15 13:40:17.155, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.68, 62 +2026-05-15T13:40:22+08:00 +2026/05/15 13:40:22.178, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.27, 62 +2026-05-15T13:40:27+08:00 +2026/05/15 13:40:27.201, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.71, 63 +2026-05-15T13:40:32+08:00 +2026/05/15 13:40:32.242, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.49, 63 +2026-05-15T13:40:37+08:00 +2026/05/15 13:40:37.286, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.43, 64 +2026-05-15T13:40:42+08:00 +2026/05/15 13:40:42.311, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.74, 63 +2026-05-15T13:40:47+08:00 +2026/05/15 13:40:47.368, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.12, 64 +2026-05-15T13:40:52+08:00 +2026/05/15 13:40:52.392, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.26, 62 +2026-05-15T13:40:57+08:00 +2026/05/15 13:40:57.433, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.54, 62 +2026-05-15T13:41:02+08:00 +2026/05/15 13:41:02.476, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.26, 63 +2026-05-15T13:41:07+08:00 +2026/05/15 13:41:07.532, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.60, 63 +2026-05-15T13:41:12+08:00 +2026/05/15 13:41:12.555, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.68, 64 +2026-05-15T13:41:17+08:00 +2026/05/15 13:41:17.577, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.96, 63 +2026-05-15T13:41:22+08:00 +2026/05/15 13:41:22.600, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.54, 65 +2026-05-15T13:41:27+08:00 +2026/05/15 13:41:27.664, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.08, 62 +2026-05-15T13:41:32+08:00 +2026/05/15 13:41:32.687, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.44, 63 +2026-05-15T13:41:37+08:00 +2026/05/15 13:41:37.749, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.42, 63 +2026-05-15T13:41:42+08:00 +2026/05/15 13:41:42.774, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.27, 63 +2026-05-15T13:41:47+08:00 +2026/05/15 13:41:47.830, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.64, 63 +2026-05-15T13:41:52+08:00 +2026/05/15 13:41:52.853, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.34, 63 +2026-05-15T13:41:57+08:00 +2026/05/15 13:41:57.875, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.64, 63 +2026-05-15T13:42:02+08:00 +2026/05/15 13:42:02.938, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.21, 63 +2026-05-15T13:42:07+08:00 +2026/05/15 13:42:07.965, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.72, 63 +2026-05-15T13:42:12+08:00 +2026/05/15 13:42:13.007, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.48, 63 +2026-05-15T13:42:18+08:00 +2026/05/15 13:42:18.032, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.73, 63 +2026-05-15T13:42:23+08:00 +2026/05/15 13:42:23.057, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.58, 64 +2026-05-15T13:42:28+08:00 +2026/05/15 13:42:28.081, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.24, 63 +2026-05-15T13:42:33+08:00 +2026/05/15 13:42:33.105, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.82, 63 +2026-05-15T13:42:38+08:00 +2026/05/15 13:42:38.129, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.23, 63 +2026-05-15T13:42:43+08:00 +2026/05/15 13:42:43.152, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.91, 63 +2026-05-15T13:42:48+08:00 +2026/05/15 13:42:48.176, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 352.49, 63 +2026-05-15T13:42:53+08:00 +2026/05/15 13:42:53.202, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.23, 63 +2026-05-15T13:42:58+08:00 +2026/05/15 13:42:58.226, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.08, 62 +2026-05-15T13:43:03+08:00 +2026/05/15 13:43:03.251, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.09, 63 +2026-05-15T13:43:08+08:00 +2026/05/15 13:43:08.293, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.54, 63 +2026-05-15T13:43:13+08:00 +2026/05/15 13:43:13.316, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.63, 62 +2026-05-15T13:43:18+08:00 +2026/05/15 13:43:18.360, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.84, 63 +2026-05-15T13:43:23+08:00 +2026/05/15 13:43:23.403, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 360.20, 64 +2026-05-15T13:43:28+08:00 +2026/05/15 13:43:28.428, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.62, 63 +2026-05-15T13:43:33+08:00 +2026/05/15 13:43:33.469, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.08, 64 +2026-05-15T13:43:38+08:00 +2026/05/15 13:43:38.548, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.78, 62 +2026-05-15T13:43:43+08:00 +2026/05/15 13:43:43.571, NVIDIA GeForce RTX 5090, 61, 29, 9607, 32607, 353.41, 59 +2026-05-15T13:43:48+08:00 +2026/05/15 13:43:48.594, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 360.90, 64 +2026-05-15T13:43:53+08:00 +2026/05/15 13:43:53.619, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.96, 64 +2026-05-15T13:43:58+08:00 +2026/05/15 13:43:58.644, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.26, 62 +2026-05-15T13:44:03+08:00 +2026/05/15 13:44:03.685, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.70, 62 +2026-05-15T13:44:08+08:00 +2026/05/15 13:44:08.729, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.38, 63 +2026-05-15T13:44:13+08:00 +2026/05/15 13:44:13.772, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.06, 63 +2026-05-15T13:44:18+08:00 +2026/05/15 13:44:18.814, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.20, 63 +2026-05-15T13:44:23+08:00 +2026/05/15 13:44:23.840, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.84, 63 +2026-05-15T13:44:28+08:00 +2026/05/15 13:44:28.883, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.20, 63 +2026-05-15T13:44:33+08:00 +2026/05/15 13:44:33.923, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.40, 63 +2026-05-15T13:44:38+08:00 +2026/05/15 13:44:38.948, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.79, 63 +2026-05-15T13:44:43+08:00 +2026/05/15 13:44:43.989, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.86, 63 +2026-05-15T13:44:49+08:00 +2026/05/15 13:44:49.032, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.28, 63 +2026-05-15T13:44:54+08:00 +2026/05/15 13:44:54.055, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 359.43, 64 +2026-05-15T13:44:59+08:00 +2026/05/15 13:44:59.079, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.63, 64 +2026-05-15T13:45:04+08:00 +2026/05/15 13:45:04.120, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.53, 64 +2026-05-15T13:45:09+08:00 +2026/05/15 13:45:09.148, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.34, 63 +2026-05-15T13:45:14+08:00 +2026/05/15 13:45:14.174, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.17, 64 +2026-05-15T13:45:19+08:00 +2026/05/15 13:45:19.199, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.76, 62 +2026-05-15T13:45:24+08:00 +2026/05/15 13:45:24.226, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.67, 64 +2026-05-15T13:45:29+08:00 +2026/05/15 13:45:29.250, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.28, 64 +2026-05-15T13:45:34+08:00 +2026/05/15 13:45:34.274, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.58, 63 +2026-05-15T13:45:39+08:00 +2026/05/15 13:45:39.300, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 260.48, 60 +2026-05-15T13:45:44+08:00 +2026/05/15 13:45:44.325, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.37, 64 +2026-05-15T13:45:49+08:00 +2026/05/15 13:45:49.351, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 363.10, 64 +2026-05-15T13:45:54+08:00 +2026/05/15 13:45:54.375, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.96, 64 +2026-05-15T13:45:59+08:00 +2026/05/15 13:45:59.400, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.83, 62 +2026-05-15T13:46:04+08:00 +2026/05/15 13:46:04.428, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.81, 62 +2026-05-15T13:46:09+08:00 +2026/05/15 13:46:09.452, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.09, 63 +2026-05-15T13:46:14+08:00 +2026/05/15 13:46:14.475, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.63, 64 +2026-05-15T13:46:19+08:00 +2026/05/15 13:46:19.499, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 261.83, 63 +2026-05-15T13:46:24+08:00 +2026/05/15 13:46:24.525, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.04, 63 +2026-05-15T13:46:29+08:00 +2026/05/15 13:46:29.550, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.87, 63 +2026-05-15T13:46:34+08:00 +2026/05/15 13:46:34.575, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.90, 63 +2026-05-15T13:46:39+08:00 +2026/05/15 13:46:39.603, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.71, 63 +2026-05-15T13:46:44+08:00 +2026/05/15 13:46:44.626, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.31, 62 +2026-05-15T13:46:49+08:00 +2026/05/15 13:46:49.650, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.07, 62 +2026-05-15T13:46:54+08:00 +2026/05/15 13:46:54.674, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.49, 63 +2026-05-15T13:46:59+08:00 +2026/05/15 13:46:59.701, NVIDIA GeForce RTX 5090, 58, 27, 9607, 32607, 250.82, 61 +2026-05-15T13:47:04+08:00 +2026/05/15 13:47:04.725, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.16, 63 +2026-05-15T13:47:09+08:00 +2026/05/15 13:47:09.750, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.63, 63 +2026-05-15T13:47:14+08:00 +2026/05/15 13:47:14.773, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.94, 63 +2026-05-15T13:47:19+08:00 +2026/05/15 13:47:19.797, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 360.18, 64 +2026-05-15T13:47:24+08:00 +2026/05/15 13:47:24.821, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.20, 64 +2026-05-15T13:47:29+08:00 +2026/05/15 13:47:29.849, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 359.82, 64 +2026-05-15T13:47:34+08:00 +2026/05/15 13:47:34.873, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.38, 64 +2026-05-15T13:47:39+08:00 +2026/05/15 13:47:39.897, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 360.08, 63 +2026-05-15T13:47:44+08:00 +2026/05/15 13:47:44.921, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.04, 63 +2026-05-15T13:47:49+08:00 +2026/05/15 13:47:49.946, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.52, 63 +2026-05-15T13:47:54+08:00 +2026/05/15 13:47:54.970, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.60, 63 +2026-05-15T13:47:59+08:00 +2026/05/15 13:47:59.995, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.93, 63 +2026-05-15T13:48:05+08:00 +2026/05/15 13:48:05.018, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.21, 62 +2026-05-15T13:48:10+08:00 +2026/05/15 13:48:10.041, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.65, 63 +2026-05-15T13:48:15+08:00 +2026/05/15 13:48:15.069, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 359.39, 64 +2026-05-15T13:48:20+08:00 +2026/05/15 13:48:20.093, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.02, 63 +2026-05-15T13:48:25+08:00 +2026/05/15 13:48:25.117, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.49, 62 +2026-05-15T13:48:30+08:00 +2026/05/15 13:48:30.142, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.01, 62 +2026-05-15T13:48:35+08:00 +2026/05/15 13:48:35.167, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.02, 63 +2026-05-15T13:48:40+08:00 +2026/05/15 13:48:40.191, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.89, 62 +2026-05-15T13:48:45+08:00 +2026/05/15 13:48:45.216, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.73, 62 +2026-05-15T13:48:50+08:00 +2026/05/15 13:48:50.239, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.67, 62 +2026-05-15T13:48:55+08:00 +2026/05/15 13:48:55.263, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.53, 63 +2026-05-15T13:49:00+08:00 +2026/05/15 13:49:00.288, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.73, 64 +2026-05-15T13:49:05+08:00 +2026/05/15 13:49:05.311, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.68, 63 +2026-05-15T13:49:10+08:00 +2026/05/15 13:49:10.334, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.64, 62 +2026-05-15T13:49:15+08:00 +2026/05/15 13:49:15.358, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.92, 63 +2026-05-15T13:49:20+08:00 +2026/05/15 13:49:20.382, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.00, 64 +2026-05-15T13:49:25+08:00 +2026/05/15 13:49:25.408, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.60, 63 +2026-05-15T13:49:30+08:00 +2026/05/15 13:49:30.431, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.71, 63 +2026-05-15T13:49:35+08:00 +2026/05/15 13:49:35.462, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 294.98, 64 +2026-05-15T13:49:40+08:00 +2026/05/15 13:49:40.490, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.48, 63 +2026-05-15T13:49:45+08:00 +2026/05/15 13:49:45.513, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.06, 64 +2026-05-15T13:49:50+08:00 +2026/05/15 13:49:50.537, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.99, 63 +2026-05-15T13:49:55+08:00 +2026/05/15 13:49:55.561, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.59, 62 +2026-05-15T13:50:00+08:00 +2026/05/15 13:50:00.587, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.88, 63 +2026-05-15T13:50:05+08:00 +2026/05/15 13:50:05.610, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.72, 64 +2026-05-15T13:50:10+08:00 +2026/05/15 13:50:10.635, NVIDIA GeForce RTX 5090, 43, 23, 9607, 32607, 343.15, 61 +2026-05-15T13:50:15+08:00 +2026/05/15 13:50:15.656, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 361.28, 63 +2026-05-15T13:50:20+08:00 +2026/05/15 13:50:20.681, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.17, 63 +2026-05-15T13:50:25+08:00 +2026/05/15 13:50:25.708, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.21, 63 +2026-05-15T13:50:30+08:00 +2026/05/15 13:50:30.732, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.95, 63 +2026-05-15T13:50:35+08:00 +2026/05/15 13:50:35.757, NVIDIA GeForce RTX 5090, 83, 37, 9607, 32607, 361.26, 64 +2026-05-15T13:50:40+08:00 +2026/05/15 13:50:40.778, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.00, 62 +2026-05-15T13:50:45+08:00 +2026/05/15 13:50:45.801, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.51, 63 +2026-05-15T13:50:50+08:00 +2026/05/15 13:50:50.825, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 248.24, 62 +2026-05-15T13:50:55+08:00 +2026/05/15 13:50:55.849, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.06, 63 +2026-05-15T13:51:00+08:00 +2026/05/15 13:51:00.871, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.26, 63 +2026-05-15T13:51:05+08:00 +2026/05/15 13:51:05.894, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.73, 64 +2026-05-15T13:51:10+08:00 +2026/05/15 13:51:10.917, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.85, 64 +2026-05-15T13:51:15+08:00 +2026/05/15 13:51:15.941, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 361.18, 63 +2026-05-15T13:51:20+08:00 +2026/05/15 13:51:20.966, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.36, 64 +2026-05-15T13:51:25+08:00 +2026/05/15 13:51:25.991, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.38, 62 +2026-05-15T13:51:31+08:00 +2026/05/15 13:51:31.017, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.34, 63 +2026-05-15T13:51:36+08:00 +2026/05/15 13:51:36.041, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 355.65, 63 +2026-05-15T13:51:41+08:00 +2026/05/15 13:51:41.070, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 353.46, 64 +2026-05-15T13:51:46+08:00 +2026/05/15 13:51:46.093, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.23, 63 +2026-05-15T13:51:51+08:00 +2026/05/15 13:51:51.117, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.49, 63 +2026-05-15T13:51:56+08:00 +2026/05/15 13:51:56.141, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.82, 63 +2026-05-15T13:52:01+08:00 +2026/05/15 13:52:01.168, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 361.08, 63 +2026-05-15T13:52:06+08:00 +2026/05/15 13:52:06.193, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 361.60, 64 +2026-05-15T13:52:11+08:00 +2026/05/15 13:52:11.217, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.26, 64 +2026-05-15T13:52:16+08:00 +2026/05/15 13:52:16.240, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.95, 62 +2026-05-15T13:52:21+08:00 +2026/05/15 13:52:21.264, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.39, 63 +2026-05-15T13:52:26+08:00 +2026/05/15 13:52:26.289, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.53, 64 +2026-05-15T13:52:31+08:00 +2026/05/15 13:52:31.313, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.36, 64 +2026-05-15T13:52:36+08:00 +2026/05/15 13:52:36.339, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.86, 63 +2026-05-15T13:52:41+08:00 +2026/05/15 13:52:41.368, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.25, 64 +2026-05-15T13:52:46+08:00 +2026/05/15 13:52:46.390, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.05, 62 +2026-05-15T13:52:51+08:00 +2026/05/15 13:52:51.414, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.51, 63 +2026-05-15T13:52:56+08:00 +2026/05/15 13:52:56.438, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 243.14, 57 +2026-05-15T13:53:01+08:00 +2026/05/15 13:53:01.465, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.41, 64 +2026-05-15T13:53:06+08:00 +2026/05/15 13:53:06.489, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.30, 63 +2026-05-15T13:53:11+08:00 +2026/05/15 13:53:11.514, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.50, 63 +2026-05-15T13:53:16+08:00 +2026/05/15 13:53:16.538, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.30, 63 +2026-05-15T13:53:21+08:00 +2026/05/15 13:53:21.565, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 259.09, 62 +2026-05-15T13:53:26+08:00 +2026/05/15 13:53:26.587, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.23, 62 +2026-05-15T13:53:31+08:00 +2026/05/15 13:53:31.611, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.65, 63 +2026-05-15T13:53:36+08:00 +2026/05/15 13:53:36.634, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.64, 63 +2026-05-15T13:53:41+08:00 +2026/05/15 13:53:41.660, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.23, 64 +2026-05-15T13:53:46+08:00 +2026/05/15 13:53:46.685, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.79, 63 +2026-05-15T13:53:51+08:00 +2026/05/15 13:53:51.709, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.93, 62 +2026-05-15T13:53:56+08:00 +2026/05/15 13:53:56.732, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 351.27, 61 +2026-05-15T13:54:01+08:00 +2026/05/15 13:54:01.754, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.67, 64 +2026-05-15T13:54:06+08:00 +2026/05/15 13:54:06.780, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.62, 64 +2026-05-15T13:54:11+08:00 +2026/05/15 13:54:11.803, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 361.71, 63 +2026-05-15T13:54:16+08:00 +2026/05/15 13:54:16.828, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.42, 62 +2026-05-15T13:54:21+08:00 +2026/05/15 13:54:21.851, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.05, 63 +2026-05-15T13:54:26+08:00 +2026/05/15 13:54:26.880, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.17, 64 +2026-05-15T13:54:31+08:00 +2026/05/15 13:54:31.904, NVIDIA GeForce RTX 5090, 60, 23, 9607, 32607, 232.52, 62 +2026-05-15T13:54:36+08:00 +2026/05/15 13:54:36.926, NVIDIA GeForce RTX 5090, 2, 1, 9607, 32607, 254.43, 62 +2026-05-15T13:54:41+08:00 +2026/05/15 13:54:41.950, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.16, 63 +2026-05-15T13:54:46+08:00 +2026/05/15 13:54:46.975, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.67, 62 +2026-05-15T13:54:51+08:00 +2026/05/15 13:54:52.000, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.45, 63 +2026-05-15T13:54:57+08:00 +2026/05/15 13:54:57.022, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.82, 63 +2026-05-15T13:55:02+08:00 +2026/05/15 13:55:02.050, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.17, 63 +2026-05-15T13:55:07+08:00 +2026/05/15 13:55:07.075, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.63, 63 +2026-05-15T13:55:12+08:00 +2026/05/15 13:55:12.102, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.69, 62 +2026-05-15T13:55:17+08:00 +2026/05/15 13:55:17.129, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.97, 63 +2026-05-15T13:55:22+08:00 +2026/05/15 13:55:22.154, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.21, 63 +2026-05-15T13:55:27+08:00 +2026/05/15 13:55:27.179, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.53, 63 +2026-05-15T13:55:32+08:00 +2026/05/15 13:55:32.202, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.91, 63 +2026-05-15T13:55:37+08:00 +2026/05/15 13:55:37.230, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.15, 64 +2026-05-15T13:55:42+08:00 +2026/05/15 13:55:42.256, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.19, 64 +2026-05-15T13:55:47+08:00 +2026/05/15 13:55:47.279, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.49, 62 +2026-05-15T13:55:52+08:00 +2026/05/15 13:55:52.304, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.08, 63 +2026-05-15T13:55:57+08:00 +2026/05/15 13:55:57.328, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.12, 63 +2026-05-15T13:56:02+08:00 +2026/05/15 13:56:02.355, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.41, 63 +2026-05-15T13:56:07+08:00 +2026/05/15 13:56:07.380, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.66, 62 +2026-05-15T13:56:12+08:00 +2026/05/15 13:56:12.403, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.08, 63 +2026-05-15T13:56:17+08:00 +2026/05/15 13:56:17.426, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.68, 64 +2026-05-15T13:56:22+08:00 +2026/05/15 13:56:22.452, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.14, 64 +2026-05-15T13:56:27+08:00 +2026/05/15 13:56:27.478, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.47, 64 +2026-05-15T13:56:32+08:00 +2026/05/15 13:56:32.501, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 306.88, 58 +2026-05-15T13:56:37+08:00 +2026/05/15 13:56:37.524, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.28, 64 +2026-05-15T13:56:42+08:00 +2026/05/15 13:56:42.550, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.44, 64 +2026-05-15T13:56:47+08:00 +2026/05/15 13:56:47.577, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.90, 63 +2026-05-15T13:56:52+08:00 +2026/05/15 13:56:52.602, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.79, 63 +2026-05-15T13:56:57+08:00 +2026/05/15 13:56:57.626, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.48, 63 +2026-05-15T13:57:02+08:00 +2026/05/15 13:57:02.650, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.52, 64 +2026-05-15T13:57:07+08:00 +2026/05/15 13:57:07.674, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.87, 64 +2026-05-15T13:57:12+08:00 +2026/05/15 13:57:12.697, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 205.20, 61 +2026-05-15T13:57:17+08:00 +2026/05/15 13:57:17.721, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.92, 63 +2026-05-15T13:57:22+08:00 +2026/05/15 13:57:22.744, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.92, 64 +2026-05-15T13:57:27+08:00 +2026/05/15 13:57:27.768, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.32, 64 +2026-05-15T13:57:32+08:00 +2026/05/15 13:57:32.799, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.90, 63 +2026-05-15T13:57:37+08:00 +2026/05/15 13:57:37.824, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.79, 64 +2026-05-15T13:57:42+08:00 +2026/05/15 13:57:42.860, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.58, 62 +2026-05-15T13:57:47+08:00 +2026/05/15 13:57:47.885, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.00, 63 +2026-05-15T13:57:52+08:00 +2026/05/15 13:57:52.910, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.01, 64 +2026-05-15T13:57:57+08:00 +2026/05/15 13:57:57.979, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.76, 62 +2026-05-15T13:58:02+08:00 +2026/05/15 13:58:03.002, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.91, 62 +2026-05-15T13:58:08+08:00 +2026/05/15 13:58:08.029, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.05, 63 +2026-05-15T13:58:13+08:00 +2026/05/15 13:58:13.053, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.21, 64 +2026-05-15T13:58:18+08:00 +2026/05/15 13:58:18.114, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.54, 63 +2026-05-15T13:58:23+08:00 +2026/05/15 13:58:23.140, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.21, 64 +2026-05-15T13:58:28+08:00 +2026/05/15 13:58:28.168, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.23, 63 +2026-05-15T13:58:33+08:00 +2026/05/15 13:58:33.199, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.81, 63 +2026-05-15T13:58:38+08:00 +2026/05/15 13:58:38.222, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.73, 63 +2026-05-15T13:58:43+08:00 +2026/05/15 13:58:43.246, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.69, 62 +2026-05-15T13:58:48+08:00 +2026/05/15 13:58:48.290, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 354.17, 62 +2026-05-15T13:58:53+08:00 +2026/05/15 13:58:53.362, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.34, 63 +2026-05-15T13:58:58+08:00 +2026/05/15 13:58:58.385, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.04, 64 +2026-05-15T13:59:03+08:00 +2026/05/15 13:59:03.430, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.47, 63 +2026-05-15T13:59:08+08:00 +2026/05/15 13:59:08.473, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.43, 63 +2026-05-15T13:59:13+08:00 +2026/05/15 13:59:13.497, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.15, 63 +2026-05-15T13:59:18+08:00 +2026/05/15 13:59:18.548, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.90, 63 +2026-05-15T13:59:23+08:00 +2026/05/15 13:59:23.587, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.16, 63 +2026-05-15T13:59:28+08:00 +2026/05/15 13:59:28.612, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.61, 63 +2026-05-15T13:59:33+08:00 +2026/05/15 13:59:33.635, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.10, 63 +2026-05-15T13:59:38+08:00 +2026/05/15 13:59:38.663, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 360.74, 63 +2026-05-15T13:59:43+08:00 +2026/05/15 13:59:43.689, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 317.98, 58 +2026-05-15T13:59:48+08:00 +2026/05/15 13:59:48.718, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.16, 63 +2026-05-15T13:59:53+08:00 +2026/05/15 13:59:53.742, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.37, 63 +2026-05-15T13:59:58+08:00 +2026/05/15 13:59:58.766, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.36, 63 +2026-05-15T14:00:03+08:00 +2026/05/15 14:00:03.789, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.02, 63 +2026-05-15T14:00:08+08:00 +2026/05/15 14:00:08.815, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.49, 63 +2026-05-15T14:00:13+08:00 +2026/05/15 14:00:13.838, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.23, 63 +2026-05-15T14:00:18+08:00 +2026/05/15 14:00:18.862, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 361.88, 64 +2026-05-15T14:00:23+08:00 +2026/05/15 14:00:23.886, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.40, 63 +2026-05-15T14:00:28+08:00 +2026/05/15 14:00:28.910, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.21, 62 +2026-05-15T14:00:33+08:00 +2026/05/15 14:00:33.934, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.61, 63 +2026-05-15T14:00:38+08:00 +2026/05/15 14:00:38.958, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.36, 64 +2026-05-15T14:00:43+08:00 +2026/05/15 14:00:43.980, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.87, 64 +2026-05-15T14:00:48+08:00 +2026/05/15 14:00:49.003, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.76, 64 +2026-05-15T14:00:54+08:00 +2026/05/15 14:00:54.026, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.78, 63 +2026-05-15T14:00:59+08:00 +2026/05/15 14:00:59.051, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.70, 64 +2026-05-15T14:01:04+08:00 +2026/05/15 14:01:04.076, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 331.50, 62 +2026-05-15T14:01:09+08:00 +2026/05/15 14:01:09.101, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.08, 63 +2026-05-15T14:01:14+08:00 +2026/05/15 14:01:14.127, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.09, 64 +2026-05-15T14:01:19+08:00 +2026/05/15 14:01:19.150, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.21, 63 +2026-05-15T14:01:24+08:00 +2026/05/15 14:01:24.181, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.56, 63 +2026-05-15T14:01:29+08:00 +2026/05/15 14:01:29.207, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 360.99, 63 +2026-05-15T14:01:34+08:00 +2026/05/15 14:01:34.235, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.73, 63 +2026-05-15T14:01:39+08:00 +2026/05/15 14:01:39.259, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.50, 64 +2026-05-15T14:01:44+08:00 +2026/05/15 14:01:44.283, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.66, 63 +2026-05-15T14:01:49+08:00 +2026/05/15 14:01:49.306, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.98, 63 +2026-05-15T14:01:54+08:00 +2026/05/15 14:01:54.329, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.74, 63 +2026-05-15T14:01:59+08:00 +2026/05/15 14:01:59.355, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.11, 62 +2026-05-15T14:02:04+08:00 +2026/05/15 14:02:04.378, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 361.57, 63 +2026-05-15T14:02:09+08:00 +2026/05/15 14:02:09.401, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.66, 64 +2026-05-15T14:02:14+08:00 +2026/05/15 14:02:14.425, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.89, 63 +2026-05-15T14:02:19+08:00 +2026/05/15 14:02:19.450, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 362.57, 63 +2026-05-15T14:02:24+08:00 +2026/05/15 14:02:24.479, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.68, 61 +2026-05-15T14:02:29+08:00 +2026/05/15 14:02:29.502, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.89, 63 +2026-05-15T14:02:34+08:00 +2026/05/15 14:02:34.530, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.22, 62 +2026-05-15T14:02:39+08:00 +2026/05/15 14:02:39.554, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.26, 62 +2026-05-15T14:02:44+08:00 +2026/05/15 14:02:44.577, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.92, 62 +2026-05-15T14:02:49+08:00 +2026/05/15 14:02:49.601, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.23, 62 +2026-05-15T14:02:54+08:00 +2026/05/15 14:02:54.626, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.82, 62 +2026-05-15T14:02:59+08:00 +2026/05/15 14:02:59.654, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.67, 62 +2026-05-15T14:03:04+08:00 +2026/05/15 14:03:04.678, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.30, 63 +2026-05-15T14:03:09+08:00 +2026/05/15 14:03:09.702, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.95, 63 +2026-05-15T14:03:14+08:00 +2026/05/15 14:03:14.726, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.21, 63 +2026-05-15T14:03:19+08:00 +2026/05/15 14:03:19.750, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.48, 63 +2026-05-15T14:03:24+08:00 +2026/05/15 14:03:24.774, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.16, 63 +2026-05-15T14:03:29+08:00 +2026/05/15 14:03:29.800, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 360.79, 64 +2026-05-15T14:03:34+08:00 +2026/05/15 14:03:34.824, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.96, 62 +2026-05-15T14:03:39+08:00 +2026/05/15 14:03:39.852, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.26, 63 +2026-05-15T14:03:44+08:00 +2026/05/15 14:03:44.875, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 359.66, 63 +2026-05-15T14:03:49+08:00 +2026/05/15 14:03:49.901, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.56, 63 +2026-05-15T14:03:54+08:00 +2026/05/15 14:03:54.925, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.86, 63 +2026-05-15T14:03:59+08:00 +2026/05/15 14:03:59.950, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.63, 63 +2026-05-15T14:04:04+08:00 +2026/05/15 14:04:04.975, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.43, 63 +2026-05-15T14:04:09+08:00 +2026/05/15 14:04:10.002, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.66, 63 +2026-05-15T14:04:15+08:00 +2026/05/15 14:04:15.025, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 351.02, 62 +2026-05-15T14:04:20+08:00 +2026/05/15 14:04:20.054, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 358.85, 61 +2026-05-15T14:04:25+08:00 +2026/05/15 14:04:25.077, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.96, 62 +2026-05-15T14:04:30+08:00 +2026/05/15 14:04:30.101, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.94, 62 +2026-05-15T14:04:35+08:00 +2026/05/15 14:04:35.125, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 359.86, 63 +2026-05-15T14:04:40+08:00 +2026/05/15 14:04:40.154, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.11, 63 +2026-05-15T14:04:45+08:00 +2026/05/15 14:04:45.177, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.35, 61 +2026-05-15T14:04:50+08:00 +2026/05/15 14:04:50.202, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.28, 62 +2026-05-15T14:04:55+08:00 +2026/05/15 14:04:55.226, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 359.72, 62 +2026-05-15T14:05:00+08:00 +2026/05/15 14:05:00.248, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.78, 63 +2026-05-15T14:05:05+08:00 +2026/05/15 14:05:05.275, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.83, 63 +2026-05-15T14:05:10+08:00 +2026/05/15 14:05:10.298, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.83, 62 +2026-05-15T14:05:15+08:00 +2026/05/15 14:05:15.321, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.59, 62 +2026-05-15T14:05:20+08:00 +2026/05/15 14:05:20.346, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.23, 64 +2026-05-15T14:05:25+08:00 +2026/05/15 14:05:25.373, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.31, 63 +2026-05-15T14:05:30+08:00 +2026/05/15 14:05:30.397, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.30, 63 +2026-05-15T14:05:35+08:00 +2026/05/15 14:05:35.421, NVIDIA GeForce RTX 5090, 66, 23, 9607, 32607, 348.90, 62 +2026-05-15T14:05:40+08:00 +2026/05/15 14:05:40.442, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.52, 63 +2026-05-15T14:05:45+08:00 +2026/05/15 14:05:45.466, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.64, 63 +2026-05-15T14:05:50+08:00 +2026/05/15 14:05:50.490, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.56, 63 +2026-05-15T14:05:55+08:00 +2026/05/15 14:05:55.546, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.05, 63 +2026-05-15T14:06:00+08:00 +2026/05/15 14:06:00.571, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.36, 63 +2026-05-15T14:06:05+08:00 +2026/05/15 14:06:05.594, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.33, 63 +2026-05-15T14:06:10+08:00 +2026/05/15 14:06:10.635, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.28, 62 +2026-05-15T14:06:15+08:00 +2026/05/15 14:06:15.659, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.83, 63 +2026-05-15T14:06:20+08:00 +2026/05/15 14:06:20.683, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 360.53, 63 +2026-05-15T14:06:25+08:00 +2026/05/15 14:06:25.708, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 360.67, 63 +2026-05-15T14:06:30+08:00 +2026/05/15 14:06:30.748, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 360.13, 63 +2026-05-15T14:06:35+08:00 +2026/05/15 14:06:35.789, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 276.70, 61 +2026-05-15T14:06:40+08:00 +2026/05/15 14:06:40.832, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 359.52, 62 +2026-05-15T14:06:45+08:00 +2026/05/15 14:06:45.865, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 359.55, 62 +2026-05-15T14:06:50+08:00 +2026/05/15 14:06:50.889, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 359.08, 63 +2026-05-15T14:06:55+08:00 +2026/05/15 14:06:55.913, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.28, 63 +2026-05-15T14:07:00+08:00 +2026/05/15 14:07:00.965, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.01, 63 +2026-05-15T14:07:05+08:00 +2026/05/15 14:07:05.989, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.30, 63 +2026-05-15T14:07:11+08:00 +2026/05/15 14:07:11.044, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.99, 64 +2026-05-15T14:07:16+08:00 +2026/05/15 14:07:16.068, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.28, 64 +2026-05-15T14:07:21+08:00 +2026/05/15 14:07:21.093, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.04, 63 +2026-05-15T14:07:26+08:00 +2026/05/15 14:07:26.118, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.02, 63 +2026-05-15T14:07:31+08:00 +2026/05/15 14:07:31.142, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.19, 62 +2026-05-15T14:07:36+08:00 +2026/05/15 14:07:36.166, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.30, 63 +2026-05-15T14:07:41+08:00 +2026/05/15 14:07:41.190, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.43, 64 +2026-05-15T14:07:46+08:00 +2026/05/15 14:07:46.214, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.62, 63 +2026-05-15T14:07:51+08:00 +2026/05/15 14:07:51.237, NVIDIA GeForce RTX 5090, 53, 19, 9607, 32607, 233.70, 56 +2026-05-15T14:07:56+08:00 +2026/05/15 14:07:56.261, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 359.71, 63 +2026-05-15T14:08:01+08:00 +2026/05/15 14:08:01.288, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 359.48, 63 +2026-05-15T14:08:06+08:00 +2026/05/15 14:08:06.312, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.84, 63 +2026-05-15T14:08:11+08:00 +2026/05/15 14:08:11.335, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.63, 62 +2026-05-15T14:08:16+08:00 +2026/05/15 14:08:16.360, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.40, 62 +2026-05-15T14:08:21+08:00 +2026/05/15 14:08:21.385, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.20, 62 +2026-05-15T14:08:26+08:00 +2026/05/15 14:08:26.411, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 351.79, 63 +2026-05-15T14:08:31+08:00 +2026/05/15 14:08:31.435, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.07, 63 +2026-05-15T14:08:36+08:00 +2026/05/15 14:08:36.461, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.08, 63 +2026-05-15T14:08:41+08:00 +2026/05/15 14:08:41.485, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.43, 63 +2026-05-15T14:08:46+08:00 +2026/05/15 14:08:46.509, NVIDIA GeForce RTX 5090, 79, 35, 9607, 32607, 259.03, 60 +2026-05-15T14:08:51+08:00 +2026/05/15 14:08:51.532, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 359.84, 63 +2026-05-15T14:08:56+08:00 +2026/05/15 14:08:56.559, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.42, 63 +2026-05-15T14:09:01+08:00 +2026/05/15 14:09:01.586, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.44, 64 +2026-05-15T14:09:06+08:00 +2026/05/15 14:09:06.611, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.97, 63 +2026-05-15T14:09:11+08:00 +2026/05/15 14:09:11.651, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.89, 64 +2026-05-15T14:09:16+08:00 +2026/05/15 14:09:16.674, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.98, 63 +2026-05-15T14:09:21+08:00 +2026/05/15 14:09:21.718, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.89, 63 +2026-05-15T14:09:26+08:00 +2026/05/15 14:09:26.761, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.62, 64 +2026-05-15T14:09:31+08:00 +2026/05/15 14:09:31.804, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.11, 63 +2026-05-15T14:09:36+08:00 +2026/05/15 14:09:36.858, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.38, 63 +2026-05-15T14:09:41+08:00 +2026/05/15 14:09:41.884, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.86, 64 +2026-05-15T14:09:46+08:00 +2026/05/15 14:09:46.937, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.69, 63 +2026-05-15T14:09:51+08:00 +2026/05/15 14:09:51.962, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.49, 63 +2026-05-15T14:09:56+08:00 +2026/05/15 14:09:57.021, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.30, 64 +2026-05-15T14:10:02+08:00 +2026/05/15 14:10:02.059, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 331.59, 63 +2026-05-15T14:10:07+08:00 +2026/05/15 14:10:07.084, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.40, 63 +2026-05-15T14:10:12+08:00 +2026/05/15 14:10:12.140, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.46, 63 +2026-05-15T14:10:17+08:00 +2026/05/15 14:10:17.167, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.84, 64 +2026-05-15T14:10:22+08:00 +2026/05/15 14:10:22.205, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.41, 64 +2026-05-15T14:10:27+08:00 +2026/05/15 14:10:27.247, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.48, 64 +2026-05-15T14:10:32+08:00 +2026/05/15 14:10:32.287, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.54, 64 +2026-05-15T14:10:37+08:00 +2026/05/15 14:10:37.311, NVIDIA GeForce RTX 5090, 1, 0, 9607, 32607, 271.83, 57 +2026-05-15T14:10:42+08:00 +2026/05/15 14:10:42.333, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.41, 63 +2026-05-15T14:10:47+08:00 +2026/05/15 14:10:47.375, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.38, 63 +2026-05-15T14:10:52+08:00 +2026/05/15 14:10:52.434, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.72, 64 +2026-05-15T14:10:57+08:00 +2026/05/15 14:10:57.460, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.45, 63 +2026-05-15T14:11:02+08:00 +2026/05/15 14:11:02.501, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.21, 63 +2026-05-15T14:11:07+08:00 +2026/05/15 14:11:07.525, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.13, 64 +2026-05-15T14:11:12+08:00 +2026/05/15 14:11:12.552, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.95, 63 +2026-05-15T14:11:17+08:00 +2026/05/15 14:11:17.578, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.10, 63 +2026-05-15T14:11:22+08:00 +2026/05/15 14:11:22.603, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.55, 64 +2026-05-15T14:11:27+08:00 +2026/05/15 14:11:27.627, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.36, 63 +2026-05-15T14:11:32+08:00 +2026/05/15 14:11:32.650, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 361.93, 63 +2026-05-15T14:11:37+08:00 +2026/05/15 14:11:37.674, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.72, 64 +2026-05-15T14:11:42+08:00 +2026/05/15 14:11:42.701, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.56, 63 +2026-05-15T14:11:47+08:00 +2026/05/15 14:11:47.725, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 359.11, 64 +2026-05-15T14:11:52+08:00 +2026/05/15 14:11:52.749, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.65, 63 +2026-05-15T14:11:57+08:00 +2026/05/15 14:11:57.772, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.62, 64 +2026-05-15T14:12:02+08:00 +2026/05/15 14:12:02.795, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.90, 64 +2026-05-15T14:12:07+08:00 +2026/05/15 14:12:07.819, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 204.05, 63 +2026-05-15T14:12:12+08:00 +2026/05/15 14:12:12.845, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.41, 64 +2026-05-15T14:12:17+08:00 +2026/05/15 14:12:17.869, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 360.90, 64 +2026-05-15T14:12:22+08:00 +2026/05/15 14:12:22.893, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 360.50, 63 +2026-05-15T14:12:27+08:00 +2026/05/15 14:12:27.916, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 360.50, 64 +2026-05-15T14:12:32+08:00 +2026/05/15 14:12:32.940, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.30, 64 +2026-05-15T14:12:37+08:00 +2026/05/15 14:12:37.966, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.40, 64 +2026-05-15T14:12:42+08:00 +2026/05/15 14:12:42.990, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.72, 64 +2026-05-15T14:12:47+08:00 +2026/05/15 14:12:48.016, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.63, 63 +2026-05-15T14:12:53+08:00 +2026/05/15 14:12:53.040, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.47, 62 +2026-05-15T14:12:58+08:00 +2026/05/15 14:12:58.063, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.87, 63 +2026-05-15T14:13:03+08:00 +2026/05/15 14:13:03.087, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.43, 63 +2026-05-15T14:13:08+08:00 +2026/05/15 14:13:08.111, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.67, 64 +2026-05-15T14:13:13+08:00 +2026/05/15 14:13:13.136, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 360.47, 64 +2026-05-15T14:13:18+08:00 +2026/05/15 14:13:18.161, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.57, 64 +2026-05-15T14:13:23+08:00 +2026/05/15 14:13:23.188, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.27, 64 +2026-05-15T14:13:28+08:00 +2026/05/15 14:13:28.213, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.22, 64 +2026-05-15T14:13:33+08:00 +2026/05/15 14:13:33.236, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.60, 64 +2026-05-15T14:13:38+08:00 +2026/05/15 14:13:38.260, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.52, 64 +2026-05-15T14:13:43+08:00 +2026/05/15 14:13:43.287, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 278.30, 63 +2026-05-15T14:13:48+08:00 +2026/05/15 14:13:48.310, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.43, 64 +2026-05-15T14:13:53+08:00 +2026/05/15 14:13:53.333, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.30, 64 +2026-05-15T14:13:58+08:00 +2026/05/15 14:13:58.365, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.23, 64 +2026-05-15T14:14:03+08:00 +2026/05/15 14:14:03.391, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.38, 64 +2026-05-15T14:14:08+08:00 +2026/05/15 14:14:08.415, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.15, 65 +2026-05-15T14:14:13+08:00 +2026/05/15 14:14:13.439, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.32, 64 +2026-05-15T14:14:18+08:00 +2026/05/15 14:14:18.463, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.23, 64 +2026-05-15T14:14:23+08:00 +2026/05/15 14:14:23.487, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.71, 64 +2026-05-15T14:14:28+08:00 +2026/05/15 14:14:28.513, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.49, 63 +2026-05-15T14:14:33+08:00 +2026/05/15 14:14:33.535, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 286.06, 57 +2026-05-15T14:14:38+08:00 +2026/05/15 14:14:38.558, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.21, 64 +2026-05-15T14:14:43+08:00 +2026/05/15 14:14:43.585, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.26, 64 +2026-05-15T14:14:48+08:00 +2026/05/15 14:14:48.609, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.35, 64 +2026-05-15T14:14:53+08:00 +2026/05/15 14:14:53.632, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.36, 65 +2026-05-15T14:14:58+08:00 +2026/05/15 14:14:58.656, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.84, 65 +2026-05-15T14:15:03+08:00 +2026/05/15 14:15:03.680, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.68, 64 +2026-05-15T14:15:08+08:00 +2026/05/15 14:15:08.708, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.79, 64 +2026-05-15T14:15:13+08:00 +2026/05/15 14:15:13.731, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 349.67, 64 +2026-05-15T14:15:18+08:00 +2026/05/15 14:15:18.754, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.18, 63 +2026-05-15T14:15:23+08:00 +2026/05/15 14:15:23.777, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.60, 63 +2026-05-15T14:15:28+08:00 +2026/05/15 14:15:28.800, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.17, 62 +2026-05-15T14:15:33+08:00 +2026/05/15 14:15:33.825, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.46, 63 +2026-05-15T14:15:38+08:00 +2026/05/15 14:15:38.851, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 353.12, 63 +2026-05-15T14:15:43+08:00 +2026/05/15 14:15:43.876, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.19, 64 +2026-05-15T14:15:48+08:00 +2026/05/15 14:15:48.900, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.42, 64 +2026-05-15T14:15:53+08:00 +2026/05/15 14:15:53.923, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.28, 64 +2026-05-15T14:15:58+08:00 +2026/05/15 14:15:58.948, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.53, 63 +2026-05-15T14:16:03+08:00 +2026/05/15 14:16:03.972, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.11, 63 +2026-05-15T14:16:08+08:00 +2026/05/15 14:16:08.995, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.99, 63 +2026-05-15T14:16:14+08:00 +2026/05/15 14:16:14.018, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.52, 63 +2026-05-15T14:16:19+08:00 +2026/05/15 14:16:19.094, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 360.87, 64 +2026-05-15T14:16:24+08:00 +2026/05/15 14:16:24.119, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.68, 63 +2026-05-15T14:16:29+08:00 +2026/05/15 14:16:29.165, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.09, 64 +2026-05-15T14:16:34+08:00 +2026/05/15 14:16:34.190, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.57, 64 +2026-05-15T14:16:39+08:00 +2026/05/15 14:16:39.213, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.86, 65 +2026-05-15T14:16:44+08:00 +2026/05/15 14:16:44.240, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.80, 64 +2026-05-15T14:16:49+08:00 +2026/05/15 14:16:49.264, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.50, 63 +2026-05-15T14:16:54+08:00 +2026/05/15 14:16:54.288, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.87, 64 +2026-05-15T14:16:59+08:00 +2026/05/15 14:16:59.319, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.05, 64 +2026-05-15T14:17:04+08:00 +2026/05/15 14:17:04.343, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.92, 63 +2026-05-15T14:17:09+08:00 +2026/05/15 14:17:09.367, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.61, 64 +2026-05-15T14:17:14+08:00 +2026/05/15 14:17:14.390, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.08, 64 +2026-05-15T14:17:19+08:00 +2026/05/15 14:17:19.414, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.07, 63 +2026-05-15T14:17:24+08:00 +2026/05/15 14:17:24.438, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.87, 63 +2026-05-15T14:17:29+08:00 +2026/05/15 14:17:29.462, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.68, 65 +2026-05-15T14:17:34+08:00 +2026/05/15 14:17:34.484, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.21, 64 +2026-05-15T14:17:39+08:00 +2026/05/15 14:17:39.508, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.97, 64 +2026-05-15T14:17:44+08:00 +2026/05/15 14:17:44.531, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.30, 64 +2026-05-15T14:17:49+08:00 +2026/05/15 14:17:49.558, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.29, 64 +2026-05-15T14:17:54+08:00 +2026/05/15 14:17:54.581, NVIDIA GeForce RTX 5090, 37, 21, 9607, 32607, 327.49, 59 +2026-05-15T14:17:59+08:00 +2026/05/15 14:17:59.602, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.95, 64 +2026-05-15T14:18:04+08:00 +2026/05/15 14:18:04.625, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 361.65, 64 +2026-05-15T14:18:09+08:00 +2026/05/15 14:18:09.649, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.03, 63 +2026-05-15T14:18:14+08:00 +2026/05/15 14:18:14.673, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.75, 63 +2026-05-15T14:18:19+08:00 +2026/05/15 14:18:19.695, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.74, 65 +2026-05-15T14:18:24+08:00 +2026/05/15 14:18:24.717, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.09, 64 +2026-05-15T14:18:29+08:00 +2026/05/15 14:18:29.741, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.73, 63 +2026-05-15T14:18:34+08:00 +2026/05/15 14:18:34.764, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.08, 63 +2026-05-15T14:18:39+08:00 +2026/05/15 14:18:39.787, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.47, 62 +2026-05-15T14:18:44+08:00 +2026/05/15 14:18:44.809, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.15, 63 +2026-05-15T14:18:49+08:00 +2026/05/15 14:18:49.833, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.23, 63 +2026-05-15T14:18:54+08:00 +2026/05/15 14:18:54.859, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.78, 63 +2026-05-15T14:18:59+08:00 +2026/05/15 14:18:59.883, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.48, 64 +2026-05-15T14:19:04+08:00 +2026/05/15 14:19:04.912, NVIDIA GeForce RTX 5090, 4, 4, 9607, 32607, 208.18, 57 +2026-05-15T14:19:09+08:00 +2026/05/15 14:19:09.950, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.98, 63 +2026-05-15T14:19:14+08:00 +2026/05/15 14:19:15.002, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.58, 63 +2026-05-15T14:19:20+08:00 +2026/05/15 14:19:20.027, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.92, 62 +2026-05-15T14:19:25+08:00 +2026/05/15 14:19:25.080, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.56, 63 +2026-05-15T14:19:30+08:00 +2026/05/15 14:19:30.105, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.37, 63 +2026-05-15T14:19:35+08:00 +2026/05/15 14:19:35.147, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.63, 63 +2026-05-15T14:19:40+08:00 +2026/05/15 14:19:40.170, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.03, 64 +2026-05-15T14:19:45+08:00 +2026/05/15 14:19:45.195, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.25, 64 +2026-05-15T14:19:50+08:00 +2026/05/15 14:19:50.218, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.31, 64 +2026-05-15T14:19:55+08:00 +2026/05/15 14:19:55.241, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 269.75, 62 +2026-05-15T14:20:00+08:00 +2026/05/15 14:20:00.265, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.42, 63 +2026-05-15T14:20:05+08:00 +2026/05/15 14:20:05.289, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.10, 64 +2026-05-15T14:20:10+08:00 +2026/05/15 14:20:10.313, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.08, 63 +2026-05-15T14:20:15+08:00 +2026/05/15 14:20:15.337, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.39, 63 +2026-05-15T14:20:20+08:00 +2026/05/15 14:20:20.365, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.12, 62 +2026-05-15T14:20:25+08:00 +2026/05/15 14:20:25.389, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.26, 64 +2026-05-15T14:20:30+08:00 +2026/05/15 14:20:30.417, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.12, 63 +2026-05-15T14:20:35+08:00 +2026/05/15 14:20:35.443, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.82, 64 +2026-05-15T14:20:40+08:00 +2026/05/15 14:20:40.466, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.75, 64 +2026-05-15T14:20:45+08:00 +2026/05/15 14:20:45.491, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.75, 63 +2026-05-15T14:20:50+08:00 +2026/05/15 14:20:50.514, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.81, 63 +2026-05-15T14:20:55+08:00 +2026/05/15 14:20:55.541, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.87, 64 +2026-05-15T14:21:00+08:00 +2026/05/15 14:21:00.565, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 350.62, 63 +2026-05-15T14:21:05+08:00 +2026/05/15 14:21:05.589, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.99, 64 +2026-05-15T14:21:10+08:00 +2026/05/15 14:21:10.651, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.42, 64 +2026-05-15T14:21:15+08:00 +2026/05/15 14:21:15.706, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.10, 64 +2026-05-15T14:21:20+08:00 +2026/05/15 14:21:20.731, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.64, 64 +2026-05-15T14:21:25+08:00 +2026/05/15 14:21:25.756, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.71, 64 +2026-05-15T14:21:30+08:00 +2026/05/15 14:21:30.779, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.17, 64 +2026-05-15T14:21:35+08:00 +2026/05/15 14:21:35.806, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 288.40, 63 +2026-05-15T14:21:40+08:00 +2026/05/15 14:21:40.876, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.20, 64 +2026-05-15T14:21:45+08:00 +2026/05/15 14:21:45.900, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.14, 64 +2026-05-15T14:21:50+08:00 +2026/05/15 14:21:50.943, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.29, 63 +2026-05-15T14:21:55+08:00 +2026/05/15 14:21:56.002, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.73, 64 +2026-05-15T14:22:01+08:00 +2026/05/15 14:22:01.031, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.74, 63 +2026-05-15T14:22:06+08:00 +2026/05/15 14:22:06.075, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.34, 64 +2026-05-15T14:22:11+08:00 +2026/05/15 14:22:11.101, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.58, 63 +2026-05-15T14:22:16+08:00 +2026/05/15 14:22:16.125, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 325.06, 64 +2026-05-15T14:22:21+08:00 +2026/05/15 14:22:21.151, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.55, 64 +2026-05-15T14:22:26+08:00 +2026/05/15 14:22:26.174, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.13, 64 +2026-05-15T14:22:31+08:00 +2026/05/15 14:22:31.199, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.19, 64 +2026-05-15T14:22:36+08:00 +2026/05/15 14:22:36.230, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.96, 63 +2026-05-15T14:22:41+08:00 +2026/05/15 14:22:41.253, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.45, 63 +2026-05-15T14:22:46+08:00 +2026/05/15 14:22:46.279, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.22, 64 +2026-05-15T14:22:51+08:00 +2026/05/15 14:22:51.304, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.01, 64 +2026-05-15T14:22:56+08:00 +2026/05/15 14:22:56.331, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 363.02, 64 +2026-05-15T14:23:01+08:00 +2026/05/15 14:23:01.355, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 363.28, 64 +2026-05-15T14:23:06+08:00 +2026/05/15 14:23:06.379, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.90, 64 +2026-05-15T14:23:11+08:00 +2026/05/15 14:23:11.404, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.93, 63 +2026-05-15T14:23:16+08:00 +2026/05/15 14:23:16.427, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.15, 64 +2026-05-15T14:23:21+08:00 +2026/05/15 14:23:21.452, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.39, 64 +2026-05-15T14:23:26+08:00 +2026/05/15 14:23:26.474, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.34, 64 +2026-05-15T14:23:31+08:00 +2026/05/15 14:23:31.497, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.04, 65 +2026-05-15T14:23:36+08:00 +2026/05/15 14:23:36.522, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.83, 64 +2026-05-15T14:23:41+08:00 +2026/05/15 14:23:41.547, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.98, 64 +2026-05-15T14:23:46+08:00 +2026/05/15 14:23:46.572, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.22, 64 +2026-05-15T14:23:51+08:00 +2026/05/15 14:23:51.595, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.03, 63 +2026-05-15T14:23:56+08:00 +2026/05/15 14:23:56.619, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.81, 63 +2026-05-15T14:24:01+08:00 +2026/05/15 14:24:01.644, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.50, 64 +2026-05-15T14:24:06+08:00 +2026/05/15 14:24:06.671, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 280.21, 58 +2026-05-15T14:24:11+08:00 +2026/05/15 14:24:11.694, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.85, 64 +2026-05-15T14:24:16+08:00 +2026/05/15 14:24:16.717, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.35, 63 +2026-05-15T14:24:21+08:00 +2026/05/15 14:24:21.745, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.05, 64 +2026-05-15T14:24:26+08:00 +2026/05/15 14:24:26.769, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.03, 64 +2026-05-15T14:24:31+08:00 +2026/05/15 14:24:31.792, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.35, 64 +2026-05-15T14:24:36+08:00 +2026/05/15 14:24:36.814, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.40, 63 +2026-05-15T14:24:41+08:00 +2026/05/15 14:24:41.838, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.61, 64 +2026-05-15T14:24:46+08:00 +2026/05/15 14:24:46.861, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.10, 64 +2026-05-15T14:24:51+08:00 +2026/05/15 14:24:51.890, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.22, 63 +2026-05-15T14:24:56+08:00 +2026/05/15 14:24:56.914, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.39, 64 +2026-05-15T14:25:01+08:00 +2026/05/15 14:25:01.937, NVIDIA GeForce RTX 5090, 54, 27, 9607, 32607, 353.55, 63 +2026-05-15T14:25:06+08:00 +2026/05/15 14:25:06.961, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.78, 64 +2026-05-15T14:25:11+08:00 +2026/05/15 14:25:11.986, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.75, 64 +2026-05-15T14:25:16+08:00 +2026/05/15 14:25:17.011, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.83, 64 +2026-05-15T14:25:22+08:00 +2026/05/15 14:25:22.035, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 262.69, 60 +2026-05-15T14:25:27+08:00 +2026/05/15 14:25:27.058, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.09, 64 +2026-05-15T14:25:32+08:00 +2026/05/15 14:25:32.084, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.32, 64 +2026-05-15T14:25:37+08:00 +2026/05/15 14:25:37.108, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.03, 63 +2026-05-15T14:25:42+08:00 +2026/05/15 14:25:42.132, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.45, 64 +2026-05-15T14:25:47+08:00 +2026/05/15 14:25:47.155, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.14, 65 +2026-05-15T14:25:52+08:00 +2026/05/15 14:25:52.179, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 353.31, 63 +2026-05-15T14:25:57+08:00 +2026/05/15 14:25:57.202, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.12, 64 +2026-05-15T14:26:02+08:00 +2026/05/15 14:26:02.225, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.49, 63 +2026-05-15T14:26:07+08:00 +2026/05/15 14:26:07.248, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.66, 64 +2026-05-15T14:26:12+08:00 +2026/05/15 14:26:12.273, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.83, 63 +2026-05-15T14:26:17+08:00 +2026/05/15 14:26:17.297, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.46, 64 +2026-05-15T14:26:22+08:00 +2026/05/15 14:26:22.325, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.49, 63 +2026-05-15T14:26:27+08:00 +2026/05/15 14:26:27.392, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.91, 64 +2026-05-15T14:26:32+08:00 +2026/05/15 14:26:32.429, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 362.48, 64 +2026-05-15T14:26:37+08:00 +2026/05/15 14:26:37.482, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 254.08, 63 +2026-05-15T14:26:42+08:00 +2026/05/15 14:26:42.504, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.38, 64 +2026-05-15T14:26:47+08:00 +2026/05/15 14:26:47.564, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.45, 64 +2026-05-15T14:26:52+08:00 +2026/05/15 14:26:52.590, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.32, 64 +2026-05-15T14:26:57+08:00 +2026/05/15 14:26:57.646, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.73, 63 +2026-05-15T14:27:02+08:00 +2026/05/15 14:27:02.670, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 362.88, 64 +2026-05-15T14:27:07+08:00 +2026/05/15 14:27:07.726, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.70, 64 +2026-05-15T14:27:12+08:00 +2026/05/15 14:27:12.749, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.21, 64 +2026-05-15T14:27:17+08:00 +2026/05/15 14:27:17.792, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.86, 65 +2026-05-15T14:27:22+08:00 +2026/05/15 14:27:22.814, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.40, 63 +2026-05-15T14:27:27+08:00 +2026/05/15 14:27:27.839, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.98, 63 +2026-05-15T14:27:32+08:00 +2026/05/15 14:27:32.865, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.20, 63 +2026-05-15T14:27:37+08:00 +2026/05/15 14:27:37.890, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 194.92, 63 +2026-05-15T14:27:42+08:00 +2026/05/15 14:27:42.923, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 362.19, 63 +2026-05-15T14:27:47+08:00 +2026/05/15 14:27:47.949, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.61, 63 +2026-05-15T14:27:52+08:00 +2026/05/15 14:27:52.991, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 357.73, 63 +2026-05-15T14:27:57+08:00 +2026/05/15 14:27:58.013, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.76, 64 +2026-05-15T14:28:03+08:00 +2026/05/15 14:28:03.055, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.83, 63 +2026-05-15T14:28:08+08:00 +2026/05/15 14:28:08.106, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.42, 63 +2026-05-15T14:28:13+08:00 +2026/05/15 14:28:13.133, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.44, 62 +2026-05-15T14:28:18+08:00 +2026/05/15 14:28:18.173, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 359.80, 64 +2026-05-15T14:28:23+08:00 +2026/05/15 14:28:23.197, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.55, 64 +2026-05-15T14:28:28+08:00 +2026/05/15 14:28:28.221, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.70, 63 +2026-05-15T14:28:33+08:00 +2026/05/15 14:28:33.245, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 280.39, 57 +2026-05-15T14:28:38+08:00 +2026/05/15 14:28:38.269, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.35, 64 +2026-05-15T14:28:43+08:00 +2026/05/15 14:28:43.294, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.14, 64 +2026-05-15T14:28:48+08:00 +2026/05/15 14:28:48.319, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.20, 63 +2026-05-15T14:28:53+08:00 +2026/05/15 14:28:53.346, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.26, 64 +2026-05-15T14:28:58+08:00 +2026/05/15 14:28:58.369, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.91, 64 +2026-05-15T14:29:03+08:00 +2026/05/15 14:29:03.394, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.89, 64 +2026-05-15T14:29:08+08:00 +2026/05/15 14:29:08.420, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.63, 64 +2026-05-15T14:29:13+08:00 +2026/05/15 14:29:13.444, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.55, 62 +2026-05-15T14:29:18+08:00 +2026/05/15 14:29:18.468, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.47, 63 +2026-05-15T14:29:23+08:00 +2026/05/15 14:29:23.491, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.60, 63 +2026-05-15T14:29:28+08:00 +2026/05/15 14:29:28.523, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.87, 63 +2026-05-15T14:29:33+08:00 +2026/05/15 14:29:33.548, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.56, 63 +2026-05-15T14:29:38+08:00 +2026/05/15 14:29:38.573, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.45, 63 +2026-05-15T14:29:43+08:00 +2026/05/15 14:29:43.597, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.68, 64 +2026-05-15T14:29:48+08:00 +2026/05/15 14:29:48.621, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 258.53, 62 +2026-05-15T14:29:53+08:00 +2026/05/15 14:29:53.648, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.57, 63 +2026-05-15T14:29:58+08:00 +2026/05/15 14:29:58.674, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.27, 64 +2026-05-15T14:30:03+08:00 +2026/05/15 14:30:03.699, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.32, 63 +2026-05-15T14:30:08+08:00 +2026/05/15 14:30:08.724, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.16, 63 +2026-05-15T14:30:13+08:00 +2026/05/15 14:30:13.749, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.67, 63 +2026-05-15T14:30:18+08:00 +2026/05/15 14:30:18.773, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.56, 63 +2026-05-15T14:30:23+08:00 +2026/05/15 14:30:23.797, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.15, 63 +2026-05-15T14:30:28+08:00 +2026/05/15 14:30:28.820, NVIDIA GeForce RTX 5090, 1, 0, 9607, 32607, 287.06, 57 +2026-05-15T14:30:33+08:00 +2026/05/15 14:30:33.844, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.36, 64 +2026-05-15T14:30:38+08:00 +2026/05/15 14:30:38.868, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.18, 63 +2026-05-15T14:30:43+08:00 +2026/05/15 14:30:43.892, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 359.96, 63 +2026-05-15T14:30:48+08:00 +2026/05/15 14:30:48.916, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.30, 63 +2026-05-15T14:30:53+08:00 +2026/05/15 14:30:53.939, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.96, 64 +2026-05-15T14:30:58+08:00 +2026/05/15 14:30:58.962, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.33, 63 +2026-05-15T14:31:03+08:00 +2026/05/15 14:31:03.989, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.99, 63 +2026-05-15T14:31:08+08:00 +2026/05/15 14:31:09.012, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.99, 64 +2026-05-15T14:31:14+08:00 +2026/05/15 14:31:14.037, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.98, 65 +2026-05-15T14:31:19+08:00 +2026/05/15 14:31:19.061, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 355.37, 63 +2026-05-15T14:31:24+08:00 +2026/05/15 14:31:24.086, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.34, 64 +2026-05-15T14:31:29+08:00 +2026/05/15 14:31:29.115, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.42, 64 +2026-05-15T14:31:34+08:00 +2026/05/15 14:31:34.141, NVIDIA GeForce RTX 5090, 20, 14, 9607, 32607, 234.74, 62 +2026-05-15T14:31:39+08:00 +2026/05/15 14:31:39.164, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.55, 63 +2026-05-15T14:31:44+08:00 +2026/05/15 14:31:44.191, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.54, 63 +2026-05-15T14:31:49+08:00 +2026/05/15 14:31:49.214, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.58, 63 +2026-05-15T14:31:54+08:00 +2026/05/15 14:31:54.238, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.76, 64 +2026-05-15T14:31:59+08:00 +2026/05/15 14:31:59.262, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.76, 64 +2026-05-15T14:32:04+08:00 +2026/05/15 14:32:04.318, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.68, 64 +2026-05-15T14:32:09+08:00 +2026/05/15 14:32:09.351, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.19, 62 +2026-05-15T14:32:14+08:00 +2026/05/15 14:32:14.384, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.81, 62 +2026-05-15T14:32:19+08:00 +2026/05/15 14:32:19.407, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.69, 64 +2026-05-15T14:32:24+08:00 +2026/05/15 14:32:24.432, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.30, 63 +2026-05-15T14:32:29+08:00 +2026/05/15 14:32:29.458, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 217.76, 56 +2026-05-15T14:32:34+08:00 +2026/05/15 14:32:34.484, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.50, 63 +2026-05-15T14:32:39+08:00 +2026/05/15 14:32:39.508, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.47, 63 +2026-05-15T14:32:44+08:00 +2026/05/15 14:32:44.538, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.97, 63 +2026-05-15T14:32:49+08:00 +2026/05/15 14:32:49.562, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.21, 62 +2026-05-15T14:32:54+08:00 +2026/05/15 14:32:54.585, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.24, 63 +2026-05-15T14:32:59+08:00 +2026/05/15 14:32:59.608, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.52, 63 +2026-05-15T14:33:04+08:00 +2026/05/15 14:33:04.632, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.43, 64 +2026-05-15T14:33:09+08:00 +2026/05/15 14:33:09.656, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.30, 64 +2026-05-15T14:33:14+08:00 +2026/05/15 14:33:14.680, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.83, 63 +2026-05-15T14:33:19+08:00 +2026/05/15 14:33:19.709, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.16, 64 +2026-05-15T14:33:24+08:00 +2026/05/15 14:33:24.737, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.99, 65 +2026-05-15T14:33:29+08:00 +2026/05/15 14:33:29.762, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.20, 63 +2026-05-15T14:33:34+08:00 +2026/05/15 14:33:34.787, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.43, 64 +2026-05-15T14:33:39+08:00 +2026/05/15 14:33:39.811, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.32, 64 +2026-05-15T14:33:44+08:00 +2026/05/15 14:33:44.834, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.15, 64 +2026-05-15T14:33:49+08:00 +2026/05/15 14:33:49.859, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.28, 64 +2026-05-15T14:33:54+08:00 +2026/05/15 14:33:54.882, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.00, 64 +2026-05-15T14:33:59+08:00 +2026/05/15 14:33:59.905, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.17, 64 +2026-05-15T14:34:04+08:00 +2026/05/15 14:34:04.934, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.75, 64 +2026-05-15T14:34:09+08:00 +2026/05/15 14:34:09.957, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.08, 63 +2026-05-15T14:34:14+08:00 +2026/05/15 14:34:14.980, NVIDIA GeForce RTX 5090, 3, 1, 9607, 32607, 252.30, 62 +2026-05-15T14:34:19+08:00 +2026/05/15 14:34:20.007, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.10, 63 +2026-05-15T14:34:25+08:00 +2026/05/15 14:34:25.033, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 361.11, 63 +2026-05-15T14:34:30+08:00 +2026/05/15 14:34:30.056, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.36, 63 +2026-05-15T14:34:35+08:00 +2026/05/15 14:34:35.080, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.67, 63 +2026-05-15T14:34:40+08:00 +2026/05/15 14:34:40.104, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.93, 64 +2026-05-15T14:34:45+08:00 +2026/05/15 14:34:45.132, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.68, 63 +2026-05-15T14:34:50+08:00 +2026/05/15 14:34:50.157, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.54, 64 +2026-05-15T14:34:55+08:00 +2026/05/15 14:34:55.180, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.09, 63 +2026-05-15T14:35:00+08:00 +2026/05/15 14:35:00.205, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.64, 64 +2026-05-15T14:35:05+08:00 +2026/05/15 14:35:05.231, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.67, 64 +2026-05-15T14:35:10+08:00 +2026/05/15 14:35:10.255, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.48, 64 +2026-05-15T14:35:15+08:00 +2026/05/15 14:35:15.279, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.24, 63 +2026-05-15T14:35:20+08:00 +2026/05/15 14:35:20.302, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.52, 63 +2026-05-15T14:35:25+08:00 +2026/05/15 14:35:25.326, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.21, 62 +2026-05-15T14:35:30+08:00 +2026/05/15 14:35:30.353, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 360.50, 64 +2026-05-15T14:35:35+08:00 +2026/05/15 14:35:35.378, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.05, 64 +2026-05-15T14:35:40+08:00 +2026/05/15 14:35:40.402, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.72, 64 +2026-05-15T14:35:45+08:00 +2026/05/15 14:35:45.425, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.48, 64 +2026-05-15T14:35:50+08:00 +2026/05/15 14:35:50.448, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.77, 62 +2026-05-15T14:35:55+08:00 +2026/05/15 14:35:55.471, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.26, 64 +2026-05-15T14:36:00+08:00 +2026/05/15 14:36:00.495, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.03, 64 +2026-05-15T14:36:05+08:00 +2026/05/15 14:36:05.524, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.45, 64 +2026-05-15T14:36:10+08:00 +2026/05/15 14:36:10.549, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.23, 63 +2026-05-15T14:36:15+08:00 +2026/05/15 14:36:15.571, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.23, 64 +2026-05-15T14:36:20+08:00 +2026/05/15 14:36:20.595, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.79, 64 +2026-05-15T14:36:25+08:00 +2026/05/15 14:36:25.618, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 362.32, 63 +2026-05-15T14:36:30+08:00 +2026/05/15 14:36:30.641, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.90, 64 +2026-05-15T14:36:35+08:00 +2026/05/15 14:36:35.666, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 361.12, 63 +2026-05-15T14:36:40+08:00 +2026/05/15 14:36:40.693, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.95, 63 +2026-05-15T14:36:45+08:00 +2026/05/15 14:36:45.717, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 362.33, 64 +2026-05-15T14:36:50+08:00 +2026/05/15 14:36:50.743, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.78, 63 +2026-05-15T14:36:55+08:00 +2026/05/15 14:36:55.767, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.49, 63 +2026-05-15T14:37:00+08:00 +2026/05/15 14:37:00.791, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.82, 64 +2026-05-15T14:37:05+08:00 +2026/05/15 14:37:05.818, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.79, 64 +2026-05-15T14:37:10+08:00 +2026/05/15 14:37:10.841, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.92, 64 +2026-05-15T14:37:15+08:00 +2026/05/15 14:37:15.864, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.62, 63 +2026-05-15T14:37:20+08:00 +2026/05/15 14:37:20.887, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.27, 64 +2026-05-15T14:37:25+08:00 +2026/05/15 14:37:25.911, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.84, 64 +2026-05-15T14:37:30+08:00 +2026/05/15 14:37:30.935, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 252.21, 63 +2026-05-15T14:37:35+08:00 +2026/05/15 14:37:35.958, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.73, 64 +2026-05-15T14:37:40+08:00 +2026/05/15 14:37:40.983, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.98, 64 +2026-05-15T14:37:45+08:00 +2026/05/15 14:37:46.007, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.13, 64 +2026-05-15T14:37:51+08:00 +2026/05/15 14:37:51.031, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.56, 63 +2026-05-15T14:37:56+08:00 +2026/05/15 14:37:56.056, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.05, 63 +2026-05-15T14:38:01+08:00 +2026/05/15 14:38:01.080, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 361.62, 63 +2026-05-15T14:38:06+08:00 +2026/05/15 14:38:06.103, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.62, 63 +2026-05-15T14:38:11+08:00 +2026/05/15 14:38:11.127, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.54, 63 +2026-05-15T14:38:16+08:00 +2026/05/15 14:38:16.153, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.56, 63 +2026-05-15T14:38:21+08:00 +2026/05/15 14:38:21.178, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.03, 63 +2026-05-15T14:38:26+08:00 +2026/05/15 14:38:26.201, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.17, 64 +2026-05-15T14:38:31+08:00 +2026/05/15 14:38:31.224, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.23, 64 +2026-05-15T14:38:36+08:00 +2026/05/15 14:38:36.248, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.27, 64 +2026-05-15T14:38:41+08:00 +2026/05/15 14:38:41.272, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.58, 64 +2026-05-15T14:38:46+08:00 +2026/05/15 14:38:46.297, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.99, 63 +2026-05-15T14:38:51+08:00 +2026/05/15 14:38:51.320, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.09, 63 +2026-05-15T14:38:56+08:00 +2026/05/15 14:38:56.344, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.88, 64 +2026-05-15T14:39:01+08:00 +2026/05/15 14:39:01.368, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.25, 64 +2026-05-15T14:39:06+08:00 +2026/05/15 14:39:06.396, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.45, 63 +2026-05-15T14:39:11+08:00 +2026/05/15 14:39:11.420, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.77, 64 +2026-05-15T14:39:16+08:00 +2026/05/15 14:39:16.443, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.96, 64 +2026-05-15T14:39:21+08:00 +2026/05/15 14:39:21.467, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.17, 64 +2026-05-15T14:39:26+08:00 +2026/05/15 14:39:26.490, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.85, 63 +2026-05-15T14:39:31+08:00 +2026/05/15 14:39:31.514, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.72, 64 +2026-05-15T14:39:36+08:00 +2026/05/15 14:39:36.542, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.20, 64 +2026-05-15T14:39:41+08:00 +2026/05/15 14:39:41.565, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.02, 64 +2026-05-15T14:39:46+08:00 +2026/05/15 14:39:46.593, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.17, 64 +2026-05-15T14:39:51+08:00 +2026/05/15 14:39:51.617, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.22, 63 +2026-05-15T14:39:56+08:00 +2026/05/15 14:39:56.642, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.73, 63 +2026-05-15T14:40:01+08:00 +2026/05/15 14:40:01.666, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.69, 64 +2026-05-15T14:40:06+08:00 +2026/05/15 14:40:06.689, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.35, 64 +2026-05-15T14:40:11+08:00 +2026/05/15 14:40:11.713, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.45, 63 +2026-05-15T14:40:16+08:00 +2026/05/15 14:40:16.739, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.29, 64 +2026-05-15T14:40:21+08:00 +2026/05/15 14:40:21.763, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.70, 64 +2026-05-15T14:40:26+08:00 +2026/05/15 14:40:26.787, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.68, 64 +2026-05-15T14:40:31+08:00 +2026/05/15 14:40:31.811, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.24, 63 +2026-05-15T14:40:36+08:00 +2026/05/15 14:40:36.834, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.16, 64 +2026-05-15T14:40:41+08:00 +2026/05/15 14:40:41.865, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 207.32, 63 +2026-05-15T14:40:46+08:00 +2026/05/15 14:40:46.889, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.11, 62 +2026-05-15T14:40:51+08:00 +2026/05/15 14:40:51.913, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.96, 63 +2026-05-15T14:40:56+08:00 +2026/05/15 14:40:56.945, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.71, 64 +2026-05-15T14:41:01+08:00 +2026/05/15 14:41:01.970, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.32, 64 +2026-05-15T14:41:06+08:00 +2026/05/15 14:41:06.995, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.08, 64 +2026-05-15T14:41:12+08:00 +2026/05/15 14:41:12.023, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.38, 63 +2026-05-15T14:41:17+08:00 +2026/05/15 14:41:17.046, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.56, 64 +2026-05-15T14:41:22+08:00 +2026/05/15 14:41:22.074, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.56, 63 +2026-05-15T14:41:27+08:00 +2026/05/15 14:41:27.103, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.61, 63 +2026-05-15T14:41:32+08:00 +2026/05/15 14:41:32.126, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.09, 63 +2026-05-15T14:41:37+08:00 +2026/05/15 14:41:37.152, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 355.26, 64 +2026-05-15T14:41:42+08:00 +2026/05/15 14:41:42.176, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 353.68, 63 +2026-05-15T14:41:47+08:00 +2026/05/15 14:41:47.200, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 189.92, 63 +2026-05-15T14:41:52+08:00 +2026/05/15 14:41:52.224, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.61, 64 +2026-05-15T14:41:57+08:00 +2026/05/15 14:41:57.248, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.58, 63 +2026-05-15T14:42:02+08:00 +2026/05/15 14:42:02.271, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.47, 63 +2026-05-15T14:42:07+08:00 +2026/05/15 14:42:07.297, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.31, 64 +2026-05-15T14:42:12+08:00 +2026/05/15 14:42:12.339, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.30, 64 +2026-05-15T14:42:17+08:00 +2026/05/15 14:42:17.362, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.61, 63 +2026-05-15T14:42:22+08:00 +2026/05/15 14:42:22.389, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.94, 63 +2026-05-15T14:42:27+08:00 +2026/05/15 14:42:27.415, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.58, 64 +2026-05-15T14:42:32+08:00 +2026/05/15 14:42:32.439, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.11, 64 +2026-05-15T14:42:37+08:00 +2026/05/15 14:42:37.503, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.14, 63 +2026-05-15T14:42:42+08:00 +2026/05/15 14:42:42.526, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.54, 63 +2026-05-15T14:42:47+08:00 +2026/05/15 14:42:47.569, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.86, 63 +2026-05-15T14:42:52+08:00 +2026/05/15 14:42:52.593, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.99, 64 +2026-05-15T14:42:57+08:00 +2026/05/15 14:42:57.622, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.37, 64 +2026-05-15T14:43:02+08:00 +2026/05/15 14:43:02.646, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.10, 63 +2026-05-15T14:43:07+08:00 +2026/05/15 14:43:07.669, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.59, 64 +2026-05-15T14:43:12+08:00 +2026/05/15 14:43:12.692, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.20, 63 +2026-05-15T14:43:17+08:00 +2026/05/15 14:43:17.718, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.18, 63 +2026-05-15T14:43:22+08:00 +2026/05/15 14:43:22.741, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.34, 62 +2026-05-15T14:43:27+08:00 +2026/05/15 14:43:27.765, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.83, 64 +2026-05-15T14:43:32+08:00 +2026/05/15 14:43:32.789, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.24, 64 +2026-05-15T14:43:37+08:00 +2026/05/15 14:43:37.813, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.65, 64 +2026-05-15T14:43:42+08:00 +2026/05/15 14:43:42.836, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.60, 64 +2026-05-15T14:43:47+08:00 +2026/05/15 14:43:47.861, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.37, 64 +2026-05-15T14:43:52+08:00 +2026/05/15 14:43:52.885, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 362.32, 64 +2026-05-15T14:43:57+08:00 +2026/05/15 14:43:57.910, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.36, 63 +2026-05-15T14:44:02+08:00 +2026/05/15 14:44:02.933, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.99, 63 +2026-05-15T14:44:07+08:00 +2026/05/15 14:44:07.959, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.29, 64 +2026-05-15T14:44:12+08:00 +2026/05/15 14:44:12.982, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.78, 65 +2026-05-15T14:44:17+08:00 +2026/05/15 14:44:18.010, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.56, 64 +2026-05-15T14:44:23+08:00 +2026/05/15 14:44:23.035, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.38, 63 +2026-05-15T14:44:28+08:00 +2026/05/15 14:44:28.063, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.38, 63 +2026-05-15T14:44:33+08:00 +2026/05/15 14:44:33.088, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.99, 64 +2026-05-15T14:44:38+08:00 +2026/05/15 14:44:38.112, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.55, 64 +2026-05-15T14:44:43+08:00 +2026/05/15 14:44:43.137, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.90, 64 +2026-05-15T14:44:48+08:00 +2026/05/15 14:44:48.160, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.49, 62 +2026-05-15T14:44:53+08:00 +2026/05/15 14:44:53.184, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 279.26, 64 +2026-05-15T14:44:58+08:00 +2026/05/15 14:44:58.209, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.88, 64 +2026-05-15T14:45:03+08:00 +2026/05/15 14:45:03.234, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.55, 64 +2026-05-15T14:45:08+08:00 +2026/05/15 14:45:08.258, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.23, 64 +2026-05-15T14:45:13+08:00 +2026/05/15 14:45:13.282, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.01, 64 +2026-05-15T14:45:18+08:00 +2026/05/15 14:45:18.307, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.10, 64 +2026-05-15T14:45:23+08:00 +2026/05/15 14:45:23.332, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.44, 64 +2026-05-15T14:45:28+08:00 +2026/05/15 14:45:28.356, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.67, 63 +2026-05-15T14:45:33+08:00 +2026/05/15 14:45:33.379, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.87, 64 +2026-05-15T14:45:38+08:00 +2026/05/15 14:45:38.403, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 362.37, 64 +2026-05-15T14:45:43+08:00 +2026/05/15 14:45:43.427, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.37, 64 +2026-05-15T14:45:48+08:00 +2026/05/15 14:45:48.451, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.76, 63 +2026-05-15T14:45:53+08:00 +2026/05/15 14:45:53.475, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.72, 64 +2026-05-15T14:45:58+08:00 +2026/05/15 14:45:58.501, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.27, 64 +2026-05-15T14:46:03+08:00 +2026/05/15 14:46:03.530, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.57, 64 +2026-05-15T14:46:08+08:00 +2026/05/15 14:46:08.553, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.82, 64 +2026-05-15T14:46:13+08:00 +2026/05/15 14:46:13.577, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.97, 64 +2026-05-15T14:46:18+08:00 +2026/05/15 14:46:18.602, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.62, 63 +2026-05-15T14:46:23+08:00 +2026/05/15 14:46:23.626, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.20, 63 +2026-05-15T14:46:28+08:00 +2026/05/15 14:46:28.653, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.19, 64 +2026-05-15T14:46:33+08:00 +2026/05/15 14:46:33.678, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.96, 64 +2026-05-15T14:46:38+08:00 +2026/05/15 14:46:38.702, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.24, 64 +2026-05-15T14:46:43+08:00 +2026/05/15 14:46:43.726, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.95, 64 +2026-05-15T14:46:48+08:00 +2026/05/15 14:46:48.750, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 304.05, 58 +2026-05-15T14:46:53+08:00 +2026/05/15 14:46:53.774, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.89, 64 +2026-05-15T14:46:58+08:00 +2026/05/15 14:46:58.829, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 362.39, 64 +2026-05-15T14:47:03+08:00 +2026/05/15 14:47:03.854, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.01, 64 +2026-05-15T14:47:08+08:00 +2026/05/15 14:47:08.894, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.43, 64 +2026-05-15T14:47:13+08:00 +2026/05/15 14:47:13.962, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.68, 64 +2026-05-15T14:47:18+08:00 +2026/05/15 14:47:18.985, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.20, 64 +2026-05-15T14:47:23+08:00 +2026/05/15 14:47:24.009, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.45, 64 +2026-05-15T14:47:29+08:00 +2026/05/15 14:47:29.033, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.33, 64 +2026-05-15T14:47:34+08:00 +2026/05/15 14:47:34.056, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.48, 64 +2026-05-15T14:47:39+08:00 +2026/05/15 14:47:39.081, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.02, 64 +2026-05-15T14:47:44+08:00 +2026/05/15 14:47:44.104, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.04, 64 +2026-05-15T14:47:49+08:00 +2026/05/15 14:47:49.129, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.45, 63 +2026-05-15T14:47:54+08:00 +2026/05/15 14:47:54.156, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.73, 64 +2026-05-15T14:47:59+08:00 +2026/05/15 14:47:59.183, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.16, 64 +2026-05-15T14:48:04+08:00 +2026/05/15 14:48:04.206, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.79, 64 +2026-05-15T14:48:09+08:00 +2026/05/15 14:48:09.230, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.91, 63 +2026-05-15T14:48:14+08:00 +2026/05/15 14:48:14.254, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.45, 64 +2026-05-15T14:48:19+08:00 +2026/05/15 14:48:19.279, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.39, 64 +2026-05-15T14:48:24+08:00 +2026/05/15 14:48:24.309, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.86, 64 +2026-05-15T14:48:29+08:00 +2026/05/15 14:48:29.334, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 362.33, 63 +2026-05-15T14:48:34+08:00 +2026/05/15 14:48:34.358, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.69, 64 +2026-05-15T14:48:39+08:00 +2026/05/15 14:48:39.382, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.38, 65 +2026-05-15T14:48:44+08:00 +2026/05/15 14:48:44.407, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.97, 64 +2026-05-15T14:48:49+08:00 +2026/05/15 14:48:49.433, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 362.76, 64 +2026-05-15T14:48:54+08:00 +2026/05/15 14:48:54.458, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.77, 63 +2026-05-15T14:48:59+08:00 +2026/05/15 14:48:59.484, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.89, 63 +2026-05-15T14:49:04+08:00 +2026/05/15 14:49:04.508, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.96, 63 +2026-05-15T14:49:09+08:00 +2026/05/15 14:49:09.532, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.98, 64 +2026-05-15T14:49:14+08:00 +2026/05/15 14:49:14.556, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.41, 64 +2026-05-15T14:49:19+08:00 +2026/05/15 14:49:19.582, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.90, 64 +2026-05-15T14:49:24+08:00 +2026/05/15 14:49:24.605, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 291.30, 58 +2026-05-15T14:49:29+08:00 +2026/05/15 14:49:29.629, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.90, 64 +2026-05-15T14:49:34+08:00 +2026/05/15 14:49:34.653, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.07, 65 +2026-05-15T14:49:39+08:00 +2026/05/15 14:49:39.693, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.83, 63 +2026-05-15T14:49:44+08:00 +2026/05/15 14:49:44.717, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.62, 64 +2026-05-15T14:49:49+08:00 +2026/05/15 14:49:49.758, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.04, 64 +2026-05-15T14:49:54+08:00 +2026/05/15 14:49:54.825, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.90, 64 +2026-05-15T14:49:59+08:00 +2026/05/15 14:49:59.850, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.18, 64 +2026-05-15T14:50:04+08:00 +2026/05/15 14:50:04.873, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.36, 64 +2026-05-15T14:50:09+08:00 +2026/05/15 14:50:09.935, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.33, 64 +2026-05-15T14:50:14+08:00 +2026/05/15 14:50:14.959, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.16, 63 +2026-05-15T14:50:19+08:00 +2026/05/15 14:50:20.013, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.48, 63 +2026-05-15T14:50:25+08:00 +2026/05/15 14:50:25.038, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.99, 63 +2026-05-15T14:50:30+08:00 +2026/05/15 14:50:30.093, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.66, 63 +2026-05-15T14:50:35+08:00 +2026/05/15 14:50:35.117, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.46, 64 +2026-05-15T14:50:40+08:00 +2026/05/15 14:50:40.172, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.08, 64 +2026-05-15T14:50:45+08:00 +2026/05/15 14:50:45.228, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.14, 64 +2026-05-15T14:50:50+08:00 +2026/05/15 14:50:50.253, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 362.33, 64 +2026-05-15T14:50:55+08:00 +2026/05/15 14:50:55.312, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 362.24, 64 +2026-05-15T14:51:00+08:00 +2026/05/15 14:51:00.347, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.47, 63 +2026-05-15T14:51:05+08:00 +2026/05/15 14:51:05.378, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.16, 64 +2026-05-15T14:51:10+08:00 +2026/05/15 14:51:10.403, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.46, 64 +2026-05-15T14:51:15+08:00 +2026/05/15 14:51:15.446, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.02, 63 +2026-05-15T14:51:20+08:00 +2026/05/15 14:51:20.491, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.81, 64 +2026-05-15T14:51:25+08:00 +2026/05/15 14:51:25.528, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 362.97, 64 +2026-05-15T14:51:30+08:00 +2026/05/15 14:51:30.571, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.34, 64 +2026-05-15T14:51:35+08:00 +2026/05/15 14:51:35.613, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.57, 64 +2026-05-15T14:51:40+08:00 +2026/05/15 14:51:40.643, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.00, 64 +2026-05-15T14:51:45+08:00 +2026/05/15 14:51:45.671, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.94, 63 +2026-05-15T14:51:50+08:00 +2026/05/15 14:51:50.696, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.88, 64 +2026-05-15T14:51:55+08:00 +2026/05/15 14:51:55.719, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.81, 64 +2026-05-15T14:52:00+08:00 +2026/05/15 14:52:00.743, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.16, 64 +2026-05-15T14:52:05+08:00 +2026/05/15 14:52:05.767, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.11, 65 +2026-05-15T14:52:10+08:00 +2026/05/15 14:52:10.792, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.20, 64 +2026-05-15T14:52:15+08:00 +2026/05/15 14:52:15.816, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.17, 64 +2026-05-15T14:52:20+08:00 +2026/05/15 14:52:20.843, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.70, 65 +2026-05-15T14:52:25+08:00 +2026/05/15 14:52:25.876, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.50, 63 +2026-05-15T14:52:30+08:00 +2026/05/15 14:52:30.900, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.85, 64 +2026-05-15T14:52:35+08:00 +2026/05/15 14:52:35.927, NVIDIA GeForce RTX 5090, 5, 2, 9607, 32607, 254.61, 64 +2026-05-15T14:52:40+08:00 +2026/05/15 14:52:40.951, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.32, 63 +2026-05-15T14:52:45+08:00 +2026/05/15 14:52:45.978, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.16, 64 +2026-05-15T14:52:50+08:00 +2026/05/15 14:52:51.003, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.30, 64 +2026-05-15T14:52:56+08:00 +2026/05/15 14:52:56.026, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.32, 64 +2026-05-15T14:53:01+08:00 +2026/05/15 14:53:01.050, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 362.31, 64 +2026-05-15T14:53:06+08:00 +2026/05/15 14:53:06.076, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.05, 63 +2026-05-15T14:53:11+08:00 +2026/05/15 14:53:11.100, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.14, 64 +2026-05-15T14:53:16+08:00 +2026/05/15 14:53:16.124, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 362.05, 64 +2026-05-15T14:53:21+08:00 +2026/05/15 14:53:21.148, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.44, 63 +2026-05-15T14:53:26+08:00 +2026/05/15 14:53:26.189, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.28, 63 +2026-05-15T14:53:31+08:00 +2026/05/15 14:53:31.213, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.49, 64 +2026-05-15T14:53:36+08:00 +2026/05/15 14:53:36.268, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.57, 64 +2026-05-15T14:53:41+08:00 +2026/05/15 14:53:41.293, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.57, 64 +2026-05-15T14:53:46+08:00 +2026/05/15 14:53:46.316, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.05, 64 +2026-05-15T14:53:51+08:00 +2026/05/15 14:53:51.357, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 264.08, 57 +2026-05-15T14:53:56+08:00 +2026/05/15 14:53:56.400, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.18, 64 +2026-05-15T14:54:01+08:00 +2026/05/15 14:54:01.441, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.89, 64 +2026-05-15T14:54:06+08:00 +2026/05/15 14:54:06.466, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.11, 64 +2026-05-15T14:54:11+08:00 +2026/05/15 14:54:11.507, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.39, 63 +2026-05-15T14:54:16+08:00 +2026/05/15 14:54:16.531, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.69, 63 +2026-05-15T14:54:21+08:00 +2026/05/15 14:54:21.588, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.88, 64 +2026-05-15T14:54:26+08:00 +2026/05/15 14:54:26.612, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 361.08, 63 +2026-05-15T14:54:31+08:00 +2026/05/15 14:54:31.635, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.06, 64 +2026-05-15T14:54:36+08:00 +2026/05/15 14:54:36.659, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 363.79, 64 +2026-05-15T14:54:41+08:00 +2026/05/15 14:54:41.683, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 363.18, 65 +2026-05-15T14:54:46+08:00 +2026/05/15 14:54:46.706, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.12, 64 +2026-05-15T14:54:51+08:00 +2026/05/15 14:54:51.731, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.74, 62 +2026-05-15T14:54:56+08:00 +2026/05/15 14:54:56.761, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.53, 64 +2026-05-15T14:55:01+08:00 +2026/05/15 14:55:01.787, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.01, 64 +2026-05-15T14:55:06+08:00 +2026/05/15 14:55:06.814, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 361.86, 63 +2026-05-15T14:55:11+08:00 +2026/05/15 14:55:11.838, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.96, 64 +2026-05-15T14:55:16+08:00 +2026/05/15 14:55:16.880, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.65, 62 +2026-05-15T14:55:21+08:00 +2026/05/15 14:55:21.905, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.55, 64 +2026-05-15T14:55:26+08:00 +2026/05/15 14:55:26.949, NVIDIA GeForce RTX 5090, 75, 33, 9607, 32607, 250.07, 63 +2026-05-15T14:55:31+08:00 +2026/05/15 14:55:32.011, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.96, 62 +2026-05-15T14:55:37+08:00 +2026/05/15 14:55:37.036, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.52, 64 +2026-05-15T14:55:42+08:00 +2026/05/15 14:55:42.088, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.54, 64 +2026-05-15T14:55:47+08:00 +2026/05/15 14:55:47.112, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.39, 63 +2026-05-15T14:55:52+08:00 +2026/05/15 14:55:52.182, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.63, 64 +2026-05-15T14:55:57+08:00 +2026/05/15 14:55:57.207, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.86, 64 +2026-05-15T14:56:02+08:00 +2026/05/15 14:56:02.263, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.41, 64 +2026-05-15T14:56:07+08:00 +2026/05/15 14:56:07.287, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.50, 64 +2026-05-15T14:56:12+08:00 +2026/05/15 14:56:12.341, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.33, 64 +2026-05-15T14:56:17+08:00 +2026/05/15 14:56:17.367, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.67, 64 +2026-05-15T14:56:22+08:00 +2026/05/15 14:56:22.407, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.02, 64 +2026-05-15T14:56:27+08:00 +2026/05/15 14:56:27.449, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.01, 64 +2026-05-15T14:56:32+08:00 +2026/05/15 14:56:32.511, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.21, 62 +2026-05-15T14:56:37+08:00 +2026/05/15 14:56:37.536, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.82, 64 +2026-05-15T14:56:42+08:00 +2026/05/15 14:56:42.592, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.38, 63 +2026-05-15T14:56:47+08:00 +2026/05/15 14:56:47.616, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.09, 65 +2026-05-15T14:56:52+08:00 +2026/05/15 14:56:52.670, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.39, 64 +2026-05-15T14:56:57+08:00 +2026/05/15 14:56:57.696, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.53, 64 +2026-05-15T14:57:02+08:00 +2026/05/15 14:57:02.735, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 266.62, 57 +2026-05-15T14:57:07+08:00 +2026/05/15 14:57:07.776, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.02, 64 +2026-05-15T14:57:12+08:00 +2026/05/15 14:57:12.853, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.50, 64 +2026-05-15T14:57:17+08:00 +2026/05/15 14:57:17.876, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.71, 64 +2026-05-15T14:57:22+08:00 +2026/05/15 14:57:22.900, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.96, 64 +2026-05-15T14:57:27+08:00 +2026/05/15 14:57:27.926, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.66, 64 +2026-05-15T14:57:32+08:00 +2026/05/15 14:57:32.950, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.04, 64 +2026-05-15T14:57:37+08:00 +2026/05/15 14:57:37.974, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.89, 64 +2026-05-15T14:57:42+08:00 +2026/05/15 14:57:42.998, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.67, 63 +2026-05-15T14:57:48+08:00 +2026/05/15 14:57:48.021, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 360.82, 63 +2026-05-15T14:57:53+08:00 +2026/05/15 14:57:53.043, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.17, 64 +2026-05-15T14:57:58+08:00 +2026/05/15 14:57:58.067, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.79, 64 +2026-05-15T14:58:03+08:00 +2026/05/15 14:58:03.094, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.10, 63 +2026-05-15T14:58:08+08:00 +2026/05/15 14:58:08.119, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.66, 64 +2026-05-15T14:58:13+08:00 +2026/05/15 14:58:13.143, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.71, 64 +2026-05-15T14:58:18+08:00 +2026/05/15 14:58:18.169, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.37, 63 +2026-05-15T14:58:23+08:00 +2026/05/15 14:58:23.193, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.16, 63 +2026-05-15T14:58:28+08:00 +2026/05/15 14:58:28.216, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.21, 64 +2026-05-15T14:58:33+08:00 +2026/05/15 14:58:33.239, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.21, 63 +2026-05-15T14:58:38+08:00 +2026/05/15 14:58:38.270, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.75, 64 +2026-05-15T14:58:43+08:00 +2026/05/15 14:58:43.295, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.11, 64 +2026-05-15T14:58:48+08:00 +2026/05/15 14:58:48.319, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.24, 64 +2026-05-15T14:58:53+08:00 +2026/05/15 14:58:53.342, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 338.75, 60 +2026-05-15T14:58:58+08:00 +2026/05/15 14:58:58.368, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.05, 64 +2026-05-15T14:59:03+08:00 +2026/05/15 14:59:03.392, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.22, 64 +2026-05-15T14:59:08+08:00 +2026/05/15 14:59:08.418, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.43, 64 +2026-05-15T14:59:13+08:00 +2026/05/15 14:59:13.442, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.01, 64 +2026-05-15T14:59:18+08:00 +2026/05/15 14:59:18.466, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.05, 63 +2026-05-15T14:59:23+08:00 +2026/05/15 14:59:23.489, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.96, 64 +2026-05-15T14:59:28+08:00 +2026/05/15 14:59:28.513, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.65, 64 +2026-05-15T14:59:33+08:00 +2026/05/15 14:59:33.593, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.35, 64 +2026-05-15T14:59:38+08:00 +2026/05/15 14:59:38.618, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.86, 63 +2026-05-15T14:59:43+08:00 +2026/05/15 14:59:43.643, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.58, 64 +2026-05-15T14:59:48+08:00 +2026/05/15 14:59:48.698, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.98, 63 +2026-05-15T14:59:53+08:00 +2026/05/15 14:59:53.738, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.42, 64 +2026-05-15T14:59:58+08:00 +2026/05/15 14:59:58.761, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.32, 64 +2026-05-15T15:00:03+08:00 +2026/05/15 15:00:03.787, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 362.88, 64 +2026-05-15T15:00:08+08:00 +2026/05/15 15:00:08.840, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 362.67, 64 +2026-05-15T15:00:13+08:00 +2026/05/15 15:00:13.886, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.48, 64 +2026-05-15T15:00:18+08:00 +2026/05/15 15:00:18.910, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.14, 64 +2026-05-15T15:00:23+08:00 +2026/05/15 15:00:23.934, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.30, 64 +2026-05-15T15:00:28+08:00 +2026/05/15 15:00:28.959, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.53, 63 +2026-05-15T15:00:33+08:00 +2026/05/15 15:00:33.985, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.95, 63 +2026-05-15T15:00:38+08:00 +2026/05/15 15:00:39.010, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.36, 64 +2026-05-15T15:00:44+08:00 +2026/05/15 15:00:44.036, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.89, 64 +2026-05-15T15:00:49+08:00 +2026/05/15 15:00:49.060, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 319.44, 64 +2026-05-15T15:00:54+08:00 +2026/05/15 15:00:54.084, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.89, 64 +2026-05-15T15:00:59+08:00 +2026/05/15 15:00:59.108, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.93, 64 +2026-05-15T15:01:04+08:00 +2026/05/15 15:01:04.133, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.12, 63 +2026-05-15T15:01:09+08:00 +2026/05/15 15:01:09.155, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.42, 63 +2026-05-15T15:01:14+08:00 +2026/05/15 15:01:14.179, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.91, 64 +2026-05-15T15:01:19+08:00 +2026/05/15 15:01:19.205, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.30, 64 +2026-05-15T15:01:24+08:00 +2026/05/15 15:01:24.231, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 325.22, 59 +2026-05-15T15:01:29+08:00 +2026/05/15 15:01:29.257, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.94, 64 +2026-05-15T15:01:34+08:00 +2026/05/15 15:01:34.280, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.01, 64 +2026-05-15T15:01:39+08:00 +2026/05/15 15:01:39.305, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.04, 63 +2026-05-15T15:01:44+08:00 +2026/05/15 15:01:44.330, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.36, 63 +2026-05-15T15:01:49+08:00 +2026/05/15 15:01:49.358, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.59, 63 +2026-05-15T15:01:54+08:00 +2026/05/15 15:01:54.382, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.18, 63 +2026-05-15T15:01:59+08:00 +2026/05/15 15:01:59.408, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.25, 62 +2026-05-15T15:02:04+08:00 +2026/05/15 15:02:04.433, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 325.21, 64 +2026-05-15T15:02:09+08:00 +2026/05/15 15:02:09.456, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.54, 64 +2026-05-15T15:02:14+08:00 +2026/05/15 15:02:14.481, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.11, 64 +2026-05-15T15:02:19+08:00 +2026/05/15 15:02:19.507, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.75, 63 +2026-05-15T15:02:24+08:00 +2026/05/15 15:02:24.531, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.75, 62 +2026-05-15T15:02:29+08:00 +2026/05/15 15:02:29.554, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.82, 63 +2026-05-15T15:02:34+08:00 +2026/05/15 15:02:34.579, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.25, 63 +2026-05-15T15:02:39+08:00 +2026/05/15 15:02:39.603, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.24, 64 +2026-05-15T15:02:44+08:00 +2026/05/15 15:02:44.627, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.34, 63 +2026-05-15T15:02:49+08:00 +2026/05/15 15:02:49.653, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.57, 63 +2026-05-15T15:02:54+08:00 +2026/05/15 15:02:54.677, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.72, 63 +2026-05-15T15:02:59+08:00 +2026/05/15 15:02:59.701, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.19, 62 +2026-05-15T15:03:04+08:00 +2026/05/15 15:03:04.725, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.04, 63 +2026-05-15T15:03:09+08:00 +2026/05/15 15:03:09.750, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.34, 63 +2026-05-15T15:03:14+08:00 +2026/05/15 15:03:14.773, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.19, 63 +2026-05-15T15:03:19+08:00 +2026/05/15 15:03:19.795, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.74, 63 +2026-05-15T15:03:24+08:00 +2026/05/15 15:03:24.820, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.67, 64 +2026-05-15T15:03:29+08:00 +2026/05/15 15:03:29.843, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.25, 64 +2026-05-15T15:03:34+08:00 +2026/05/15 15:03:34.868, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.51, 63 +2026-05-15T15:03:39+08:00 +2026/05/15 15:03:39.904, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 361.99, 64 +2026-05-15T15:03:44+08:00 +2026/05/15 15:03:44.927, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.23, 64 +2026-05-15T15:03:49+08:00 +2026/05/15 15:03:49.953, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.75, 64 +2026-05-15T15:03:54+08:00 +2026/05/15 15:03:54.977, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.30, 64 +2026-05-15T15:03:59+08:00 +2026/05/15 15:03:59.998, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.87, 65 +2026-05-15T15:04:05+08:00 +2026/05/15 15:04:05.022, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.90, 64 +2026-05-15T15:04:10+08:00 +2026/05/15 15:04:10.046, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 266.69, 63 +2026-05-15T15:04:15+08:00 +2026/05/15 15:04:15.071, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.66, 64 +2026-05-15T15:04:20+08:00 +2026/05/15 15:04:20.095, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.77, 64 +2026-05-15T15:04:25+08:00 +2026/05/15 15:04:25.120, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.17, 64 +2026-05-15T15:04:30+08:00 +2026/05/15 15:04:30.175, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.03, 64 +2026-05-15T15:04:35+08:00 +2026/05/15 15:04:35.198, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.24, 64 +2026-05-15T15:04:40+08:00 +2026/05/15 15:04:40.223, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.11, 63 +2026-05-15T15:04:45+08:00 +2026/05/15 15:04:45.246, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 361.00, 63 +2026-05-15T15:04:50+08:00 +2026/05/15 15:04:50.271, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.40, 64 +2026-05-15T15:04:55+08:00 +2026/05/15 15:04:55.345, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.15, 64 +2026-05-15T15:05:00+08:00 +2026/05/15 15:05:00.368, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.47, 64 +2026-05-15T15:05:05+08:00 +2026/05/15 15:05:05.392, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.75, 64 +2026-05-15T15:05:10+08:00 +2026/05/15 15:05:10.469, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.54, 64 +2026-05-15T15:05:15+08:00 +2026/05/15 15:05:15.494, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.54, 64 +2026-05-15T15:05:20+08:00 +2026/05/15 15:05:20.537, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.82, 64 +2026-05-15T15:05:25+08:00 +2026/05/15 15:05:25.579, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.84, 64 +2026-05-15T15:05:30+08:00 +2026/05/15 15:05:30.653, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.00, 64 +2026-05-15T15:05:35+08:00 +2026/05/15 15:05:35.677, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.15, 63 +2026-05-15T15:05:40+08:00 +2026/05/15 15:05:40.729, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.93, 63 +2026-05-15T15:05:45+08:00 +2026/05/15 15:05:45.753, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.74, 65 +2026-05-15T15:05:50+08:00 +2026/05/15 15:05:50.777, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.25, 64 +2026-05-15T15:05:55+08:00 +2026/05/15 15:05:55.800, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.95, 62 +2026-05-15T15:06:00+08:00 +2026/05/15 15:06:00.842, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.88, 64 +2026-05-15T15:06:05+08:00 +2026/05/15 15:06:05.885, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.94, 64 +2026-05-15T15:06:10+08:00 +2026/05/15 15:06:10.910, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.51, 63 +2026-05-15T15:06:15+08:00 +2026/05/15 15:06:15.935, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.92, 64 +2026-05-15T15:06:20+08:00 +2026/05/15 15:06:20.958, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.55, 64 +2026-05-15T15:06:25+08:00 +2026/05/15 15:06:25.983, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.11, 64 +2026-05-15T15:06:30+08:00 +2026/05/15 15:06:31.011, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.17, 62 +2026-05-15T15:06:36+08:00 +2026/05/15 15:06:36.038, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 353.57, 59 +2026-05-15T15:06:41+08:00 +2026/05/15 15:06:41.060, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.70, 59 +2026-05-15T15:06:46+08:00 +2026/05/15 15:06:46.083, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.39, 64 +2026-05-15T15:06:51+08:00 +2026/05/15 15:06:51.106, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.94, 64 +2026-05-15T15:06:56+08:00 +2026/05/15 15:06:56.129, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.64, 64 +2026-05-15T15:07:01+08:00 +2026/05/15 15:07:01.156, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.84, 64 +2026-05-15T15:07:06+08:00 +2026/05/15 15:07:06.181, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.74, 63 +2026-05-15T15:07:11+08:00 +2026/05/15 15:07:11.204, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.91, 63 +2026-05-15T15:07:16+08:00 +2026/05/15 15:07:16.228, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 361.46, 63 +2026-05-15T15:07:21+08:00 +2026/05/15 15:07:21.254, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.29, 64 +2026-05-15T15:07:26+08:00 +2026/05/15 15:07:26.278, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.23, 64 +2026-05-15T15:07:31+08:00 +2026/05/15 15:07:31.302, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.18, 64 +2026-05-15T15:07:36+08:00 +2026/05/15 15:07:36.328, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.79, 64 +2026-05-15T15:07:41+08:00 +2026/05/15 15:07:41.353, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.57, 64 +2026-05-15T15:07:46+08:00 +2026/05/15 15:07:46.379, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.07, 65 +2026-05-15T15:07:51+08:00 +2026/05/15 15:07:51.404, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 246.22, 64 +2026-05-15T15:07:56+08:00 +2026/05/15 15:07:56.428, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.95, 65 +2026-05-15T15:08:01+08:00 +2026/05/15 15:08:01.451, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.92, 65 +2026-05-15T15:08:06+08:00 +2026/05/15 15:08:06.475, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 362.61, 63 +2026-05-15T15:08:11+08:00 +2026/05/15 15:08:11.498, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.18, 64 +2026-05-15T15:08:16+08:00 +2026/05/15 15:08:16.522, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 345.75, 64 +2026-05-15T15:08:21+08:00 +2026/05/15 15:08:21.545, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.91, 64 +2026-05-15T15:08:26+08:00 +2026/05/15 15:08:26.569, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.51, 64 +2026-05-15T15:08:31+08:00 +2026/05/15 15:08:31.593, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.37, 64 +2026-05-15T15:08:36+08:00 +2026/05/15 15:08:36.616, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.54, 64 +2026-05-15T15:08:41+08:00 +2026/05/15 15:08:41.642, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.37, 63 +2026-05-15T15:08:46+08:00 +2026/05/15 15:08:46.666, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.35, 64 +2026-05-15T15:08:51+08:00 +2026/05/15 15:08:51.694, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.92, 64 +2026-05-15T15:08:56+08:00 +2026/05/15 15:08:56.720, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.57, 63 +2026-05-15T15:09:01+08:00 +2026/05/15 15:09:01.743, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.04, 64 +2026-05-15T15:09:06+08:00 +2026/05/15 15:09:06.768, NVIDIA GeForce RTX 5090, 56, 20, 9607, 32607, 353.30, 59 +2026-05-15T15:09:11+08:00 +2026/05/15 15:09:11.790, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.63, 64 +2026-05-15T15:09:16+08:00 +2026/05/15 15:09:16.814, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.14, 63 +2026-05-15T15:09:21+08:00 +2026/05/15 15:09:21.838, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.24, 64 +2026-05-15T15:09:26+08:00 +2026/05/15 15:09:26.862, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.47, 64 +2026-05-15T15:09:31+08:00 +2026/05/15 15:09:31.885, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 363.27, 64 +2026-05-15T15:09:36+08:00 +2026/05/15 15:09:36.909, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.83, 63 +2026-05-15T15:09:41+08:00 +2026/05/15 15:09:41.937, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.51, 63 +2026-05-15T15:09:46+08:00 +2026/05/15 15:09:46.967, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.55, 64 +2026-05-15T15:09:51+08:00 +2026/05/15 15:09:51.992, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.60, 63 +2026-05-15T15:09:57+08:00 +2026/05/15 15:09:57.017, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.27, 63 +2026-05-15T15:10:02+08:00 +2026/05/15 15:10:02.040, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 360.98, 64 +2026-05-15T15:10:07+08:00 +2026/05/15 15:10:07.064, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.18, 64 +2026-05-15T15:10:12+08:00 +2026/05/15 15:10:12.089, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.37, 64 +2026-05-15T15:10:17+08:00 +2026/05/15 15:10:17.145, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.92, 64 +2026-05-15T15:10:22+08:00 +2026/05/15 15:10:22.169, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.63, 64 +2026-05-15T15:10:27+08:00 +2026/05/15 15:10:27.192, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.18, 63 +2026-05-15T15:10:32+08:00 +2026/05/15 15:10:32.235, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.75, 63 +2026-05-15T15:10:37+08:00 +2026/05/15 15:10:37.263, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.94, 63 +2026-05-15T15:10:42+08:00 +2026/05/15 15:10:42.286, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.10, 63 +2026-05-15T15:10:47+08:00 +2026/05/15 15:10:47.328, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.79, 64 +2026-05-15T15:10:52+08:00 +2026/05/15 15:10:52.402, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.36, 63 +2026-05-15T15:10:57+08:00 +2026/05/15 15:10:57.426, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.80, 63 +2026-05-15T15:11:02+08:00 +2026/05/15 15:11:02.452, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.40, 63 +2026-05-15T15:11:07+08:00 +2026/05/15 15:11:07.477, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.97, 64 +2026-05-15T15:11:12+08:00 +2026/05/15 15:11:12.500, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.96, 64 +2026-05-15T15:11:17+08:00 +2026/05/15 15:11:17.524, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.62, 65 +2026-05-15T15:11:22+08:00 +2026/05/15 15:11:22.565, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.67, 63 +2026-05-15T15:11:27+08:00 +2026/05/15 15:11:27.608, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.50, 63 +2026-05-15T15:11:32+08:00 +2026/05/15 15:11:32.649, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.11, 63 +2026-05-15T15:11:37+08:00 +2026/05/15 15:11:37.674, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.17, 63 +2026-05-15T15:11:42+08:00 +2026/05/15 15:11:42.697, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 237.46, 57 +2026-05-15T15:11:47+08:00 +2026/05/15 15:11:47.720, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.53, 64 +2026-05-15T15:11:52+08:00 +2026/05/15 15:11:52.745, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.30, 63 +2026-05-15T15:11:57+08:00 +2026/05/15 15:11:57.771, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.63, 63 +2026-05-15T15:12:02+08:00 +2026/05/15 15:12:02.797, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.25, 64 +2026-05-15T15:12:07+08:00 +2026/05/15 15:12:07.829, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.13, 64 +2026-05-15T15:12:12+08:00 +2026/05/15 15:12:12.854, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.15, 64 +2026-05-15T15:12:17+08:00 +2026/05/15 15:12:17.877, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.07, 63 +2026-05-15T15:12:22+08:00 +2026/05/15 15:12:22.900, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.37, 63 +2026-05-15T15:12:27+08:00 +2026/05/15 15:12:27.924, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.21, 64 +2026-05-15T15:12:32+08:00 +2026/05/15 15:12:32.948, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 361.50, 63 +2026-05-15T15:12:37+08:00 +2026/05/15 15:12:37.974, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.57, 63 +2026-05-15T15:12:42+08:00 +2026/05/15 15:12:42.998, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.19, 64 +2026-05-15T15:12:48+08:00 +2026/05/15 15:12:48.022, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.02, 64 +2026-05-15T15:12:53+08:00 +2026/05/15 15:12:53.045, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.00, 65 +2026-05-15T15:12:58+08:00 +2026/05/15 15:12:58.070, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.08, 63 +2026-05-15T15:13:03+08:00 +2026/05/15 15:13:03.114, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 264.60, 64 +2026-05-15T15:13:08+08:00 +2026/05/15 15:13:08.137, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 358.57, 59 +2026-05-15T15:13:13+08:00 +2026/05/15 15:13:13.194, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.84, 64 +2026-05-15T15:13:18+08:00 +2026/05/15 15:13:18.219, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.60, 64 +2026-05-15T15:13:23+08:00 +2026/05/15 15:13:23.275, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.50, 65 +2026-05-15T15:13:28+08:00 +2026/05/15 15:13:28.333, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.48, 64 +2026-05-15T15:13:33+08:00 +2026/05/15 15:13:33.358, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.42, 64 +2026-05-15T15:13:38+08:00 +2026/05/15 15:13:38.382, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.40, 64 +2026-05-15T15:13:43+08:00 +2026/05/15 15:13:43.422, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.11, 63 +2026-05-15T15:13:48+08:00 +2026/05/15 15:13:48.501, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.05, 63 +2026-05-15T15:13:53+08:00 +2026/05/15 15:13:53.524, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.69, 64 +2026-05-15T15:13:58+08:00 +2026/05/15 15:13:58.557, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.81, 64 +2026-05-15T15:14:03+08:00 +2026/05/15 15:14:03.591, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.90, 64 +2026-05-15T15:14:08+08:00 +2026/05/15 15:14:08.632, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.83, 64 +2026-05-15T15:14:13+08:00 +2026/05/15 15:14:13.691, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.15, 64 +2026-05-15T15:14:18+08:00 +2026/05/15 15:14:18.715, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.00, 64 +2026-05-15T15:14:23+08:00 +2026/05/15 15:14:23.779, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.23, 64 +2026-05-15T15:14:28+08:00 +2026/05/15 15:14:28.803, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.22, 65 +2026-05-15T15:14:33+08:00 +2026/05/15 15:14:33.844, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.49, 63 +2026-05-15T15:14:38+08:00 +2026/05/15 15:14:38.905, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.92, 63 +2026-05-15T15:14:43+08:00 +2026/05/15 15:14:43.929, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.14, 64 +2026-05-15T15:14:48+08:00 +2026/05/15 15:14:48.968, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.19, 64 +2026-05-15T15:14:53+08:00 +2026/05/15 15:14:53.992, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 248.93, 64 +2026-05-15T15:14:59+08:00 +2026/05/15 15:14:59.016, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.98, 64 +2026-05-15T15:15:04+08:00 +2026/05/15 15:15:04.041, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.42, 65 +2026-05-15T15:15:09+08:00 +2026/05/15 15:15:09.064, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.25, 64 +2026-05-15T15:15:14+08:00 +2026/05/15 15:15:14.087, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.19, 64 +2026-05-15T15:15:19+08:00 +2026/05/15 15:15:19.111, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.56, 63 +2026-05-15T15:15:24+08:00 +2026/05/15 15:15:24.134, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.40, 63 +2026-05-15T15:15:29+08:00 +2026/05/15 15:15:29.162, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.44, 64 +2026-05-15T15:15:34+08:00 +2026/05/15 15:15:34.184, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.37, 64 +2026-05-15T15:15:39+08:00 +2026/05/15 15:15:39.208, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.93, 64 +2026-05-15T15:15:44+08:00 +2026/05/15 15:15:44.233, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 362.54, 64 +2026-05-15T15:15:49+08:00 +2026/05/15 15:15:49.258, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.30, 64 +2026-05-15T15:15:54+08:00 +2026/05/15 15:15:54.285, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.07, 63 +2026-05-15T15:15:59+08:00 +2026/05/15 15:15:59.308, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.07, 63 +2026-05-15T15:16:04+08:00 +2026/05/15 15:16:04.331, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.73, 64 +2026-05-15T15:16:09+08:00 +2026/05/15 15:16:09.355, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.45, 64 +2026-05-15T15:16:14+08:00 +2026/05/15 15:16:14.380, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.50, 63 +2026-05-15T15:16:19+08:00 +2026/05/15 15:16:19.404, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.84, 63 +2026-05-15T15:16:24+08:00 +2026/05/15 15:16:24.426, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.01, 64 +2026-05-15T15:16:29+08:00 +2026/05/15 15:16:29.449, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.09, 64 +2026-05-15T15:16:34+08:00 +2026/05/15 15:16:34.474, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.86, 64 +2026-05-15T15:16:39+08:00 +2026/05/15 15:16:39.500, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.52, 64 +2026-05-15T15:16:44+08:00 +2026/05/15 15:16:44.524, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.54, 64 +2026-05-15T15:16:49+08:00 +2026/05/15 15:16:49.547, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.54, 63 +2026-05-15T15:16:54+08:00 +2026/05/15 15:16:54.570, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.11, 64 +2026-05-15T15:16:59+08:00 +2026/05/15 15:16:59.593, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.10, 64 +2026-05-15T15:17:04+08:00 +2026/05/15 15:17:04.616, NVIDIA GeForce RTX 5090, 14, 10, 9607, 32607, 343.05, 60 +2026-05-15T15:17:09+08:00 +2026/05/15 15:17:09.639, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.34, 63 +2026-05-15T15:17:14+08:00 +2026/05/15 15:17:14.663, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.55, 63 +2026-05-15T15:17:19+08:00 +2026/05/15 15:17:19.686, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.61, 64 +2026-05-15T15:17:24+08:00 +2026/05/15 15:17:24.709, NVIDIA GeForce RTX 5090, 88, 39, 9607, 32607, 363.02, 65 +2026-05-15T15:17:29+08:00 +2026/05/15 15:17:29.736, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.59, 64 +2026-05-15T15:17:34+08:00 +2026/05/15 15:17:34.764, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.10, 64 +2026-05-15T15:17:39+08:00 +2026/05/15 15:17:39.788, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.21, 64 +2026-05-15T15:17:44+08:00 +2026/05/15 15:17:44.810, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.79, 64 +2026-05-15T15:17:49+08:00 +2026/05/15 15:17:49.835, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.36, 64 +2026-05-15T15:17:54+08:00 +2026/05/15 15:17:54.913, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.02, 63 +2026-05-15T15:17:59+08:00 +2026/05/15 15:17:59.936, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.76, 63 +2026-05-15T15:18:04+08:00 +2026/05/15 15:18:04.977, NVIDIA GeForce RTX 5090, 62, 22, 9607, 32607, 247.26, 61 +2026-05-15T15:18:09+08:00 +2026/05/15 15:18:10.001, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.18, 64 +2026-05-15T15:18:15+08:00 +2026/05/15 15:18:15.043, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.75, 64 +2026-05-15T15:18:20+08:00 +2026/05/15 15:18:20.122, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.92, 63 +2026-05-15T15:18:25+08:00 +2026/05/15 15:18:25.145, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.76, 63 +2026-05-15T15:18:30+08:00 +2026/05/15 15:18:30.169, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.67, 63 +2026-05-15T15:18:35+08:00 +2026/05/15 15:18:35.244, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.68, 65 +2026-05-15T15:18:40+08:00 +2026/05/15 15:18:40.268, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 241.27, 62 +2026-05-15T15:18:45+08:00 +2026/05/15 15:18:45.311, NVIDIA GeForce RTX 5090, 82, 36, 9607, 32607, 289.12, 63 +2026-05-15T15:18:50+08:00 +2026/05/15 15:18:50.336, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.02, 64 +2026-05-15T15:18:55+08:00 +2026/05/15 15:18:55.408, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.58, 62 +2026-05-15T15:19:00+08:00 +2026/05/15 15:19:00.432, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.89, 63 +2026-05-15T15:19:05+08:00 +2026/05/15 15:19:05.458, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.14, 63 +2026-05-15T15:19:10+08:00 +2026/05/15 15:19:10.533, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.37, 63 +2026-05-15T15:19:15+08:00 +2026/05/15 15:19:15.557, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.51, 63 +2026-05-15T15:19:20+08:00 +2026/05/15 15:19:20.583, NVIDIA GeForce RTX 5090, 68, 31, 9607, 32607, 355.63, 64 +2026-05-15T15:19:25+08:00 +2026/05/15 15:19:25.623, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.58, 63 +2026-05-15T15:19:30+08:00 +2026/05/15 15:19:30.678, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 348.41, 64 +2026-05-15T15:19:35+08:00 +2026/05/15 15:19:35.702, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.44, 64 +2026-05-15T15:19:40+08:00 +2026/05/15 15:19:40.745, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.12, 65 +2026-05-15T15:19:45+08:00 +2026/05/15 15:19:45.822, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.63, 63 +2026-05-15T15:19:50+08:00 +2026/05/15 15:19:50.845, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.17, 63 +2026-05-15T15:19:55+08:00 +2026/05/15 15:19:55.868, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.49, 64 +2026-05-15T15:20:00+08:00 +2026/05/15 15:20:00.894, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.50, 64 +2026-05-15T15:20:05+08:00 +2026/05/15 15:20:05.918, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.43, 64 +2026-05-15T15:20:10+08:00 +2026/05/15 15:20:10.959, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.67, 64 +2026-05-15T15:20:15+08:00 +2026/05/15 15:20:15.994, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.20, 64 +2026-05-15T15:20:21+08:00 +2026/05/15 15:20:21.018, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.98, 63 +2026-05-15T15:20:26+08:00 +2026/05/15 15:20:26.062, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.04, 64 +2026-05-15T15:20:31+08:00 +2026/05/15 15:20:31.086, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.91, 64 +2026-05-15T15:20:36+08:00 +2026/05/15 15:20:36.111, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.58, 62 +2026-05-15T15:20:41+08:00 +2026/05/15 15:20:41.135, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.01, 64 +2026-05-15T15:20:46+08:00 +2026/05/15 15:20:46.162, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.56, 64 +2026-05-15T15:20:51+08:00 +2026/05/15 15:20:51.185, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.13, 64 +2026-05-15T15:20:56+08:00 +2026/05/15 15:20:56.207, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.75, 64 +2026-05-15T15:21:01+08:00 +2026/05/15 15:21:01.234, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.55, 64 +2026-05-15T15:21:06+08:00 +2026/05/15 15:21:06.260, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.95, 64 +2026-05-15T15:21:11+08:00 +2026/05/15 15:21:11.285, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.09, 65 +2026-05-15T15:21:16+08:00 +2026/05/15 15:21:16.310, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.87, 64 +2026-05-15T15:21:21+08:00 +2026/05/15 15:21:21.334, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.55, 64 +2026-05-15T15:21:26+08:00 +2026/05/15 15:21:26.357, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.02, 64 +2026-05-15T15:21:31+08:00 +2026/05/15 15:21:31.399, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 360.00, 64 +2026-05-15T15:21:36+08:00 +2026/05/15 15:21:36.456, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.90, 65 +2026-05-15T15:21:41+08:00 +2026/05/15 15:21:41.497, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.13, 64 +2026-05-15T15:21:46+08:00 +2026/05/15 15:21:46.523, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.10, 64 +2026-05-15T15:21:51+08:00 +2026/05/15 15:21:51.565, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.50, 64 +2026-05-15T15:21:56+08:00 +2026/05/15 15:21:56.614, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.28, 64 +2026-05-15T15:22:01+08:00 +2026/05/15 15:22:01.638, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.24, 62 +2026-05-15T15:22:06+08:00 +2026/05/15 15:22:06.662, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.44, 63 +2026-05-15T15:22:11+08:00 +2026/05/15 15:22:11.695, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 294.26, 63 +2026-05-15T15:22:16+08:00 +2026/05/15 15:22:16.731, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.48, 64 +2026-05-15T15:22:21+08:00 +2026/05/15 15:22:21.757, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.56, 64 +2026-05-15T15:22:26+08:00 +2026/05/15 15:22:26.782, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.47, 63 +2026-05-15T15:22:31+08:00 +2026/05/15 15:22:31.806, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 260.62, 63 +2026-05-15T15:22:36+08:00 +2026/05/15 15:22:36.832, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.48, 64 +2026-05-15T15:22:41+08:00 +2026/05/15 15:22:41.856, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.20, 65 +2026-05-15T15:22:46+08:00 +2026/05/15 15:22:46.880, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.98, 65 +2026-05-15T15:22:51+08:00 +2026/05/15 15:22:51.904, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.13, 64 +2026-05-15T15:22:56+08:00 +2026/05/15 15:22:56.932, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.70, 64 +2026-05-15T15:23:01+08:00 +2026/05/15 15:23:01.956, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.99, 64 +2026-05-15T15:23:06+08:00 +2026/05/15 15:23:06.979, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.72, 64 +2026-05-15T15:23:11+08:00 +2026/05/15 15:23:12.004, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 285.38, 63 +2026-05-15T15:23:17+08:00 +2026/05/15 15:23:17.028, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.34, 64 +2026-05-15T15:23:22+08:00 +2026/05/15 15:23:22.052, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.73, 63 +2026-05-15T15:23:27+08:00 +2026/05/15 15:23:27.077, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.04, 63 +2026-05-15T15:23:32+08:00 +2026/05/15 15:23:32.100, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.98, 63 +2026-05-15T15:23:37+08:00 +2026/05/15 15:23:37.125, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.16, 63 +2026-05-15T15:23:42+08:00 +2026/05/15 15:23:42.149, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.26, 63 +2026-05-15T15:23:47+08:00 +2026/05/15 15:23:47.171, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.73, 64 +2026-05-15T15:23:52+08:00 +2026/05/15 15:23:52.194, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.44, 64 +2026-05-15T15:23:57+08:00 +2026/05/15 15:23:57.219, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.16, 64 +2026-05-15T15:24:02+08:00 +2026/05/15 15:24:02.243, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.00, 65 +2026-05-15T15:24:07+08:00 +2026/05/15 15:24:07.270, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.28, 63 +2026-05-15T15:24:12+08:00 +2026/05/15 15:24:12.293, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.02, 64 +2026-05-15T15:24:17+08:00 +2026/05/15 15:24:17.320, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.07, 64 +2026-05-15T15:24:22+08:00 +2026/05/15 15:24:22.347, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.84, 64 +2026-05-15T15:24:27+08:00 +2026/05/15 15:24:27.370, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 254.98, 64 +2026-05-15T15:24:32+08:00 +2026/05/15 15:24:32.392, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.52, 65 +2026-05-15T15:24:37+08:00 +2026/05/15 15:24:37.420, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.55, 64 +2026-05-15T15:24:42+08:00 +2026/05/15 15:24:42.444, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.12, 64 +2026-05-15T15:24:47+08:00 +2026/05/15 15:24:47.470, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 360.73, 64 +2026-05-15T15:24:52+08:00 +2026/05/15 15:24:52.503, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.30, 64 +2026-05-15T15:24:57+08:00 +2026/05/15 15:24:57.531, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.21, 64 +2026-05-15T15:25:02+08:00 +2026/05/15 15:25:02.554, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.93, 64 +2026-05-15T15:25:07+08:00 +2026/05/15 15:25:07.579, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.89, 64 +2026-05-15T15:25:12+08:00 +2026/05/15 15:25:12.606, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.04, 65 +2026-05-15T15:25:17+08:00 +2026/05/15 15:25:17.630, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.09, 64 +2026-05-15T15:25:22+08:00 +2026/05/15 15:25:22.653, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.16, 65 +2026-05-15T15:25:27+08:00 +2026/05/15 15:25:27.677, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.02, 63 +2026-05-15T15:25:32+08:00 +2026/05/15 15:25:32.701, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.97, 64 +2026-05-15T15:25:37+08:00 +2026/05/15 15:25:37.725, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.35, 65 +2026-05-15T15:25:42+08:00 +2026/05/15 15:25:42.751, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 270.84, 64 +2026-05-15T15:25:47+08:00 +2026/05/15 15:25:47.774, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.80, 64 +2026-05-15T15:25:52+08:00 +2026/05/15 15:25:52.797, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.62, 64 +2026-05-15T15:25:57+08:00 +2026/05/15 15:25:57.821, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.07, 63 +2026-05-15T15:26:02+08:00 +2026/05/15 15:26:02.844, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.84, 64 +2026-05-15T15:26:07+08:00 +2026/05/15 15:26:07.872, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.98, 64 +2026-05-15T15:26:12+08:00 +2026/05/15 15:26:12.896, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.54, 64 +2026-05-15T15:26:17+08:00 +2026/05/15 15:26:17.921, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.53, 65 +2026-05-15T15:26:22+08:00 +2026/05/15 15:26:22.949, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 302.25, 64 +2026-05-15T15:26:27+08:00 +2026/05/15 15:26:27.970, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.56, 64 +2026-05-15T15:26:32+08:00 +2026/05/15 15:26:32.997, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.07, 64 +2026-05-15T15:26:38+08:00 +2026/05/15 15:26:38.020, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 361.42, 63 +2026-05-15T15:26:43+08:00 +2026/05/15 15:26:43.045, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.17, 64 +2026-05-15T15:26:48+08:00 +2026/05/15 15:26:48.069, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.40, 64 +2026-05-15T15:26:53+08:00 +2026/05/15 15:26:53.092, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.43, 64 +2026-05-15T15:26:58+08:00 +2026/05/15 15:26:58.115, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.52, 63 +2026-05-15T15:27:03+08:00 +2026/05/15 15:27:03.139, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.82, 64 +2026-05-15T15:27:08+08:00 +2026/05/15 15:27:08.165, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.38, 63 +2026-05-15T15:27:13+08:00 +2026/05/15 15:27:13.188, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.81, 63 +2026-05-15T15:27:18+08:00 +2026/05/15 15:27:18.211, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.37, 63 +2026-05-15T15:27:23+08:00 +2026/05/15 15:27:23.235, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 352.65, 64 +2026-05-15T15:27:28+08:00 +2026/05/15 15:27:28.258, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.45, 65 +2026-05-15T15:27:33+08:00 +2026/05/15 15:27:33.283, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.36, 64 +2026-05-15T15:27:38+08:00 +2026/05/15 15:27:38.306, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.89, 64 +2026-05-15T15:27:43+08:00 +2026/05/15 15:27:43.331, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.28, 63 +2026-05-15T15:27:48+08:00 +2026/05/15 15:27:48.354, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.52, 63 +2026-05-15T15:27:53+08:00 +2026/05/15 15:27:53.378, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.45, 64 +2026-05-15T15:27:58+08:00 +2026/05/15 15:27:58.404, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.83, 64 +2026-05-15T15:28:03+08:00 +2026/05/15 15:28:03.427, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 352.95, 64 +2026-05-15T15:28:08+08:00 +2026/05/15 15:28:08.449, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 353.17, 64 +2026-05-15T15:28:13+08:00 +2026/05/15 15:28:13.476, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.00, 65 +2026-05-15T15:28:18+08:00 +2026/05/15 15:28:18.502, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 242.79, 63 +2026-05-15T15:28:23+08:00 +2026/05/15 15:28:23.527, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.79, 64 +2026-05-15T15:28:28+08:00 +2026/05/15 15:28:28.557, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.20, 64 +2026-05-15T15:28:33+08:00 +2026/05/15 15:28:33.581, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 352.07, 63 +2026-05-15T15:28:38+08:00 +2026/05/15 15:28:38.607, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.12, 63 +2026-05-15T15:28:43+08:00 +2026/05/15 15:28:43.631, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.97, 63 +2026-05-15T15:28:48+08:00 +2026/05/15 15:28:48.657, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.21, 63 +2026-05-15T15:28:53+08:00 +2026/05/15 15:28:53.682, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.34, 63 +2026-05-15T15:28:58+08:00 +2026/05/15 15:28:58.721, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.21, 63 +2026-05-15T15:29:03+08:00 +2026/05/15 15:29:03.764, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.72, 63 +2026-05-15T15:29:08+08:00 +2026/05/15 15:29:08.789, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.35, 63 +2026-05-15T15:29:13+08:00 +2026/05/15 15:29:13.862, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.26, 64 +2026-05-15T15:29:18+08:00 +2026/05/15 15:29:18.886, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.45, 64 +2026-05-15T15:29:23+08:00 +2026/05/15 15:29:23.912, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.74, 64 +2026-05-15T15:29:28+08:00 +2026/05/15 15:29:28.935, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.47, 64 +2026-05-15T15:29:33+08:00 +2026/05/15 15:29:33.960, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 308.56, 62 +2026-05-15T15:29:38+08:00 +2026/05/15 15:29:38.984, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.28, 63 +2026-05-15T15:29:43+08:00 +2026/05/15 15:29:44.010, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.81, 63 +2026-05-15T15:29:49+08:00 +2026/05/15 15:29:49.034, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.20, 63 +2026-05-15T15:29:54+08:00 +2026/05/15 15:29:54.056, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.04, 63 +2026-05-15T15:29:59+08:00 +2026/05/15 15:29:59.082, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.52, 63 +2026-05-15T15:30:04+08:00 +2026/05/15 15:30:04.106, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.89, 63 +2026-05-15T15:30:09+08:00 +2026/05/15 15:30:09.130, NVIDIA GeForce RTX 5090, 81, 36, 9607, 32607, 245.34, 60 +2026-05-15T15:30:14+08:00 +2026/05/15 15:30:14.154, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.27, 64 +2026-05-15T15:30:19+08:00 +2026/05/15 15:30:19.177, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.84, 64 +2026-05-15T15:30:24+08:00 +2026/05/15 15:30:24.202, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.49, 64 +2026-05-15T15:30:29+08:00 +2026/05/15 15:30:29.230, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.11, 65 +2026-05-15T15:30:34+08:00 +2026/05/15 15:30:34.258, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.54, 65 +2026-05-15T15:30:39+08:00 +2026/05/15 15:30:39.284, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.69, 64 +2026-05-15T15:30:44+08:00 +2026/05/15 15:30:44.308, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.63, 65 +2026-05-15T15:30:49+08:00 +2026/05/15 15:30:49.332, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.21, 63 +2026-05-15T15:30:54+08:00 +2026/05/15 15:30:54.355, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.57, 63 +2026-05-15T15:30:59+08:00 +2026/05/15 15:30:59.380, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 362.06, 64 +2026-05-15T15:31:04+08:00 +2026/05/15 15:31:04.408, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 248.66, 57 +2026-05-15T15:31:09+08:00 +2026/05/15 15:31:09.433, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.53, 62 +2026-05-15T15:31:14+08:00 +2026/05/15 15:31:14.458, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.77, 63 +2026-05-15T15:31:19+08:00 +2026/05/15 15:31:19.486, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.52, 63 +2026-05-15T15:31:24+08:00 +2026/05/15 15:31:24.511, NVIDIA GeForce RTX 5090, 59, 21, 9607, 32607, 254.27, 62 +2026-05-15T15:31:29+08:00 +2026/05/15 15:31:29.533, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.27, 64 +2026-05-15T15:31:34+08:00 +2026/05/15 15:31:34.557, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.63, 64 +2026-05-15T15:31:39+08:00 +2026/05/15 15:31:39.580, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.13, 64 +2026-05-15T15:31:44+08:00 +2026/05/15 15:31:44.606, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.51, 65 +2026-05-15T15:31:49+08:00 +2026/05/15 15:31:49.630, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.49, 65 +2026-05-15T15:31:54+08:00 +2026/05/15 15:31:54.656, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 363.64, 64 +2026-05-15T15:31:59+08:00 +2026/05/15 15:31:59.680, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.22, 65 +2026-05-15T15:32:04+08:00 +2026/05/15 15:32:04.704, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.30, 63 +2026-05-15T15:32:09+08:00 +2026/05/15 15:32:09.729, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.59, 63 +2026-05-15T15:32:14+08:00 +2026/05/15 15:32:14.752, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.43, 64 +2026-05-15T15:32:19+08:00 +2026/05/15 15:32:19.775, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.97, 64 +2026-05-15T15:32:24+08:00 +2026/05/15 15:32:24.799, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.89, 64 +2026-05-15T15:32:29+08:00 +2026/05/15 15:32:29.823, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.16, 64 +2026-05-15T15:32:34+08:00 +2026/05/15 15:32:34.846, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.76, 62 +2026-05-15T15:32:39+08:00 +2026/05/15 15:32:39.872, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.00, 63 +2026-05-15T15:32:44+08:00 +2026/05/15 15:32:44.897, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.57, 64 +2026-05-15T15:32:49+08:00 +2026/05/15 15:32:49.921, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.99, 65 +2026-05-15T15:32:54+08:00 +2026/05/15 15:32:54.952, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.29, 64 +2026-05-15T15:32:59+08:00 +2026/05/15 15:32:59.974, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.31, 64 +2026-05-15T15:33:04+08:00 +2026/05/15 15:33:04.998, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.29, 64 +2026-05-15T15:33:10+08:00 +2026/05/15 15:33:10.021, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.55, 64 +2026-05-15T15:33:15+08:00 +2026/05/15 15:33:15.044, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.44, 64 +2026-05-15T15:33:20+08:00 +2026/05/15 15:33:20.073, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.29, 64 +2026-05-15T15:33:25+08:00 +2026/05/15 15:33:25.097, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.73, 64 +2026-05-15T15:33:30+08:00 +2026/05/15 15:33:30.121, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.34, 64 +2026-05-15T15:33:35+08:00 +2026/05/15 15:33:35.149, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.04, 64 +2026-05-15T15:33:40+08:00 +2026/05/15 15:33:40.172, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.44, 64 +2026-05-15T15:33:45+08:00 +2026/05/15 15:33:45.196, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.30, 64 +2026-05-15T15:33:50+08:00 +2026/05/15 15:33:50.221, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.14, 64 +2026-05-15T15:33:55+08:00 +2026/05/15 15:33:55.245, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.36, 64 +2026-05-15T15:34:00+08:00 +2026/05/15 15:34:00.270, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 361.10, 64 +2026-05-15T15:34:05+08:00 +2026/05/15 15:34:05.294, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.61, 64 +2026-05-15T15:34:10+08:00 +2026/05/15 15:34:10.322, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.73, 65 +2026-05-15T15:34:15+08:00 +2026/05/15 15:34:15.345, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.34, 63 +2026-05-15T15:34:20+08:00 +2026/05/15 15:34:20.370, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.41, 64 +2026-05-15T15:34:25+08:00 +2026/05/15 15:34:25.394, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.74, 65 +2026-05-15T15:34:30+08:00 +2026/05/15 15:34:30.420, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.25, 65 +2026-05-15T15:34:35+08:00 +2026/05/15 15:34:35.445, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.07, 64 +2026-05-15T15:34:40+08:00 +2026/05/15 15:34:40.469, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.34, 64 +2026-05-15T15:34:45+08:00 +2026/05/15 15:34:45.496, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.82, 65 +2026-05-15T15:34:50+08:00 +2026/05/15 15:34:50.520, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.16, 65 +2026-05-15T15:34:55+08:00 +2026/05/15 15:34:55.545, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.22, 64 +2026-05-15T15:35:00+08:00 +2026/05/15 15:35:00.569, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.32, 64 +2026-05-15T15:35:05+08:00 +2026/05/15 15:35:05.592, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.73, 65 +2026-05-15T15:35:10+08:00 +2026/05/15 15:35:10.616, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 156.43, 57 +2026-05-15T15:35:15+08:00 +2026/05/15 15:35:15.637, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.48, 63 +2026-05-15T15:35:20+08:00 +2026/05/15 15:35:20.660, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.15, 63 +2026-05-15T15:35:25+08:00 +2026/05/15 15:35:25.684, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.98, 64 +2026-05-15T15:35:30+08:00 +2026/05/15 15:35:30.709, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.34, 64 +2026-05-15T15:35:35+08:00 +2026/05/15 15:35:35.732, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.48, 64 +2026-05-15T15:35:40+08:00 +2026/05/15 15:35:40.759, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.57, 65 +2026-05-15T15:35:45+08:00 +2026/05/15 15:35:45.783, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.58, 64 +2026-05-15T15:35:50+08:00 +2026/05/15 15:35:50.807, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.22, 64 +2026-05-15T15:35:55+08:00 +2026/05/15 15:35:55.833, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.28, 64 +2026-05-15T15:36:00+08:00 +2026/05/15 15:36:00.857, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.04, 64 +2026-05-15T15:36:05+08:00 +2026/05/15 15:36:05.880, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.58, 63 +2026-05-15T15:36:10+08:00 +2026/05/15 15:36:10.909, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.85, 63 +2026-05-15T15:36:15+08:00 +2026/05/15 15:36:15.934, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.35, 64 +2026-05-15T15:36:20+08:00 +2026/05/15 15:36:20.958, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.96, 65 +2026-05-15T15:36:25+08:00 +2026/05/15 15:36:25.982, NVIDIA GeForce RTX 5090, 4, 3, 9607, 32607, 339.59, 59 +2026-05-15T15:36:30+08:00 +2026/05/15 15:36:31.005, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.65, 63 +2026-05-15T15:36:36+08:00 +2026/05/15 15:36:36.031, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.86, 63 +2026-05-15T15:36:41+08:00 +2026/05/15 15:36:41.054, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.41, 63 +2026-05-15T15:36:46+08:00 +2026/05/15 15:36:46.077, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.48, 64 +2026-05-15T15:36:51+08:00 +2026/05/15 15:36:51.102, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.88, 64 +2026-05-15T15:36:56+08:00 +2026/05/15 15:36:56.127, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.96, 64 +2026-05-15T15:37:01+08:00 +2026/05/15 15:37:01.151, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.55, 63 +2026-05-15T15:37:06+08:00 +2026/05/15 15:37:06.175, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.94, 63 +2026-05-15T15:37:11+08:00 +2026/05/15 15:37:11.198, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.48, 64 +2026-05-15T15:37:16+08:00 +2026/05/15 15:37:16.222, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.40, 64 +2026-05-15T15:37:21+08:00 +2026/05/15 15:37:21.247, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.16, 65 +2026-05-15T15:37:26+08:00 +2026/05/15 15:37:26.277, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.38, 64 +2026-05-15T15:37:31+08:00 +2026/05/15 15:37:31.301, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.67, 64 +2026-05-15T15:37:36+08:00 +2026/05/15 15:37:36.327, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.55, 64 +2026-05-15T15:37:41+08:00 +2026/05/15 15:37:41.351, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.33, 65 +2026-05-15T15:37:46+08:00 +2026/05/15 15:37:46.376, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.09, 64 +2026-05-15T15:37:51+08:00 +2026/05/15 15:37:51.400, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.22, 64 +2026-05-15T15:37:56+08:00 +2026/05/15 15:37:56.424, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.60, 63 +2026-05-15T15:38:01+08:00 +2026/05/15 15:38:01.451, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.10, 64 +2026-05-15T15:38:06+08:00 +2026/05/15 15:38:06.474, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.01, 64 +2026-05-15T15:38:11+08:00 +2026/05/15 15:38:11.498, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.94, 63 +2026-05-15T15:38:16+08:00 +2026/05/15 15:38:16.522, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.70, 63 +2026-05-15T15:38:21+08:00 +2026/05/15 15:38:21.546, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.45, 64 +2026-05-15T15:38:26+08:00 +2026/05/15 15:38:26.570, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.69, 64 +2026-05-15T15:38:31+08:00 +2026/05/15 15:38:31.593, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.48, 64 +2026-05-15T15:38:36+08:00 +2026/05/15 15:38:36.617, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 235.01, 57 +2026-05-15T15:38:41+08:00 +2026/05/15 15:38:41.640, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.42, 64 +2026-05-15T15:38:46+08:00 +2026/05/15 15:38:46.665, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.26, 64 +2026-05-15T15:38:51+08:00 +2026/05/15 15:38:51.690, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.47, 64 +2026-05-15T15:38:56+08:00 +2026/05/15 15:38:56.712, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.58, 64 +2026-05-15T15:39:01+08:00 +2026/05/15 15:39:01.737, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.37, 64 +2026-05-15T15:39:06+08:00 +2026/05/15 15:39:06.761, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 362.09, 64 +2026-05-15T15:39:11+08:00 +2026/05/15 15:39:11.785, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.26, 64 +2026-05-15T15:39:16+08:00 +2026/05/15 15:39:16.810, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.49, 64 +2026-05-15T15:39:21+08:00 +2026/05/15 15:39:21.835, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.92, 64 +2026-05-15T15:39:26+08:00 +2026/05/15 15:39:26.861, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.47, 64 +2026-05-15T15:39:31+08:00 +2026/05/15 15:39:31.883, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.29, 64 +2026-05-15T15:39:36+08:00 +2026/05/15 15:39:36.907, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 327.60, 58 +2026-05-15T15:39:41+08:00 +2026/05/15 15:39:41.936, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.27, 64 +2026-05-15T15:39:46+08:00 +2026/05/15 15:39:46.960, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.79, 64 +2026-05-15T15:39:51+08:00 +2026/05/15 15:39:51.983, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.18, 63 +2026-05-15T15:39:56+08:00 +2026/05/15 15:39:57.008, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.22, 64 +2026-05-15T15:40:02+08:00 +2026/05/15 15:40:02.030, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.16, 64 +2026-05-15T15:40:07+08:00 +2026/05/15 15:40:07.055, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 363.39, 65 +2026-05-15T15:40:12+08:00 +2026/05/15 15:40:12.078, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 316.46, 58 +2026-05-15T15:40:17+08:00 +2026/05/15 15:40:17.100, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.86, 64 +2026-05-15T15:40:22+08:00 +2026/05/15 15:40:22.125, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 362.28, 65 +2026-05-15T15:40:27+08:00 +2026/05/15 15:40:27.149, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.52, 63 +2026-05-15T15:40:32+08:00 +2026/05/15 15:40:32.173, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.74, 64 +2026-05-15T15:40:37+08:00 +2026/05/15 15:40:37.197, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.28, 64 +2026-05-15T15:40:42+08:00 +2026/05/15 15:40:42.221, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.33, 64 +2026-05-15T15:40:47+08:00 +2026/05/15 15:40:47.246, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 362.93, 64 +2026-05-15T15:40:52+08:00 +2026/05/15 15:40:52.271, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 291.86, 63 +2026-05-15T15:40:57+08:00 +2026/05/15 15:40:57.295, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.94, 65 +2026-05-15T15:41:02+08:00 +2026/05/15 15:41:02.323, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 361.50, 64 +2026-05-15T15:41:07+08:00 +2026/05/15 15:41:07.347, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.73, 63 +2026-05-15T15:41:12+08:00 +2026/05/15 15:41:12.371, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.93, 63 +2026-05-15T15:41:17+08:00 +2026/05/15 15:41:17.394, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.97, 64 +2026-05-15T15:41:22+08:00 +2026/05/15 15:41:22.419, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 361.91, 64 +2026-05-15T15:41:27+08:00 +2026/05/15 15:41:27.445, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.79, 63 +2026-05-15T15:41:32+08:00 +2026/05/15 15:41:32.469, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.39, 64 +2026-05-15T15:41:37+08:00 +2026/05/15 15:41:37.494, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.79, 63 +2026-05-15T15:41:42+08:00 +2026/05/15 15:41:42.518, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.54, 63 +2026-05-15T15:41:47+08:00 +2026/05/15 15:41:47.542, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.87, 64 +2026-05-15T15:41:52+08:00 +2026/05/15 15:41:52.567, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.55, 64 +2026-05-15T15:41:57+08:00 +2026/05/15 15:41:57.595, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.14, 64 +2026-05-15T15:42:02+08:00 +2026/05/15 15:42:02.620, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.45, 65 +2026-05-15T15:42:07+08:00 +2026/05/15 15:42:07.644, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.01, 64 +2026-05-15T15:42:12+08:00 +2026/05/15 15:42:12.668, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.80, 63 +2026-05-15T15:42:17+08:00 +2026/05/15 15:42:17.693, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.92, 64 +2026-05-15T15:42:22+08:00 +2026/05/15 15:42:22.717, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 363.01, 64 +2026-05-15T15:42:27+08:00 +2026/05/15 15:42:27.742, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 362.05, 64 +2026-05-15T15:42:32+08:00 +2026/05/15 15:42:32.767, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.80, 64 +2026-05-15T15:42:37+08:00 +2026/05/15 15:42:37.793, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.59, 64 +2026-05-15T15:42:42+08:00 +2026/05/15 15:42:42.818, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.60, 63 +2026-05-15T15:42:47+08:00 +2026/05/15 15:42:47.841, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.52, 64 +2026-05-15T15:42:52+08:00 +2026/05/15 15:42:52.865, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.37, 64 +2026-05-15T15:42:57+08:00 +2026/05/15 15:42:57.888, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.49, 64 +2026-05-15T15:43:02+08:00 +2026/05/15 15:43:02.932, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.13, 64 +2026-05-15T15:43:07+08:00 +2026/05/15 15:43:07.959, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.15, 64 +2026-05-15T15:43:12+08:00 +2026/05/15 15:43:12.981, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.17, 63 +2026-05-15T15:43:18+08:00 +2026/05/15 15:43:18.024, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.24, 64 +2026-05-15T15:43:23+08:00 +2026/05/15 15:43:23.048, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.49, 63 +2026-05-15T15:43:28+08:00 +2026/05/15 15:43:28.070, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.83, 64 +2026-05-15T15:43:33+08:00 +2026/05/15 15:43:33.095, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.25, 64 +2026-05-15T15:43:38+08:00 +2026/05/15 15:43:38.119, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.47, 63 +2026-05-15T15:43:43+08:00 +2026/05/15 15:43:43.143, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.30, 65 +2026-05-15T15:43:48+08:00 +2026/05/15 15:43:48.199, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.04, 64 +2026-05-15T15:43:53+08:00 +2026/05/15 15:43:53.224, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.17, 64 +2026-05-15T15:43:58+08:00 +2026/05/15 15:43:58.246, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.12, 65 +2026-05-15T15:44:03+08:00 +2026/05/15 15:44:03.271, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.50, 64 +2026-05-15T15:44:08+08:00 +2026/05/15 15:44:08.301, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 361.89, 64 +2026-05-15T15:44:13+08:00 +2026/05/15 15:44:13.328, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.00, 64 +2026-05-15T15:44:18+08:00 +2026/05/15 15:44:18.352, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.73, 63 +2026-05-15T15:44:23+08:00 +2026/05/15 15:44:23.377, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.69, 64 +2026-05-15T15:44:28+08:00 +2026/05/15 15:44:28.400, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.04, 64 +2026-05-15T15:44:33+08:00 +2026/05/15 15:44:33.425, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.55, 64 +2026-05-15T15:44:38+08:00 +2026/05/15 15:44:38.450, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 361.83, 64 +2026-05-15T15:44:43+08:00 +2026/05/15 15:44:43.474, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.39, 64 +2026-05-15T15:44:48+08:00 +2026/05/15 15:44:48.497, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.88, 63 +2026-05-15T15:44:53+08:00 +2026/05/15 15:44:53.523, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.94, 64 +2026-05-15T15:44:58+08:00 +2026/05/15 15:44:58.549, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.69, 63 +2026-05-15T15:45:03+08:00 +2026/05/15 15:45:03.573, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.68, 63 +2026-05-15T15:45:08+08:00 +2026/05/15 15:45:08.596, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.14, 64 +2026-05-15T15:45:13+08:00 +2026/05/15 15:45:13.618, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.48, 65 +2026-05-15T15:45:18+08:00 +2026/05/15 15:45:18.645, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.59, 64 +2026-05-15T15:45:23+08:00 +2026/05/15 15:45:23.669, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.88, 64 +2026-05-15T15:45:28+08:00 +2026/05/15 15:45:28.695, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.46, 63 +2026-05-15T15:45:33+08:00 +2026/05/15 15:45:33.717, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.47, 64 +2026-05-15T15:45:38+08:00 +2026/05/15 15:45:38.742, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.46, 64 +2026-05-15T15:45:43+08:00 +2026/05/15 15:45:43.770, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.97, 65 +2026-05-15T15:45:48+08:00 +2026/05/15 15:45:48.794, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.01, 64 +2026-05-15T15:45:53+08:00 +2026/05/15 15:45:53.818, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.55, 64 +2026-05-15T15:45:58+08:00 +2026/05/15 15:45:58.841, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.13, 64 +2026-05-15T15:46:03+08:00 +2026/05/15 15:46:03.865, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.81, 63 +2026-05-15T15:46:08+08:00 +2026/05/15 15:46:08.888, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.07, 63 +2026-05-15T15:46:13+08:00 +2026/05/15 15:46:13.911, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.61, 63 +2026-05-15T15:46:18+08:00 +2026/05/15 15:46:18.935, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 261.92, 63 +2026-05-15T15:46:23+08:00 +2026/05/15 15:46:23.971, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.92, 64 +2026-05-15T15:46:28+08:00 +2026/05/15 15:46:28.996, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.81, 64 +2026-05-15T15:46:34+08:00 +2026/05/15 15:46:34.019, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.71, 64 +2026-05-15T15:46:39+08:00 +2026/05/15 15:46:39.043, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.55, 63 +2026-05-15T15:46:44+08:00 +2026/05/15 15:46:44.065, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.52, 63 +2026-05-15T15:46:49+08:00 +2026/05/15 15:46:49.093, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.92, 63 +2026-05-15T15:46:54+08:00 +2026/05/15 15:46:54.122, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.83, 65 +2026-05-15T15:46:59+08:00 +2026/05/15 15:46:59.154, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.61, 64 +2026-05-15T15:47:04+08:00 +2026/05/15 15:47:04.179, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.23, 64 +2026-05-15T15:47:09+08:00 +2026/05/15 15:47:09.203, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 281.40, 58 +2026-05-15T15:47:14+08:00 +2026/05/15 15:47:14.257, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.68, 64 +2026-05-15T15:47:19+08:00 +2026/05/15 15:47:19.280, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.94, 63 +2026-05-15T15:47:24+08:00 +2026/05/15 15:47:24.306, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.66, 63 +2026-05-15T15:47:29+08:00 +2026/05/15 15:47:29.329, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.65, 64 +2026-05-15T15:47:34+08:00 +2026/05/15 15:47:34.354, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.00, 64 +2026-05-15T15:47:39+08:00 +2026/05/15 15:47:39.378, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.71, 64 +2026-05-15T15:47:44+08:00 +2026/05/15 15:47:44.402, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.08, 64 +2026-05-15T15:47:49+08:00 +2026/05/15 15:47:49.426, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.42, 62 +2026-05-15T15:47:54+08:00 +2026/05/15 15:47:54.449, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.69, 64 +2026-05-15T15:47:59+08:00 +2026/05/15 15:47:59.475, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.55, 64 +2026-05-15T15:48:04+08:00 +2026/05/15 15:48:04.499, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.59, 63 +2026-05-15T15:48:09+08:00 +2026/05/15 15:48:09.523, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.23, 64 +2026-05-15T15:48:14+08:00 +2026/05/15 15:48:14.547, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.91, 65 +2026-05-15T15:48:19+08:00 +2026/05/15 15:48:19.570, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.73, 64 +2026-05-15T15:48:24+08:00 +2026/05/15 15:48:24.596, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.35, 64 +2026-05-15T15:48:29+08:00 +2026/05/15 15:48:29.622, NVIDIA GeForce RTX 5090, 29, 10, 9607, 32607, 249.47, 63 +2026-05-15T15:48:34+08:00 +2026/05/15 15:48:34.646, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.43, 64 +2026-05-15T15:48:39+08:00 +2026/05/15 15:48:39.670, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.62, 64 +2026-05-15T15:48:44+08:00 +2026/05/15 15:48:44.694, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.52, 63 +2026-05-15T15:48:49+08:00 +2026/05/15 15:48:49.718, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.51, 64 +2026-05-15T15:48:54+08:00 +2026/05/15 15:48:54.743, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.47, 64 +2026-05-15T15:48:59+08:00 +2026/05/15 15:48:59.797, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.65, 64 +2026-05-15T15:49:04+08:00 +2026/05/15 15:49:04.821, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 362.70, 64 +2026-05-15T15:49:09+08:00 +2026/05/15 15:49:09.862, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.66, 64 +2026-05-15T15:49:14+08:00 +2026/05/15 15:49:14.931, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.44, 63 +2026-05-15T15:49:19+08:00 +2026/05/15 15:49:19.955, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.64, 64 +2026-05-15T15:49:24+08:00 +2026/05/15 15:49:25.002, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.68, 64 +2026-05-15T15:49:30+08:00 +2026/05/15 15:49:30.040, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.98, 65 +2026-05-15T15:49:35+08:00 +2026/05/15 15:49:35.080, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 362.85, 63 +2026-05-15T15:49:40+08:00 +2026/05/15 15:49:40.122, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.25, 64 +2026-05-15T15:49:45+08:00 +2026/05/15 15:49:45.146, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 296.20, 58 +2026-05-15T15:49:50+08:00 +2026/05/15 15:49:50.169, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.32, 64 +2026-05-15T15:49:55+08:00 +2026/05/15 15:49:55.192, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.75, 64 +2026-05-15T15:50:00+08:00 +2026/05/15 15:50:00.217, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.09, 63 +2026-05-15T15:50:05+08:00 +2026/05/15 15:50:05.241, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.44, 63 +2026-05-15T15:50:10+08:00 +2026/05/15 15:50:10.265, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.95, 64 +2026-05-15T15:50:15+08:00 +2026/05/15 15:50:15.289, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.90, 65 +2026-05-15T15:50:20+08:00 +2026/05/15 15:50:20.313, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 362.19, 65 +2026-05-15T15:50:25+08:00 +2026/05/15 15:50:25.340, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.88, 63 +2026-05-15T15:50:30+08:00 +2026/05/15 15:50:30.363, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.41, 64 +2026-05-15T15:50:35+08:00 +2026/05/15 15:50:35.386, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.13, 65 +2026-05-15T15:50:40+08:00 +2026/05/15 15:50:40.410, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.17, 64 +2026-05-15T15:50:45+08:00 +2026/05/15 15:50:45.436, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.98, 64 +2026-05-15T15:50:50+08:00 +2026/05/15 15:50:50.463, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.62, 65 +2026-05-15T15:50:55+08:00 +2026/05/15 15:50:55.487, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.14, 63 +2026-05-15T15:51:00+08:00 +2026/05/15 15:51:00.511, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.18, 64 +2026-05-15T15:51:05+08:00 +2026/05/15 15:51:05.534, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 356.73, 64 +2026-05-15T15:51:10+08:00 +2026/05/15 15:51:10.560, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.62, 63 +2026-05-15T15:51:15+08:00 +2026/05/15 15:51:15.583, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.11, 64 +2026-05-15T15:51:20+08:00 +2026/05/15 15:51:20.607, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.92, 65 +2026-05-15T15:51:25+08:00 +2026/05/15 15:51:25.630, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.47, 64 +2026-05-15T15:51:30+08:00 +2026/05/15 15:51:30.653, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.17, 64 +2026-05-15T15:51:35+08:00 +2026/05/15 15:51:35.676, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.30, 63 +2026-05-15T15:51:40+08:00 +2026/05/15 15:51:40.705, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 277.48, 64 +2026-05-15T15:51:45+08:00 +2026/05/15 15:51:45.734, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 352.82, 64 +2026-05-15T15:51:50+08:00 +2026/05/15 15:51:50.756, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.73, 64 +2026-05-15T15:51:55+08:00 +2026/05/15 15:51:55.781, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.82, 63 +2026-05-15T15:52:00+08:00 +2026/05/15 15:52:00.805, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.76, 63 +2026-05-15T15:52:05+08:00 +2026/05/15 15:52:05.830, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.94, 65 +2026-05-15T15:52:10+08:00 +2026/05/15 15:52:10.854, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.36, 64 +2026-05-15T15:52:15+08:00 +2026/05/15 15:52:15.880, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.77, 65 +2026-05-15T15:52:20+08:00 +2026/05/15 15:52:20.904, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.56, 62 +2026-05-15T15:52:25+08:00 +2026/05/15 15:52:25.927, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.56, 64 +2026-05-15T15:52:30+08:00 +2026/05/15 15:52:30.950, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.89, 65 +2026-05-15T15:52:35+08:00 +2026/05/15 15:52:35.973, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.45, 64 +2026-05-15T15:52:40+08:00 +2026/05/15 15:52:40.997, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 276.23, 63 +2026-05-15T15:52:46+08:00 +2026/05/15 15:52:46.021, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.26, 64 +2026-05-15T15:52:51+08:00 +2026/05/15 15:52:51.046, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.50, 63 +2026-05-15T15:52:56+08:00 +2026/05/15 15:52:56.069, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.33, 64 +2026-05-15T15:53:01+08:00 +2026/05/15 15:53:01.095, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.43, 64 +2026-05-15T15:53:06+08:00 +2026/05/15 15:53:06.130, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.30, 64 +2026-05-15T15:53:11+08:00 +2026/05/15 15:53:11.155, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.15, 63 +2026-05-15T15:53:16+08:00 +2026/05/15 15:53:16.180, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.26, 64 +2026-05-15T15:53:21+08:00 +2026/05/15 15:53:21.203, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.44, 65 +2026-05-15T15:53:26+08:00 +2026/05/15 15:53:26.227, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.05, 64 +2026-05-15T15:53:31+08:00 +2026/05/15 15:53:31.250, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.02, 63 +2026-05-15T15:53:36+08:00 +2026/05/15 15:53:36.271, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.09, 64 +2026-05-15T15:53:41+08:00 +2026/05/15 15:53:41.295, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.66, 64 +2026-05-15T15:53:46+08:00 +2026/05/15 15:53:46.318, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.27, 63 +2026-05-15T15:53:51+08:00 +2026/05/15 15:53:51.343, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.96, 64 +2026-05-15T15:53:56+08:00 +2026/05/15 15:53:56.366, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.89, 65 +2026-05-15T15:54:01+08:00 +2026/05/15 15:54:01.389, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.58, 64 +2026-05-15T15:54:06+08:00 +2026/05/15 15:54:06.413, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 363.11, 64 +2026-05-15T15:54:11+08:00 +2026/05/15 15:54:11.436, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.99, 62 +2026-05-15T15:54:16+08:00 +2026/05/15 15:54:16.458, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.46, 64 +2026-05-15T15:54:21+08:00 +2026/05/15 15:54:21.481, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.79, 64 +2026-05-15T15:54:26+08:00 +2026/05/15 15:54:26.505, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.54, 64 +2026-05-15T15:54:31+08:00 +2026/05/15 15:54:31.530, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.32, 64 +2026-05-15T15:54:36+08:00 +2026/05/15 15:54:36.557, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.42, 65 +2026-05-15T15:54:41+08:00 +2026/05/15 15:54:41.582, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.72, 64 +2026-05-15T15:54:46+08:00 +2026/05/15 15:54:46.605, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.52, 64 +2026-05-15T15:54:51+08:00 +2026/05/15 15:54:51.629, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.68, 64 +2026-05-15T15:54:56+08:00 +2026/05/15 15:54:56.652, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.43, 64 +2026-05-15T15:55:01+08:00 +2026/05/15 15:55:01.676, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 259.89, 63 +2026-05-15T15:55:06+08:00 +2026/05/15 15:55:06.704, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.80, 63 +2026-05-15T15:55:11+08:00 +2026/05/15 15:55:11.747, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.62, 63 +2026-05-15T15:55:16+08:00 +2026/05/15 15:55:16.806, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.02, 63 +2026-05-15T15:55:21+08:00 +2026/05/15 15:55:21.851, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.61, 63 +2026-05-15T15:55:26+08:00 +2026/05/15 15:55:26.874, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.04, 63 +2026-05-15T15:55:31+08:00 +2026/05/15 15:55:31.917, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 138.37, 62 +2026-05-15T15:55:36+08:00 +2026/05/15 15:55:36.941, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.23, 63 +2026-05-15T15:55:41+08:00 +2026/05/15 15:55:41.966, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.50, 63 +2026-05-15T15:55:46+08:00 +2026/05/15 15:55:46.990, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.02, 63 +2026-05-15T15:55:52+08:00 +2026/05/15 15:55:52.015, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.87, 63 +2026-05-15T15:55:57+08:00 +2026/05/15 15:55:57.041, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.01, 64 +2026-05-15T15:56:02+08:00 +2026/05/15 15:56:02.066, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.70, 64 +2026-05-15T15:56:07+08:00 +2026/05/15 15:56:07.091, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.96, 63 +2026-05-15T15:56:12+08:00 +2026/05/15 15:56:12.117, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 362.72, 64 +2026-05-15T15:56:17+08:00 +2026/05/15 15:56:17.140, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.08, 62 +2026-05-15T15:56:22+08:00 +2026/05/15 15:56:22.163, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.68, 63 +2026-05-15T15:56:27+08:00 +2026/05/15 15:56:27.189, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.51, 63 +2026-05-15T15:56:32+08:00 +2026/05/15 15:56:32.212, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.64, 62 +2026-05-15T15:56:37+08:00 +2026/05/15 15:56:37.236, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.64, 63 +2026-05-15T15:56:42+08:00 +2026/05/15 15:56:42.260, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.74, 63 +2026-05-15T15:56:47+08:00 +2026/05/15 15:56:47.284, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.62, 63 +2026-05-15T15:56:52+08:00 +2026/05/15 15:56:52.312, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 337.25, 63 +2026-05-15T15:56:57+08:00 +2026/05/15 15:56:57.336, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.12, 63 +2026-05-15T15:57:02+08:00 +2026/05/15 15:57:02.367, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.49, 64 +2026-05-15T15:57:07+08:00 +2026/05/15 15:57:07.391, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.06, 63 +2026-05-15T15:57:12+08:00 +2026/05/15 15:57:12.415, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.30, 64 +2026-05-15T15:57:17+08:00 +2026/05/15 15:57:17.456, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 259.35, 62 +2026-05-15T15:57:22+08:00 +2026/05/15 15:57:22.481, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.28, 63 +2026-05-15T15:57:27+08:00 +2026/05/15 15:57:27.505, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.45, 64 +2026-05-15T15:57:32+08:00 +2026/05/15 15:57:32.563, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.84, 63 +2026-05-15T15:57:37+08:00 +2026/05/15 15:57:37.587, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.11, 63 +2026-05-15T15:57:42+08:00 +2026/05/15 15:57:42.629, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.09, 63 +2026-05-15T15:57:47+08:00 +2026/05/15 15:57:47.653, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.98, 63 +2026-05-15T15:57:52+08:00 +2026/05/15 15:57:52.694, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.82, 64 +2026-05-15T15:57:57+08:00 +2026/05/15 15:57:57.736, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.65, 64 +2026-05-15T15:58:02+08:00 +2026/05/15 15:58:02.788, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 363.41, 64 +2026-05-15T15:58:07+08:00 +2026/05/15 15:58:07.813, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.37, 64 +2026-05-15T15:58:12+08:00 +2026/05/15 15:58:12.853, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.75, 64 +2026-05-15T15:58:17+08:00 +2026/05/15 15:58:17.895, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.86, 63 +2026-05-15T15:58:22+08:00 +2026/05/15 15:58:22.936, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.68, 64 +2026-05-15T15:58:27+08:00 +2026/05/15 15:58:27.981, NVIDIA GeForce RTX 5090, 88, 39, 9607, 32607, 362.54, 64 +2026-05-15T15:58:32+08:00 +2026/05/15 15:58:33.005, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.04, 64 +2026-05-15T15:58:38+08:00 +2026/05/15 15:58:38.033, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.53, 63 +2026-05-15T15:58:43+08:00 +2026/05/15 15:58:43.057, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.41, 64 +2026-05-15T15:58:48+08:00 +2026/05/15 15:58:48.084, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 255.97, 63 +2026-05-15T15:58:53+08:00 +2026/05/15 15:58:53.108, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.69, 62 +2026-05-15T15:58:58+08:00 +2026/05/15 15:58:58.132, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.91, 64 +2026-05-15T15:59:03+08:00 +2026/05/15 15:59:03.156, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.06, 64 +2026-05-15T15:59:08+08:00 +2026/05/15 15:59:08.180, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.64, 64 +2026-05-15T15:59:13+08:00 +2026/05/15 15:59:13.206, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.67, 63 +2026-05-15T15:59:18+08:00 +2026/05/15 15:59:18.230, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.31, 64 +2026-05-15T15:59:23+08:00 +2026/05/15 15:59:23.254, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.67, 65 +2026-05-15T15:59:28+08:00 +2026/05/15 15:59:28.282, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.07, 64 +2026-05-15T15:59:33+08:00 +2026/05/15 15:59:33.306, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.88, 64 +2026-05-15T15:59:38+08:00 +2026/05/15 15:59:38.329, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.71, 64 +2026-05-15T15:59:43+08:00 +2026/05/15 15:59:43.353, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.75, 63 +2026-05-15T15:59:48+08:00 +2026/05/15 15:59:48.376, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.28, 63 +2026-05-15T15:59:53+08:00 +2026/05/15 15:59:53.400, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.51, 63 +2026-05-15T15:59:58+08:00 +2026/05/15 15:59:58.423, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.16, 63 +2026-05-15T16:00:03+08:00 +2026/05/15 16:00:03.447, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.92, 64 +2026-05-15T16:00:08+08:00 +2026/05/15 16:00:08.472, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.57, 64 +2026-05-15T16:00:13+08:00 +2026/05/15 16:00:13.495, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.67, 62 +2026-05-15T16:00:18+08:00 +2026/05/15 16:00:18.518, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.08, 64 +2026-05-15T16:00:23+08:00 +2026/05/15 16:00:23.541, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.45, 64 +2026-05-15T16:00:28+08:00 +2026/05/15 16:00:28.563, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 362.34, 63 +2026-05-15T16:00:33+08:00 +2026/05/15 16:00:33.587, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 362.81, 63 +2026-05-15T16:00:38+08:00 +2026/05/15 16:00:38.614, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.88, 63 +2026-05-15T16:00:43+08:00 +2026/05/15 16:00:43.640, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.18, 64 +2026-05-15T16:00:48+08:00 +2026/05/15 16:00:48.669, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.16, 64 +2026-05-15T16:00:53+08:00 +2026/05/15 16:00:53.694, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.25, 64 +2026-05-15T16:00:58+08:00 +2026/05/15 16:00:58.718, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.37, 63 +2026-05-15T16:01:03+08:00 +2026/05/15 16:01:03.743, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.34, 64 +2026-05-15T16:01:08+08:00 +2026/05/15 16:01:08.767, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.39, 64 +2026-05-15T16:01:13+08:00 +2026/05/15 16:01:13.790, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 363.42, 64 +2026-05-15T16:01:18+08:00 +2026/05/15 16:01:18.815, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.38, 64 +2026-05-15T16:01:23+08:00 +2026/05/15 16:01:23.837, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.07, 63 +2026-05-15T16:01:28+08:00 +2026/05/15 16:01:28.861, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.88, 63 +2026-05-15T16:01:33+08:00 +2026/05/15 16:01:33.885, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.77, 62 +2026-05-15T16:01:38+08:00 +2026/05/15 16:01:38.912, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.45, 63 +2026-05-15T16:01:43+08:00 +2026/05/15 16:01:43.935, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.35, 64 +2026-05-15T16:01:48+08:00 +2026/05/15 16:01:48.959, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.40, 64 +2026-05-15T16:01:53+08:00 +2026/05/15 16:01:53.985, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.70, 63 +2026-05-15T16:01:58+08:00 +2026/05/15 16:01:59.008, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.18, 63 +2026-05-15T16:02:04+08:00 +2026/05/15 16:02:04.032, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.55, 63 +2026-05-15T16:02:09+08:00 +2026/05/15 16:02:09.055, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.00, 64 +2026-05-15T16:02:14+08:00 +2026/05/15 16:02:14.079, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.08, 64 +2026-05-15T16:02:19+08:00 +2026/05/15 16:02:19.103, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.06, 64 +2026-05-15T16:02:24+08:00 +2026/05/15 16:02:24.127, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.24, 64 +2026-05-15T16:02:29+08:00 +2026/05/15 16:02:29.158, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.29, 64 +2026-05-15T16:02:34+08:00 +2026/05/15 16:02:34.181, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.60, 64 +2026-05-15T16:02:39+08:00 +2026/05/15 16:02:39.207, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.29, 64 +2026-05-15T16:02:44+08:00 +2026/05/15 16:02:44.231, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 257.08, 61 +2026-05-15T16:02:49+08:00 +2026/05/15 16:02:49.256, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.76, 62 +2026-05-15T16:02:54+08:00 +2026/05/15 16:02:54.279, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.35, 64 +2026-05-15T16:02:59+08:00 +2026/05/15 16:02:59.303, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.49, 64 +2026-05-15T16:03:04+08:00 +2026/05/15 16:03:04.331, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.48, 64 +2026-05-15T16:03:09+08:00 +2026/05/15 16:03:09.354, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.35, 64 +2026-05-15T16:03:14+08:00 +2026/05/15 16:03:14.381, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.01, 64 +2026-05-15T16:03:19+08:00 +2026/05/15 16:03:19.404, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.78, 63 +2026-05-15T16:03:24+08:00 +2026/05/15 16:03:24.429, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.53, 64 +2026-05-15T16:03:29+08:00 +2026/05/15 16:03:29.453, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.42, 63 +2026-05-15T16:03:34+08:00 +2026/05/15 16:03:34.481, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.68, 63 +2026-05-15T16:03:39+08:00 +2026/05/15 16:03:39.505, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.49, 64 +2026-05-15T16:03:44+08:00 +2026/05/15 16:03:44.530, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.51, 64 +2026-05-15T16:03:49+08:00 +2026/05/15 16:03:49.557, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.61, 64 +2026-05-15T16:03:54+08:00 +2026/05/15 16:03:54.583, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.78, 64 +2026-05-15T16:03:59+08:00 +2026/05/15 16:03:59.610, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 252.93, 62 +2026-05-15T16:04:04+08:00 +2026/05/15 16:04:04.634, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.92, 62 +2026-05-15T16:04:09+08:00 +2026/05/15 16:04:09.659, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.68, 63 +2026-05-15T16:04:14+08:00 +2026/05/15 16:04:14.685, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.23, 63 +2026-05-15T16:04:19+08:00 +2026/05/15 16:04:19.714, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.49, 63 +2026-05-15T16:04:24+08:00 +2026/05/15 16:04:24.739, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.26, 62 +2026-05-15T16:04:29+08:00 +2026/05/15 16:04:29.763, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.66, 63 +2026-05-15T16:04:34+08:00 +2026/05/15 16:04:34.788, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.07, 64 +2026-05-15T16:04:39+08:00 +2026/05/15 16:04:39.810, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.60, 64 +2026-05-15T16:04:44+08:00 +2026/05/15 16:04:44.832, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.44, 64 +2026-05-15T16:04:49+08:00 +2026/05/15 16:04:49.862, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.44, 64 +2026-05-15T16:04:54+08:00 +2026/05/15 16:04:54.889, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.48, 64 +2026-05-15T16:04:59+08:00 +2026/05/15 16:04:59.911, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.01, 64 +2026-05-15T16:05:04+08:00 +2026/05/15 16:05:04.938, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.20, 63 +2026-05-15T16:05:09+08:00 +2026/05/15 16:05:09.961, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.97, 64 +2026-05-15T16:05:14+08:00 +2026/05/15 16:05:14.985, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.96, 64 +2026-05-15T16:05:19+08:00 +2026/05/15 16:05:20.007, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.23, 64 +2026-05-15T16:05:25+08:00 +2026/05/15 16:05:25.034, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.93, 64 +2026-05-15T16:05:30+08:00 +2026/05/15 16:05:30.064, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.53, 64 +2026-05-15T16:05:35+08:00 +2026/05/15 16:05:35.087, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.60, 64 +2026-05-15T16:05:40+08:00 +2026/05/15 16:05:40.112, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.11, 65 +2026-05-15T16:05:45+08:00 +2026/05/15 16:05:45.135, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.41, 64 +2026-05-15T16:05:50+08:00 +2026/05/15 16:05:50.157, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.48, 64 +2026-05-15T16:05:55+08:00 +2026/05/15 16:05:55.183, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.20, 64 +2026-05-15T16:06:00+08:00 +2026/05/15 16:06:00.205, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.24, 64 +2026-05-15T16:06:05+08:00 +2026/05/15 16:06:05.230, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.73, 64 +2026-05-15T16:06:10+08:00 +2026/05/15 16:06:10.253, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.75, 64 +2026-05-15T16:06:15+08:00 +2026/05/15 16:06:15.278, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.02, 64 +2026-05-15T16:06:20+08:00 +2026/05/15 16:06:20.299, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.28, 64 +2026-05-15T16:06:25+08:00 +2026/05/15 16:06:25.322, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.55, 64 +2026-05-15T16:06:30+08:00 +2026/05/15 16:06:30.347, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.83, 65 +2026-05-15T16:06:35+08:00 +2026/05/15 16:06:35.370, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 358.90, 63 +2026-05-15T16:06:40+08:00 +2026/05/15 16:06:40.396, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 205.58, 63 +2026-05-15T16:06:45+08:00 +2026/05/15 16:06:45.418, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.73, 63 +2026-05-15T16:06:50+08:00 +2026/05/15 16:06:50.442, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.46, 63 +2026-05-15T16:06:55+08:00 +2026/05/15 16:06:55.465, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.78, 63 +2026-05-15T16:07:00+08:00 +2026/05/15 16:07:00.492, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.04, 63 +2026-05-15T16:07:05+08:00 +2026/05/15 16:07:05.519, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.22, 63 +2026-05-15T16:07:10+08:00 +2026/05/15 16:07:10.541, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 360.78, 63 +2026-05-15T16:07:15+08:00 +2026/05/15 16:07:15.567, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.01, 64 +2026-05-15T16:07:20+08:00 +2026/05/15 16:07:20.590, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.70, 65 +2026-05-15T16:07:25+08:00 +2026/05/15 16:07:25.615, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.74, 64 +2026-05-15T16:07:30+08:00 +2026/05/15 16:07:30.640, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.59, 64 +2026-05-15T16:07:35+08:00 +2026/05/15 16:07:35.664, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.53, 64 +2026-05-15T16:07:40+08:00 +2026/05/15 16:07:40.688, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.21, 64 +2026-05-15T16:07:45+08:00 +2026/05/15 16:07:45.712, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.81, 63 +2026-05-15T16:07:50+08:00 +2026/05/15 16:07:50.735, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.88, 63 +2026-05-15T16:07:55+08:00 +2026/05/15 16:07:55.759, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.34, 63 +2026-05-15T16:08:00+08:00 +2026/05/15 16:08:00.783, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.08, 62 +2026-05-15T16:08:05+08:00 +2026/05/15 16:08:05.808, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.44, 63 +2026-05-15T16:08:10+08:00 +2026/05/15 16:08:10.834, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.52, 63 +2026-05-15T16:08:15+08:00 +2026/05/15 16:08:15.858, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.94, 64 +2026-05-15T16:08:20+08:00 +2026/05/15 16:08:20.884, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.39, 64 +2026-05-15T16:08:25+08:00 +2026/05/15 16:08:25.907, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 362.58, 64 +2026-05-15T16:08:30+08:00 +2026/05/15 16:08:30.930, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.14, 64 +2026-05-15T16:08:35+08:00 +2026/05/15 16:08:35.955, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.17, 64 +2026-05-15T16:08:40+08:00 +2026/05/15 16:08:40.980, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.22, 64 +2026-05-15T16:08:45+08:00 +2026/05/15 16:08:46.004, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.46, 64 +2026-05-15T16:08:51+08:00 +2026/05/15 16:08:51.029, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.30, 64 +2026-05-15T16:08:56+08:00 +2026/05/15 16:08:56.052, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.61, 63 +2026-05-15T16:09:01+08:00 +2026/05/15 16:09:01.075, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.63, 63 +2026-05-15T16:09:06+08:00 +2026/05/15 16:09:06.099, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 345.04, 64 +2026-05-15T16:09:11+08:00 +2026/05/15 16:09:11.124, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 363.25, 64 +2026-05-15T16:09:16+08:00 +2026/05/15 16:09:16.148, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.90, 63 +2026-05-15T16:09:21+08:00 +2026/05/15 16:09:21.173, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.49, 63 +2026-05-15T16:09:26+08:00 +2026/05/15 16:09:26.196, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.82, 64 +2026-05-15T16:09:31+08:00 +2026/05/15 16:09:31.219, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 363.26, 64 +2026-05-15T16:09:36+08:00 +2026/05/15 16:09:36.244, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.96, 64 +2026-05-15T16:09:41+08:00 +2026/05/15 16:09:41.268, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.14, 63 +2026-05-15T16:09:46+08:00 +2026/05/15 16:09:46.292, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.22, 64 +2026-05-15T16:09:51+08:00 +2026/05/15 16:09:51.334, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.72, 64 +2026-05-15T16:09:56+08:00 +2026/05/15 16:09:56.385, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.78, 64 +2026-05-15T16:10:01+08:00 +2026/05/15 16:10:01.409, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 361.87, 64 +2026-05-15T16:10:06+08:00 +2026/05/15 16:10:06.450, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.81, 64 +2026-05-15T16:10:11+08:00 +2026/05/15 16:10:11.477, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.27, 63 +2026-05-15T16:10:16+08:00 +2026/05/15 16:10:16.507, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.97, 64 +2026-05-15T16:10:21+08:00 +2026/05/15 16:10:21.529, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 246.58, 63 +2026-05-15T16:10:26+08:00 +2026/05/15 16:10:26.551, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 352.01, 64 +2026-05-15T16:10:31+08:00 +2026/05/15 16:10:31.576, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.46, 64 +2026-05-15T16:10:36+08:00 +2026/05/15 16:10:36.598, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.35, 63 +2026-05-15T16:10:41+08:00 +2026/05/15 16:10:41.620, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.68, 63 +2026-05-15T16:10:46+08:00 +2026/05/15 16:10:46.641, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.29, 64 +2026-05-15T16:10:51+08:00 +2026/05/15 16:10:51.671, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.55, 64 +2026-05-15T16:10:56+08:00 +2026/05/15 16:10:56.696, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.64, 64 +2026-05-15T16:11:01+08:00 +2026/05/15 16:11:01.719, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.73, 64 +2026-05-15T16:11:06+08:00 +2026/05/15 16:11:06.742, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.43, 64 +2026-05-15T16:11:11+08:00 +2026/05/15 16:11:11.767, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.82, 64 +2026-05-15T16:11:16+08:00 +2026/05/15 16:11:16.792, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.13, 63 +2026-05-15T16:11:21+08:00 +2026/05/15 16:11:21.818, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.39, 63 +2026-05-15T16:11:26+08:00 +2026/05/15 16:11:26.842, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.58, 63 +2026-05-15T16:11:31+08:00 +2026/05/15 16:11:31.865, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.42, 65 +2026-05-15T16:11:36+08:00 +2026/05/15 16:11:36.888, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 247.09, 63 +2026-05-15T16:11:41+08:00 +2026/05/15 16:11:41.913, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.29, 64 +2026-05-15T16:11:46+08:00 +2026/05/15 16:11:46.936, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.47, 64 +2026-05-15T16:11:51+08:00 +2026/05/15 16:11:51.957, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.25, 64 +2026-05-15T16:11:56+08:00 +2026/05/15 16:11:56.980, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.78, 65 +2026-05-15T16:12:01+08:00 +2026/05/15 16:12:02.004, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.11, 64 +2026-05-15T16:12:07+08:00 +2026/05/15 16:12:07.027, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.27, 64 +2026-05-15T16:12:12+08:00 +2026/05/15 16:12:12.050, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.89, 64 +2026-05-15T16:12:17+08:00 +2026/05/15 16:12:17.076, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.16, 63 +2026-05-15T16:12:22+08:00 +2026/05/15 16:12:22.100, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.86, 63 +2026-05-15T16:12:27+08:00 +2026/05/15 16:12:27.124, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.56, 65 +2026-05-15T16:12:32+08:00 +2026/05/15 16:12:32.179, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 362.47, 64 +2026-05-15T16:12:37+08:00 +2026/05/15 16:12:37.202, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.94, 63 +2026-05-15T16:12:42+08:00 +2026/05/15 16:12:42.260, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.64, 63 +2026-05-15T16:12:47+08:00 +2026/05/15 16:12:47.284, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.89, 64 +2026-05-15T16:12:52+08:00 +2026/05/15 16:12:52.338, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.31, 63 +2026-05-15T16:12:57+08:00 +2026/05/15 16:12:57.360, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.60, 64 +2026-05-15T16:13:02+08:00 +2026/05/15 16:13:02.385, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.74, 63 +2026-05-15T16:13:07+08:00 +2026/05/15 16:13:07.410, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.15, 63 +2026-05-15T16:13:12+08:00 +2026/05/15 16:13:12.435, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.62, 64 +2026-05-15T16:13:17+08:00 +2026/05/15 16:13:17.459, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.69, 64 +2026-05-15T16:13:22+08:00 +2026/05/15 16:13:22.482, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 362.98, 64 +2026-05-15T16:13:27+08:00 +2026/05/15 16:13:27.505, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.32, 62 +2026-05-15T16:13:32+08:00 +2026/05/15 16:13:32.528, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.37, 64 +2026-05-15T16:13:37+08:00 +2026/05/15 16:13:37.551, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 361.57, 63 +2026-05-15T16:13:42+08:00 +2026/05/15 16:13:42.577, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.67, 63 +2026-05-15T16:13:47+08:00 +2026/05/15 16:13:47.604, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.63, 64 +2026-05-15T16:13:52+08:00 +2026/05/15 16:13:52.625, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.08, 64 +2026-05-15T16:13:57+08:00 +2026/05/15 16:13:57.653, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.55, 64 +2026-05-15T16:14:02+08:00 +2026/05/15 16:14:02.679, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 362.40, 64 +2026-05-15T16:14:07+08:00 +2026/05/15 16:14:07.702, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.84, 63 +2026-05-15T16:14:12+08:00 +2026/05/15 16:14:12.745, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 252.57, 63 +2026-05-15T16:14:17+08:00 +2026/05/15 16:14:17.769, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.89, 64 +2026-05-15T16:14:22+08:00 +2026/05/15 16:14:22.795, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.50, 63 +2026-05-15T16:14:27+08:00 +2026/05/15 16:14:27.836, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.53, 63 +2026-05-15T16:14:32+08:00 +2026/05/15 16:14:32.878, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.46, 64 +2026-05-15T16:14:37+08:00 +2026/05/15 16:14:37.901, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.09, 64 +2026-05-15T16:14:42+08:00 +2026/05/15 16:14:42.926, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.35, 64 +2026-05-15T16:14:47+08:00 +2026/05/15 16:14:47.967, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.69, 64 +2026-05-15T16:14:52+08:00 +2026/05/15 16:14:52.991, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.08, 64 +2026-05-15T16:14:58+08:00 +2026/05/15 16:14:58.033, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 272.91, 63 +2026-05-15T16:15:03+08:00 +2026/05/15 16:15:03.078, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 363.28, 64 +2026-05-15T16:15:08+08:00 +2026/05/15 16:15:08.102, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.61, 64 +2026-05-15T16:15:13+08:00 +2026/05/15 16:15:13.125, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.84, 64 +2026-05-15T16:15:18+08:00 +2026/05/15 16:15:18.174, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.45, 64 +2026-05-15T16:15:23+08:00 +2026/05/15 16:15:23.198, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.95, 64 +2026-05-15T16:15:28+08:00 +2026/05/15 16:15:28.240, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.95, 64 +2026-05-15T16:15:33+08:00 +2026/05/15 16:15:33.282, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.90, 64 +2026-05-15T16:15:38+08:00 +2026/05/15 16:15:38.324, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.36, 63 +2026-05-15T16:15:43+08:00 +2026/05/15 16:15:43.394, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.97, 63 +2026-05-15T16:15:48+08:00 +2026/05/15 16:15:48.418, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.88, 63 +2026-05-15T16:15:53+08:00 +2026/05/15 16:15:53.460, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.25, 64 +2026-05-15T16:15:58+08:00 +2026/05/15 16:15:58.484, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.84, 65 +2026-05-15T16:16:03+08:00 +2026/05/15 16:16:03.507, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.73, 63 +2026-05-15T16:16:08+08:00 +2026/05/15 16:16:08.530, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 355.26, 63 +2026-05-15T16:16:13+08:00 +2026/05/15 16:16:13.554, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.40, 63 +2026-05-15T16:16:18+08:00 +2026/05/15 16:16:18.579, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.24, 64 +2026-05-15T16:16:23+08:00 +2026/05/15 16:16:23.603, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 361.76, 63 +2026-05-15T16:16:28+08:00 +2026/05/15 16:16:28.630, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 360.87, 64 +2026-05-15T16:16:33+08:00 +2026/05/15 16:16:33.655, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.05, 64 +2026-05-15T16:16:38+08:00 +2026/05/15 16:16:38.679, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.61, 64 +2026-05-15T16:16:43+08:00 +2026/05/15 16:16:43.702, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.91, 64 +2026-05-15T16:16:48+08:00 +2026/05/15 16:16:48.726, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 261.50, 57 +2026-05-15T16:16:53+08:00 +2026/05/15 16:16:53.749, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.20, 63 +2026-05-15T16:16:58+08:00 +2026/05/15 16:16:58.774, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.63, 64 +2026-05-15T16:17:03+08:00 +2026/05/15 16:17:03.802, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.57, 64 +2026-05-15T16:17:08+08:00 +2026/05/15 16:17:08.829, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.94, 63 +2026-05-15T16:17:13+08:00 +2026/05/15 16:17:13.854, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.63, 63 +2026-05-15T16:17:18+08:00 +2026/05/15 16:17:18.878, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.04, 63 +2026-05-15T16:17:23+08:00 +2026/05/15 16:17:23.906, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.87, 63 +2026-05-15T16:17:28+08:00 +2026/05/15 16:17:28.928, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.69, 62 +2026-05-15T16:17:33+08:00 +2026/05/15 16:17:33.953, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.23, 63 +2026-05-15T16:17:38+08:00 +2026/05/15 16:17:38.978, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.94, 63 +2026-05-15T16:17:43+08:00 +2026/05/15 16:17:44.002, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.32, 63 +2026-05-15T16:17:49+08:00 +2026/05/15 16:17:49.027, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.88, 62 +2026-05-15T16:17:54+08:00 +2026/05/15 16:17:54.051, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.21, 64 +2026-05-15T16:17:59+08:00 +2026/05/15 16:17:59.075, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.07, 63 +2026-05-15T16:18:04+08:00 +2026/05/15 16:18:04.098, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 361.63, 63 +2026-05-15T16:18:09+08:00 +2026/05/15 16:18:09.126, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.73, 62 +2026-05-15T16:18:14+08:00 +2026/05/15 16:18:14.152, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.49, 63 +2026-05-15T16:18:19+08:00 +2026/05/15 16:18:19.176, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.77, 63 +2026-05-15T16:18:24+08:00 +2026/05/15 16:18:24.200, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.32, 63 +2026-05-15T16:18:29+08:00 +2026/05/15 16:18:29.222, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.05, 64 +2026-05-15T16:18:34+08:00 +2026/05/15 16:18:34.246, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.18, 62 +2026-05-15T16:18:39+08:00 +2026/05/15 16:18:39.270, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.58, 64 +2026-05-15T16:18:44+08:00 +2026/05/15 16:18:44.295, NVIDIA GeForce RTX 5090, 28, 10, 9607, 32607, 247.48, 63 +2026-05-15T16:18:49+08:00 +2026/05/15 16:18:49.319, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.87, 64 +2026-05-15T16:18:54+08:00 +2026/05/15 16:18:54.344, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 258.05, 57 +2026-05-15T16:18:59+08:00 +2026/05/15 16:18:59.366, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.35, 64 +2026-05-15T16:19:04+08:00 +2026/05/15 16:19:04.389, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 361.93, 64 +2026-05-15T16:19:09+08:00 +2026/05/15 16:19:09.419, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 362.16, 63 +2026-05-15T16:19:14+08:00 +2026/05/15 16:19:14.447, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.07, 63 +2026-05-15T16:19:19+08:00 +2026/05/15 16:19:19.470, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.26, 63 +2026-05-15T16:19:24+08:00 +2026/05/15 16:19:24.493, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 335.64, 64 +2026-05-15T16:19:29+08:00 +2026/05/15 16:19:29.519, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.62, 63 +2026-05-15T16:19:34+08:00 +2026/05/15 16:19:34.542, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.59, 62 +2026-05-15T16:19:39+08:00 +2026/05/15 16:19:39.566, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.64, 64 +2026-05-15T16:19:44+08:00 +2026/05/15 16:19:44.594, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.41, 65 +2026-05-15T16:19:49+08:00 +2026/05/15 16:19:49.619, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.60, 64 +2026-05-15T16:19:54+08:00 +2026/05/15 16:19:54.646, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.82, 64 +2026-05-15T16:19:59+08:00 +2026/05/15 16:19:59.670, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.42, 64 +2026-05-15T16:20:04+08:00 +2026/05/15 16:20:04.694, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 360.15, 63 +2026-05-15T16:20:09+08:00 +2026/05/15 16:20:09.747, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.14, 63 +2026-05-15T16:20:14+08:00 +2026/05/15 16:20:14.771, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.49, 63 +2026-05-15T16:20:19+08:00 +2026/05/15 16:20:19.813, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.69, 64 +2026-05-15T16:20:24+08:00 +2026/05/15 16:20:24.853, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.10, 64 +2026-05-15T16:20:29+08:00 +2026/05/15 16:20:29.895, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.57, 64 +2026-05-15T16:20:34+08:00 +2026/05/15 16:20:34.946, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.40, 64 +2026-05-15T16:20:39+08:00 +2026/05/15 16:20:39.971, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 247.75, 63 +2026-05-15T16:20:44+08:00 +2026/05/15 16:20:44.997, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.56, 64 +2026-05-15T16:20:50+08:00 +2026/05/15 16:20:50.041, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.75, 64 +2026-05-15T16:20:55+08:00 +2026/05/15 16:20:55.095, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 362.88, 64 +2026-05-15T16:21:00+08:00 +2026/05/15 16:21:00.120, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.23, 64 +2026-05-15T16:21:05+08:00 +2026/05/15 16:21:05.172, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.56, 64 +2026-05-15T16:21:10+08:00 +2026/05/15 16:21:10.227, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.05, 63 +2026-05-15T16:21:15+08:00 +2026/05/15 16:21:15.265, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.86, 64 +2026-05-15T16:21:20+08:00 +2026/05/15 16:21:20.289, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.87, 62 +2026-05-15T16:21:25+08:00 +2026/05/15 16:21:25.338, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.26, 64 +2026-05-15T16:21:30+08:00 +2026/05/15 16:21:30.363, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.80, 64 +2026-05-15T16:21:35+08:00 +2026/05/15 16:21:35.403, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.95, 64 +2026-05-15T16:21:40+08:00 +2026/05/15 16:21:40.446, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.38, 64 +2026-05-15T16:21:45+08:00 +2026/05/15 16:21:45.472, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.34, 64 +2026-05-15T16:21:50+08:00 +2026/05/15 16:21:50.497, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.18, 64 +2026-05-15T16:21:55+08:00 +2026/05/15 16:21:55.520, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.42, 65 +2026-05-15T16:22:00+08:00 +2026/05/15 16:22:00.544, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.70, 64 +2026-05-15T16:22:05+08:00 +2026/05/15 16:22:05.574, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.83, 64 +2026-05-15T16:22:10+08:00 +2026/05/15 16:22:10.597, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.84, 64 +2026-05-15T16:22:15+08:00 +2026/05/15 16:22:15.621, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.89, 63 +2026-05-15T16:22:20+08:00 +2026/05/15 16:22:20.646, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 207.98, 63 +2026-05-15T16:22:25+08:00 +2026/05/15 16:22:25.670, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.07, 64 +2026-05-15T16:22:30+08:00 +2026/05/15 16:22:30.693, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.53, 64 +2026-05-15T16:22:35+08:00 +2026/05/15 16:22:35.718, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.58, 63 +2026-05-15T16:22:40+08:00 +2026/05/15 16:22:40.742, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.32, 63 +2026-05-15T16:22:45+08:00 +2026/05/15 16:22:45.765, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.07, 63 +2026-05-15T16:22:50+08:00 +2026/05/15 16:22:50.792, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.26, 64 +2026-05-15T16:22:55+08:00 +2026/05/15 16:22:55.813, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.85, 64 +2026-05-15T16:23:00+08:00 +2026/05/15 16:23:00.837, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.00, 64 +2026-05-15T16:23:05+08:00 +2026/05/15 16:23:05.861, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.31, 63 +2026-05-15T16:23:10+08:00 +2026/05/15 16:23:10.886, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 245.33, 64 +2026-05-15T16:23:15+08:00 +2026/05/15 16:23:15.911, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.54, 64 +2026-05-15T16:23:20+08:00 +2026/05/15 16:23:20.936, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.30, 64 +2026-05-15T16:23:25+08:00 +2026/05/15 16:23:25.960, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.11, 64 +2026-05-15T16:23:30+08:00 +2026/05/15 16:23:30.986, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.57, 64 +2026-05-15T16:23:35+08:00 +2026/05/15 16:23:36.010, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.88, 64 +2026-05-15T16:23:41+08:00 +2026/05/15 16:23:41.033, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.39, 63 +2026-05-15T16:23:46+08:00 +2026/05/15 16:23:46.057, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.24, 63 +2026-05-15T16:23:51+08:00 +2026/05/15 16:23:51.082, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 246.61, 63 +2026-05-15T16:23:56+08:00 +2026/05/15 16:23:56.109, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.69, 64 +2026-05-15T16:24:01+08:00 +2026/05/15 16:24:01.133, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.24, 64 +2026-05-15T16:24:06+08:00 +2026/05/15 16:24:06.158, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.46, 64 +2026-05-15T16:24:11+08:00 +2026/05/15 16:24:11.183, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.13, 64 +2026-05-15T16:24:16+08:00 +2026/05/15 16:24:16.207, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.62, 64 +2026-05-15T16:24:21+08:00 +2026/05/15 16:24:21.230, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.51, 65 +2026-05-15T16:24:26+08:00 +2026/05/15 16:24:26.257, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.20, 64 +2026-05-15T16:24:31+08:00 +2026/05/15 16:24:31.289, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.93, 64 +2026-05-15T16:24:36+08:00 +2026/05/15 16:24:36.314, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.06, 64 +2026-05-15T16:24:41+08:00 +2026/05/15 16:24:41.342, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 359.61, 64 +2026-05-15T16:24:46+08:00 +2026/05/15 16:24:46.366, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.54, 63 +2026-05-15T16:24:51+08:00 +2026/05/15 16:24:51.390, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.31, 64 +2026-05-15T16:24:56+08:00 +2026/05/15 16:24:56.412, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 340.55, 60 +2026-05-15T16:25:01+08:00 +2026/05/15 16:25:01.438, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.43, 63 +2026-05-15T16:25:06+08:00 +2026/05/15 16:25:06.463, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.16, 63 +2026-05-15T16:25:11+08:00 +2026/05/15 16:25:11.488, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.07, 63 +2026-05-15T16:25:16+08:00 +2026/05/15 16:25:16.513, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.33, 64 +2026-05-15T16:25:21+08:00 +2026/05/15 16:25:21.538, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.23, 63 +2026-05-15T16:25:26+08:00 +2026/05/15 16:25:26.563, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.70, 63 +2026-05-15T16:25:31+08:00 +2026/05/15 16:25:31.587, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.13, 63 +2026-05-15T16:25:36+08:00 +2026/05/15 16:25:36.616, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.97, 62 +2026-05-15T16:25:41+08:00 +2026/05/15 16:25:41.642, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.69, 63 +2026-05-15T16:25:46+08:00 +2026/05/15 16:25:46.666, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 298.83, 63 +2026-05-15T16:25:51+08:00 +2026/05/15 16:25:51.690, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.08, 64 +2026-05-15T16:25:56+08:00 +2026/05/15 16:25:56.714, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.54, 64 +2026-05-15T16:26:01+08:00 +2026/05/15 16:26:01.738, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.51, 64 +2026-05-15T16:26:06+08:00 +2026/05/15 16:26:06.762, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.77, 64 +2026-05-15T16:26:11+08:00 +2026/05/15 16:26:11.786, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.37, 63 +2026-05-15T16:26:16+08:00 +2026/05/15 16:26:16.810, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.30, 64 +2026-05-15T16:26:21+08:00 +2026/05/15 16:26:21.835, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.49, 64 +2026-05-15T16:26:26+08:00 +2026/05/15 16:26:26.864, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.52, 63 +2026-05-15T16:26:31+08:00 +2026/05/15 16:26:31.889, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.50, 64 +2026-05-15T16:26:36+08:00 +2026/05/15 16:26:36.913, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.86, 63 +2026-05-15T16:26:41+08:00 +2026/05/15 16:26:41.936, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.16, 63 +2026-05-15T16:26:46+08:00 +2026/05/15 16:26:46.959, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.67, 63 +2026-05-15T16:26:51+08:00 +2026/05/15 16:26:51.985, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.50, 63 +2026-05-15T16:26:56+08:00 +2026/05/15 16:26:57.011, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.39, 63 +2026-05-15T16:27:02+08:00 +2026/05/15 16:27:02.036, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.73, 63 +2026-05-15T16:27:07+08:00 +2026/05/15 16:27:07.060, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 249.09, 63 +2026-05-15T16:27:12+08:00 +2026/05/15 16:27:12.089, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 362.61, 63 +2026-05-15T16:27:17+08:00 +2026/05/15 16:27:17.112, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.38, 63 +2026-05-15T16:27:22+08:00 +2026/05/15 16:27:22.148, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.08, 63 +2026-05-15T16:27:27+08:00 +2026/05/15 16:27:27.172, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.72, 64 +2026-05-15T16:27:32+08:00 +2026/05/15 16:27:32.213, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.02, 64 +2026-05-15T16:27:37+08:00 +2026/05/15 16:27:37.237, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.85, 64 +2026-05-15T16:27:42+08:00 +2026/05/15 16:27:42.263, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.13, 64 +2026-05-15T16:27:47+08:00 +2026/05/15 16:27:47.288, NVIDIA GeForce RTX 5090, 52, 19, 9607, 32607, 351.55, 62 +2026-05-15T16:27:52+08:00 +2026/05/15 16:27:52.310, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.91, 64 +2026-05-15T16:27:57+08:00 +2026/05/15 16:27:57.334, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.53, 63 +2026-05-15T16:28:02+08:00 +2026/05/15 16:28:02.357, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.61, 63 +2026-05-15T16:28:07+08:00 +2026/05/15 16:28:07.382, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.56, 64 +2026-05-15T16:28:12+08:00 +2026/05/15 16:28:12.410, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.20, 64 +2026-05-15T16:28:17+08:00 +2026/05/15 16:28:17.433, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.15, 64 +2026-05-15T16:28:22+08:00 +2026/05/15 16:28:22.458, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.55, 64 +2026-05-15T16:28:27+08:00 +2026/05/15 16:28:27.482, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.73, 63 +2026-05-15T16:28:32+08:00 +2026/05/15 16:28:32.506, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.39, 64 +2026-05-15T16:28:37+08:00 +2026/05/15 16:28:37.531, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.55, 65 +2026-05-15T16:28:42+08:00 +2026/05/15 16:28:42.554, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.70, 64 +2026-05-15T16:28:47+08:00 +2026/05/15 16:28:47.577, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.07, 63 +2026-05-15T16:28:52+08:00 +2026/05/15 16:28:52.601, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.35, 63 +2026-05-15T16:28:57+08:00 +2026/05/15 16:28:57.628, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.67, 63 +2026-05-15T16:29:02+08:00 +2026/05/15 16:29:02.650, NVIDIA GeForce RTX 5090, 66, 23, 9607, 32607, 259.68, 64 +2026-05-15T16:29:07+08:00 +2026/05/15 16:29:07.674, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.83, 64 +2026-05-15T16:29:12+08:00 +2026/05/15 16:29:12.698, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.96, 63 +2026-05-15T16:29:17+08:00 +2026/05/15 16:29:17.721, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.79, 64 +2026-05-15T16:29:22+08:00 +2026/05/15 16:29:22.747, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.82, 64 +2026-05-15T16:29:27+08:00 +2026/05/15 16:29:27.774, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.16, 64 +2026-05-15T16:29:32+08:00 +2026/05/15 16:29:32.797, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.48, 64 +2026-05-15T16:29:37+08:00 +2026/05/15 16:29:37.822, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 354.33, 63 +2026-05-15T16:29:42+08:00 +2026/05/15 16:29:42.848, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.15, 63 +2026-05-15T16:29:47+08:00 +2026/05/15 16:29:47.872, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.06, 64 +2026-05-15T16:29:52+08:00 +2026/05/15 16:29:52.896, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.10, 64 +2026-05-15T16:29:57+08:00 +2026/05/15 16:29:57.921, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 361.81, 64 +2026-05-15T16:30:02+08:00 +2026/05/15 16:30:02.944, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.79, 64 +2026-05-15T16:30:07+08:00 +2026/05/15 16:30:07.967, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.08, 64 +2026-05-15T16:30:12+08:00 +2026/05/15 16:30:12.998, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.01, 64 +2026-05-15T16:30:18+08:00 +2026/05/15 16:30:18.021, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 258.05, 57 +2026-05-15T16:30:23+08:00 +2026/05/15 16:30:23.045, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.37, 63 +2026-05-15T16:30:28+08:00 +2026/05/15 16:30:28.068, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.43, 63 +2026-05-15T16:30:33+08:00 +2026/05/15 16:30:33.091, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.38, 63 +2026-05-15T16:30:38+08:00 +2026/05/15 16:30:38.118, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.47, 63 +2026-05-15T16:30:43+08:00 +2026/05/15 16:30:43.143, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.81, 63 +2026-05-15T16:30:48+08:00 +2026/05/15 16:30:48.167, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.69, 63 +2026-05-15T16:30:53+08:00 +2026/05/15 16:30:53.191, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.83, 64 +2026-05-15T16:30:58+08:00 +2026/05/15 16:30:58.214, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.61, 64 +2026-05-15T16:31:03+08:00 +2026/05/15 16:31:03.239, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.47, 64 +2026-05-15T16:31:08+08:00 +2026/05/15 16:31:08.264, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.01, 64 +2026-05-15T16:31:13+08:00 +2026/05/15 16:31:13.290, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.30, 64 +2026-05-15T16:31:18+08:00 +2026/05/15 16:31:18.323, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 236.73, 63 +2026-05-15T16:31:23+08:00 +2026/05/15 16:31:23.366, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.95, 63 +2026-05-15T16:31:28+08:00 +2026/05/15 16:31:28.392, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.02, 64 +2026-05-15T16:31:33+08:00 +2026/05/15 16:31:33.417, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.87, 64 +2026-05-15T16:31:38+08:00 +2026/05/15 16:31:38.461, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.92, 64 +2026-05-15T16:31:43+08:00 +2026/05/15 16:31:43.485, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 361.99, 64 +2026-05-15T16:31:48+08:00 +2026/05/15 16:31:48.510, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.87, 62 +2026-05-15T16:31:53+08:00 +2026/05/15 16:31:53.551, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.66, 62 +2026-05-15T16:31:58+08:00 +2026/05/15 16:31:58.593, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.33, 64 +2026-05-15T16:32:03+08:00 +2026/05/15 16:32:03.616, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.61, 64 +2026-05-15T16:32:08+08:00 +2026/05/15 16:32:08.658, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.76, 64 +2026-05-15T16:32:13+08:00 +2026/05/15 16:32:13.703, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.41, 65 +2026-05-15T16:32:18+08:00 +2026/05/15 16:32:18.726, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.72, 63 +2026-05-15T16:32:23+08:00 +2026/05/15 16:32:23.750, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.56, 64 +2026-05-15T16:32:28+08:00 +2026/05/15 16:32:28.773, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.80, 64 +2026-05-15T16:32:33+08:00 +2026/05/15 16:32:33.796, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.72, 64 +2026-05-15T16:32:38+08:00 +2026/05/15 16:32:38.817, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.80, 63 +2026-05-15T16:32:43+08:00 +2026/05/15 16:32:43.843, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 363.32, 63 +2026-05-15T16:32:48+08:00 +2026/05/15 16:32:48.866, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.78, 64 +2026-05-15T16:32:53+08:00 +2026/05/15 16:32:53.891, NVIDIA GeForce RTX 5090, 32, 11, 9607, 32607, 247.94, 63 +2026-05-15T16:32:58+08:00 +2026/05/15 16:32:58.916, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.44, 64 +2026-05-15T16:33:03+08:00 +2026/05/15 16:33:03.938, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.51, 64 +2026-05-15T16:33:08+08:00 +2026/05/15 16:33:08.965, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.96, 64 +2026-05-15T16:33:13+08:00 +2026/05/15 16:33:13.989, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.14, 63 +2026-05-15T16:33:18+08:00 +2026/05/15 16:33:19.014, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.46, 64 +2026-05-15T16:33:24+08:00 +2026/05/15 16:33:24.037, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.49, 64 +2026-05-15T16:33:29+08:00 +2026/05/15 16:33:29.059, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 362.70, 65 +2026-05-15T16:33:34+08:00 +2026/05/15 16:33:34.083, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.20, 63 +2026-05-15T16:33:39+08:00 +2026/05/15 16:33:39.106, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.92, 64 +2026-05-15T16:33:44+08:00 +2026/05/15 16:33:44.129, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.12, 64 +2026-05-15T16:33:49+08:00 +2026/05/15 16:33:49.153, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.41, 64 +2026-05-15T16:33:54+08:00 +2026/05/15 16:33:54.176, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.20, 64 +2026-05-15T16:33:59+08:00 +2026/05/15 16:33:59.201, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.56, 63 +2026-05-15T16:34:04+08:00 +2026/05/15 16:34:04.238, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.23, 64 +2026-05-15T16:34:09+08:00 +2026/05/15 16:34:09.284, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.30, 64 +2026-05-15T16:34:14+08:00 +2026/05/15 16:34:14.309, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.86, 63 +2026-05-15T16:34:19+08:00 +2026/05/15 16:34:19.367, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.89, 63 +2026-05-15T16:34:24+08:00 +2026/05/15 16:34:24.393, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.78, 65 +2026-05-15T16:34:29+08:00 +2026/05/15 16:34:29.449, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.82, 64 +2026-05-15T16:34:34+08:00 +2026/05/15 16:34:34.472, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.72, 64 +2026-05-15T16:34:39+08:00 +2026/05/15 16:34:39.496, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.34, 64 +2026-05-15T16:34:44+08:00 +2026/05/15 16:34:44.520, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.21, 64 +2026-05-15T16:34:49+08:00 +2026/05/15 16:34:49.544, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.80, 64 +2026-05-15T16:34:54+08:00 +2026/05/15 16:34:54.569, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.62, 64 +2026-05-15T16:34:59+08:00 +2026/05/15 16:34:59.592, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 332.74, 62 +2026-05-15T16:35:04+08:00 +2026/05/15 16:35:04.616, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.68, 64 +2026-05-15T16:35:09+08:00 +2026/05/15 16:35:09.639, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.29, 64 +2026-05-15T16:35:14+08:00 +2026/05/15 16:35:14.664, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.71, 64 +2026-05-15T16:35:19+08:00 +2026/05/15 16:35:19.688, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.84, 64 +2026-05-15T16:35:24+08:00 +2026/05/15 16:35:24.712, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.02, 63 +2026-05-15T16:35:29+08:00 +2026/05/15 16:35:29.741, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.00, 64 +2026-05-15T16:35:34+08:00 +2026/05/15 16:35:34.766, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.10, 63 +2026-05-15T16:35:39+08:00 +2026/05/15 16:35:39.792, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.04, 64 +2026-05-15T16:35:44+08:00 +2026/05/15 16:35:44.815, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.73, 64 +2026-05-15T16:35:49+08:00 +2026/05/15 16:35:49.839, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.73, 63 +2026-05-15T16:35:54+08:00 +2026/05/15 16:35:54.868, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.50, 64 +2026-05-15T16:35:59+08:00 +2026/05/15 16:35:59.892, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.01, 63 +2026-05-15T16:36:04+08:00 +2026/05/15 16:36:04.920, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.20, 63 +2026-05-15T16:36:09+08:00 +2026/05/15 16:36:09.944, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.07, 63 +2026-05-15T16:36:14+08:00 +2026/05/15 16:36:14.970, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.97, 63 +2026-05-15T16:36:19+08:00 +2026/05/15 16:36:19.992, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.84, 63 +2026-05-15T16:36:25+08:00 +2026/05/15 16:36:25.016, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.35, 64 +2026-05-15T16:36:30+08:00 +2026/05/15 16:36:30.038, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.10, 64 +2026-05-15T16:36:35+08:00 +2026/05/15 16:36:35.062, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.67, 64 +2026-05-15T16:36:40+08:00 +2026/05/15 16:36:40.087, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.59, 64 +2026-05-15T16:36:45+08:00 +2026/05/15 16:36:45.112, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.34, 64 +2026-05-15T16:36:50+08:00 +2026/05/15 16:36:50.136, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 276.66, 57 +2026-05-15T16:36:55+08:00 +2026/05/15 16:36:55.162, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.67, 64 +2026-05-15T16:37:00+08:00 +2026/05/15 16:37:00.186, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.56, 64 +2026-05-15T16:37:05+08:00 +2026/05/15 16:37:05.211, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.14, 63 +2026-05-15T16:37:10+08:00 +2026/05/15 16:37:10.235, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.86, 63 +2026-05-15T16:37:15+08:00 +2026/05/15 16:37:15.258, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.28, 64 +2026-05-15T16:37:20+08:00 +2026/05/15 16:37:20.285, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.57, 63 +2026-05-15T16:37:25+08:00 +2026/05/15 16:37:25.308, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.32, 64 +2026-05-15T16:37:30+08:00 +2026/05/15 16:37:30.334, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.14, 64 +2026-05-15T16:37:35+08:00 +2026/05/15 16:37:35.356, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.64, 62 +2026-05-15T16:37:40+08:00 +2026/05/15 16:37:40.381, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.16, 62 +2026-05-15T16:37:45+08:00 +2026/05/15 16:37:45.405, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.69, 62 +2026-05-15T16:37:50+08:00 +2026/05/15 16:37:50.430, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.81, 62 +2026-05-15T16:37:55+08:00 +2026/05/15 16:37:55.453, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.76, 62 +2026-05-15T16:38:00+08:00 +2026/05/15 16:38:00.478, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.69, 62 +2026-05-15T16:38:05+08:00 +2026/05/15 16:38:05.502, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 320.80, 63 +2026-05-15T16:38:10+08:00 +2026/05/15 16:38:10.528, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.95, 63 +2026-05-15T16:38:15+08:00 +2026/05/15 16:38:15.552, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.19, 63 +2026-05-15T16:38:20+08:00 +2026/05/15 16:38:20.577, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.26, 64 +2026-05-15T16:38:25+08:00 +2026/05/15 16:38:25.600, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.51, 64 +2026-05-15T16:38:30+08:00 +2026/05/15 16:38:30.625, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.57, 64 +2026-05-15T16:38:35+08:00 +2026/05/15 16:38:35.649, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.13, 64 +2026-05-15T16:38:40+08:00 +2026/05/15 16:38:40.672, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.49, 64 +2026-05-15T16:38:45+08:00 +2026/05/15 16:38:45.696, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.15, 63 +2026-05-15T16:38:50+08:00 +2026/05/15 16:38:50.719, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.71, 64 +2026-05-15T16:38:55+08:00 +2026/05/15 16:38:55.742, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.11, 64 +2026-05-15T16:39:00+08:00 +2026/05/15 16:39:00.771, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.34, 64 +2026-05-15T16:39:05+08:00 +2026/05/15 16:39:05.794, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.94, 64 +2026-05-15T16:39:10+08:00 +2026/05/15 16:39:10.819, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.06, 63 +2026-05-15T16:39:15+08:00 +2026/05/15 16:39:15.847, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.38, 64 +2026-05-15T16:39:20+08:00 +2026/05/15 16:39:20.871, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 237.70, 63 +2026-05-15T16:39:25+08:00 +2026/05/15 16:39:25.895, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.87, 63 +2026-05-15T16:39:30+08:00 +2026/05/15 16:39:30.919, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.52, 63 +2026-05-15T16:39:35+08:00 +2026/05/15 16:39:35.942, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.23, 63 +2026-05-15T16:39:40+08:00 +2026/05/15 16:39:40.967, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.86, 64 +2026-05-15T16:39:45+08:00 +2026/05/15 16:39:45.992, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 359.92, 64 +2026-05-15T16:39:51+08:00 +2026/05/15 16:39:51.015, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.27, 64 +2026-05-15T16:39:56+08:00 +2026/05/15 16:39:56.042, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.00, 63 +2026-05-15T16:40:01+08:00 +2026/05/15 16:40:01.066, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 335.82, 62 +2026-05-15T16:40:06+08:00 +2026/05/15 16:40:06.090, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.87, 63 +2026-05-15T16:40:11+08:00 +2026/05/15 16:40:11.119, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.14, 63 +2026-05-15T16:40:16+08:00 +2026/05/15 16:40:16.142, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.52, 63 +2026-05-15T16:40:21+08:00 +2026/05/15 16:40:21.167, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.64, 63 +2026-05-15T16:40:26+08:00 +2026/05/15 16:40:26.192, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.50, 64 +2026-05-15T16:40:31+08:00 +2026/05/15 16:40:31.216, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.94, 64 +2026-05-15T16:40:36+08:00 +2026/05/15 16:40:36.243, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.32, 64 +2026-05-15T16:40:41+08:00 +2026/05/15 16:40:41.267, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.76, 63 +2026-05-15T16:40:46+08:00 +2026/05/15 16:40:46.290, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.07, 64 +2026-05-15T16:40:51+08:00 +2026/05/15 16:40:51.315, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.37, 64 +2026-05-15T16:40:56+08:00 +2026/05/15 16:40:56.340, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.83, 63 +2026-05-15T16:41:01+08:00 +2026/05/15 16:41:01.364, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.64, 64 +2026-05-15T16:41:06+08:00 +2026/05/15 16:41:06.390, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.58, 64 +2026-05-15T16:41:11+08:00 +2026/05/15 16:41:11.414, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.65, 64 +2026-05-15T16:41:16+08:00 +2026/05/15 16:41:16.437, NVIDIA GeForce RTX 5090, 83, 37, 9607, 32607, 313.68, 63 +2026-05-15T16:41:21+08:00 +2026/05/15 16:41:21.461, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.52, 64 +2026-05-15T16:41:26+08:00 +2026/05/15 16:41:26.486, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.01, 64 +2026-05-15T16:41:31+08:00 +2026/05/15 16:41:31.510, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 361.38, 64 +2026-05-15T16:41:36+08:00 +2026/05/15 16:41:36.536, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 361.35, 64 +2026-05-15T16:41:41+08:00 +2026/05/15 16:41:41.559, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 360.85, 64 +2026-05-15T16:41:46+08:00 +2026/05/15 16:41:46.582, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.28, 63 +2026-05-15T16:41:51+08:00 +2026/05/15 16:41:51.604, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.91, 63 +2026-05-15T16:41:56+08:00 +2026/05/15 16:41:56.633, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.33, 64 +2026-05-15T16:42:01+08:00 +2026/05/15 16:42:01.657, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.56, 64 +2026-05-15T16:42:06+08:00 +2026/05/15 16:42:06.699, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.20, 64 +2026-05-15T16:42:11+08:00 +2026/05/15 16:42:11.723, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.11, 64 +2026-05-15T16:42:16+08:00 +2026/05/15 16:42:16.750, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.86, 64 +2026-05-15T16:42:21+08:00 +2026/05/15 16:42:21.773, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.23, 64 +2026-05-15T16:42:26+08:00 +2026/05/15 16:42:26.797, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 360.98, 64 +2026-05-15T16:42:31+08:00 +2026/05/15 16:42:31.820, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 360.88, 64 +2026-05-15T16:42:36+08:00 +2026/05/15 16:42:36.848, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.48, 63 +2026-05-15T16:42:41+08:00 +2026/05/15 16:42:41.871, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 359.89, 64 +2026-05-15T16:42:46+08:00 +2026/05/15 16:42:46.896, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.80, 63 +2026-05-15T16:42:51+08:00 +2026/05/15 16:42:51.920, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.99, 63 +2026-05-15T16:42:56+08:00 +2026/05/15 16:42:56.946, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.07, 64 +2026-05-15T16:43:01+08:00 +2026/05/15 16:43:01.971, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.20, 64 +2026-05-15T16:43:06+08:00 +2026/05/15 16:43:06.994, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.68, 64 +2026-05-15T16:43:12+08:00 +2026/05/15 16:43:12.019, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.97, 63 +2026-05-15T16:43:17+08:00 +2026/05/15 16:43:17.042, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.42, 63 +2026-05-15T16:43:22+08:00 +2026/05/15 16:43:22.065, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.62, 62 +2026-05-15T16:43:27+08:00 +2026/05/15 16:43:27.088, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.79, 64 +2026-05-15T16:43:32+08:00 +2026/05/15 16:43:32.112, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.39, 64 +2026-05-15T16:43:37+08:00 +2026/05/15 16:43:37.136, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.29, 64 +2026-05-15T16:43:42+08:00 +2026/05/15 16:43:42.160, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.48, 64 +2026-05-15T16:43:47+08:00 +2026/05/15 16:43:47.186, NVIDIA GeForce RTX 5090, 41, 22, 9607, 32607, 351.40, 61 +2026-05-15T16:43:52+08:00 +2026/05/15 16:43:52.208, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.40, 64 +2026-05-15T16:43:57+08:00 +2026/05/15 16:43:57.232, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.75, 64 +2026-05-15T16:44:02+08:00 +2026/05/15 16:44:02.256, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.83, 63 +2026-05-15T16:44:07+08:00 +2026/05/15 16:44:07.282, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.43, 64 +2026-05-15T16:44:12+08:00 +2026/05/15 16:44:12.305, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 362.12, 64 +2026-05-15T16:44:17+08:00 +2026/05/15 16:44:17.333, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 362.89, 64 +2026-05-15T16:44:22+08:00 +2026/05/15 16:44:22.361, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.72, 64 +2026-05-15T16:44:27+08:00 +2026/05/15 16:44:27.384, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.47, 63 +2026-05-15T16:44:32+08:00 +2026/05/15 16:44:32.410, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.63, 63 +2026-05-15T16:44:37+08:00 +2026/05/15 16:44:37.434, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.24, 62 +2026-05-15T16:44:42+08:00 +2026/05/15 16:44:42.457, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.01, 62 +2026-05-15T16:44:47+08:00 +2026/05/15 16:44:47.482, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.33, 64 +2026-05-15T16:44:52+08:00 +2026/05/15 16:44:52.507, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.13, 63 +2026-05-15T16:44:57+08:00 +2026/05/15 16:44:57.533, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.70, 63 +2026-05-15T16:45:02+08:00 +2026/05/15 16:45:02.555, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.47, 63 +2026-05-15T16:45:07+08:00 +2026/05/15 16:45:07.580, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 357.71, 64 +2026-05-15T16:45:12+08:00 +2026/05/15 16:45:12.603, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.54, 64 +2026-05-15T16:45:17+08:00 +2026/05/15 16:45:17.629, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.09, 63 +2026-05-15T16:45:22+08:00 +2026/05/15 16:45:22.652, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.94, 64 +2026-05-15T16:45:27+08:00 +2026/05/15 16:45:27.677, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.17, 65 +2026-05-15T16:45:32+08:00 +2026/05/15 16:45:32.700, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.51, 63 +2026-05-15T16:45:37+08:00 +2026/05/15 16:45:37.723, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.75, 63 +2026-05-15T16:45:42+08:00 +2026/05/15 16:45:42.746, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.67, 63 +2026-05-15T16:45:47+08:00 +2026/05/15 16:45:47.771, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.69, 64 +2026-05-15T16:45:52+08:00 +2026/05/15 16:45:52.797, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.42, 63 +2026-05-15T16:45:57+08:00 +2026/05/15 16:45:57.833, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.26, 64 +2026-05-15T16:46:02+08:00 +2026/05/15 16:46:02.856, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.99, 63 +2026-05-15T16:46:07+08:00 +2026/05/15 16:46:07.880, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.80, 63 +2026-05-15T16:46:12+08:00 +2026/05/15 16:46:12.941, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.77, 65 +2026-05-15T16:46:17+08:00 +2026/05/15 16:46:17.962, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.69, 64 +2026-05-15T16:46:22+08:00 +2026/05/15 16:46:22.986, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.67, 63 +2026-05-15T16:46:28+08:00 +2026/05/15 16:46:28.029, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.02, 63 +2026-05-15T16:46:33+08:00 +2026/05/15 16:46:33.051, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.68, 63 +2026-05-15T16:46:38+08:00 +2026/05/15 16:46:38.076, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.33, 64 +2026-05-15T16:46:43+08:00 +2026/05/15 16:46:43.098, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.42, 63 +2026-05-15T16:46:48+08:00 +2026/05/15 16:46:48.142, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.93, 64 +2026-05-15T16:46:53+08:00 +2026/05/15 16:46:53.183, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.88, 63 +2026-05-15T16:46:58+08:00 +2026/05/15 16:46:58.225, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.90, 63 +2026-05-15T16:47:03+08:00 +2026/05/15 16:47:03.278, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.91, 63 +2026-05-15T16:47:08+08:00 +2026/05/15 16:47:08.302, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 360.72, 63 +2026-05-15T16:47:13+08:00 +2026/05/15 16:47:13.343, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.96, 64 +2026-05-15T16:47:18+08:00 +2026/05/15 16:47:18.365, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.78, 63 +2026-05-15T16:47:23+08:00 +2026/05/15 16:47:23.396, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 360.35, 64 +2026-05-15T16:47:28+08:00 +2026/05/15 16:47:28.421, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.38, 63 +2026-05-15T16:47:33+08:00 +2026/05/15 16:47:33.442, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.83, 63 +2026-05-15T16:47:38+08:00 +2026/05/15 16:47:38.471, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.32, 64 +2026-05-15T16:47:43+08:00 +2026/05/15 16:47:43.493, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.14, 63 +2026-05-15T16:47:48+08:00 +2026/05/15 16:47:48.517, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.33, 62 +2026-05-15T16:47:53+08:00 +2026/05/15 16:47:53.541, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.77, 63 +2026-05-15T16:47:58+08:00 +2026/05/15 16:47:58.564, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.67, 64 +2026-05-15T16:48:03+08:00 +2026/05/15 16:48:03.586, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.70, 63 +2026-05-15T16:48:08+08:00 +2026/05/15 16:48:08.609, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.22, 64 +2026-05-15T16:48:13+08:00 +2026/05/15 16:48:13.633, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.59, 64 +2026-05-15T16:48:18+08:00 +2026/05/15 16:48:18.660, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.12, 62 +2026-05-15T16:48:23+08:00 +2026/05/15 16:48:23.683, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.86, 63 +2026-05-15T16:48:28+08:00 +2026/05/15 16:48:28.705, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.18, 63 +2026-05-15T16:48:33+08:00 +2026/05/15 16:48:33.730, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.53, 63 +2026-05-15T16:48:38+08:00 +2026/05/15 16:48:38.753, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.54, 64 +2026-05-15T16:48:43+08:00 +2026/05/15 16:48:43.777, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.71, 64 +2026-05-15T16:48:48+08:00 +2026/05/15 16:48:48.800, NVIDIA GeForce RTX 5090, 84, 38, 9607, 32607, 361.04, 64 +2026-05-15T16:48:53+08:00 +2026/05/15 16:48:53.827, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.44, 64 +2026-05-15T16:48:58+08:00 +2026/05/15 16:48:58.854, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 316.38, 58 +2026-05-15T16:49:03+08:00 +2026/05/15 16:49:03.879, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.10, 64 +2026-05-15T16:49:08+08:00 +2026/05/15 16:49:08.902, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.21, 63 +2026-05-15T16:49:13+08:00 +2026/05/15 16:49:13.926, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.11, 64 +2026-05-15T16:49:18+08:00 +2026/05/15 16:49:18.951, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.73, 64 +2026-05-15T16:49:23+08:00 +2026/05/15 16:49:23.972, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 347.71, 64 +2026-05-15T16:49:28+08:00 +2026/05/15 16:49:28.998, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.66, 64 +2026-05-15T16:49:34+08:00 +2026/05/15 16:49:34.021, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.09, 63 +2026-05-15T16:49:39+08:00 +2026/05/15 16:49:39.045, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 286.41, 63 +2026-05-15T16:49:44+08:00 +2026/05/15 16:49:44.068, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.74, 63 +2026-05-15T16:49:49+08:00 +2026/05/15 16:49:49.091, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.69, 63 +2026-05-15T16:49:54+08:00 +2026/05/15 16:49:54.115, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.02, 63 +2026-05-15T16:49:59+08:00 +2026/05/15 16:49:59.142, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.76, 63 +2026-05-15T16:50:04+08:00 +2026/05/15 16:50:04.168, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.54, 64 +2026-05-15T16:50:09+08:00 +2026/05/15 16:50:09.194, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.02, 64 +2026-05-15T16:50:14+08:00 +2026/05/15 16:50:14.217, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 309.77, 58 +2026-05-15T16:50:19+08:00 +2026/05/15 16:50:19.258, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.35, 64 +2026-05-15T16:50:24+08:00 +2026/05/15 16:50:24.299, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.63, 64 +2026-05-15T16:50:29+08:00 +2026/05/15 16:50:29.323, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.52, 63 +2026-05-15T16:50:34+08:00 +2026/05/15 16:50:34.347, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.89, 64 +2026-05-15T16:50:39+08:00 +2026/05/15 16:50:39.370, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.48, 63 +2026-05-15T16:50:44+08:00 +2026/05/15 16:50:44.396, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.32, 63 +2026-05-15T16:50:49+08:00 +2026/05/15 16:50:49.420, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.14, 64 +2026-05-15T16:50:54+08:00 +2026/05/15 16:50:54.443, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 246.79, 57 +2026-05-15T16:50:59+08:00 +2026/05/15 16:50:59.473, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 361.77, 63 +2026-05-15T16:51:04+08:00 +2026/05/15 16:51:04.516, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.44, 64 +2026-05-15T16:51:09+08:00 +2026/05/15 16:51:09.540, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.09, 63 +2026-05-15T16:51:14+08:00 +2026/05/15 16:51:14.564, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.08, 63 +2026-05-15T16:51:19+08:00 +2026/05/15 16:51:19.588, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.90, 63 +2026-05-15T16:51:24+08:00 +2026/05/15 16:51:24.615, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.20, 62 +2026-05-15T16:51:29+08:00 +2026/05/15 16:51:29.639, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.02, 62 +2026-05-15T16:51:34+08:00 +2026/05/15 16:51:34.663, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.45, 64 +2026-05-15T16:51:39+08:00 +2026/05/15 16:51:39.687, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 362.22, 64 +2026-05-15T16:51:44+08:00 +2026/05/15 16:51:44.710, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.20, 64 +2026-05-15T16:51:49+08:00 +2026/05/15 16:51:49.737, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.08, 64 +2026-05-15T16:51:54+08:00 +2026/05/15 16:51:54.760, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.57, 64 +2026-05-15T16:51:59+08:00 +2026/05/15 16:51:59.790, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.02, 64 +2026-05-15T16:52:04+08:00 +2026/05/15 16:52:04.821, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 362.45, 64 +2026-05-15T16:52:09+08:00 +2026/05/15 16:52:09.848, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 275.95, 63 +2026-05-15T16:52:14+08:00 +2026/05/15 16:52:14.875, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 362.70, 63 +2026-05-15T16:52:19+08:00 +2026/05/15 16:52:19.899, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.76, 64 +2026-05-15T16:52:24+08:00 +2026/05/15 16:52:24.921, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.36, 64 +2026-05-15T16:52:29+08:00 +2026/05/15 16:52:29.946, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 363.71, 64 +2026-05-15T16:52:34+08:00 +2026/05/15 16:52:34.970, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.68, 64 +2026-05-15T16:52:39+08:00 +2026/05/15 16:52:39.994, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.45, 64 +2026-05-15T16:52:45+08:00 +2026/05/15 16:52:45.017, NVIDIA GeForce RTX 5090, 76, 34, 9607, 32607, 359.84, 62 +2026-05-15T16:52:50+08:00 +2026/05/15 16:52:50.040, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 362.86, 63 +2026-05-15T16:52:55+08:00 +2026/05/15 16:52:55.064, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.44, 65 +2026-05-15T16:53:00+08:00 +2026/05/15 16:53:00.088, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.42, 64 +2026-05-15T16:53:05+08:00 +2026/05/15 16:53:05.114, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.67, 64 +2026-05-15T16:53:10+08:00 +2026/05/15 16:53:10.138, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.75, 63 +2026-05-15T16:53:15+08:00 +2026/05/15 16:53:15.162, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.22, 63 +2026-05-15T16:53:20+08:00 +2026/05/15 16:53:20.185, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.51, 64 +2026-05-15T16:53:25+08:00 +2026/05/15 16:53:25.209, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 363.22, 64 +2026-05-15T16:53:30+08:00 +2026/05/15 16:53:30.235, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.55, 64 +2026-05-15T16:53:35+08:00 +2026/05/15 16:53:35.263, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.57, 64 +2026-05-15T16:53:40+08:00 +2026/05/15 16:53:40.287, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.21, 64 +2026-05-15T16:53:45+08:00 +2026/05/15 16:53:45.314, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.43, 65 +2026-05-15T16:53:50+08:00 +2026/05/15 16:53:50.345, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.42, 64 +2026-05-15T16:53:55+08:00 +2026/05/15 16:53:55.376, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.69, 64 +2026-05-15T16:54:00+08:00 +2026/05/15 16:54:00.401, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.16, 63 +2026-05-15T16:54:05+08:00 +2026/05/15 16:54:05.428, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.10, 64 +2026-05-15T16:54:10+08:00 +2026/05/15 16:54:10.450, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.85, 64 +2026-05-15T16:54:15+08:00 +2026/05/15 16:54:15.483, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 362.46, 64 +2026-05-15T16:54:20+08:00 +2026/05/15 16:54:20.507, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.92, 63 +2026-05-15T16:54:25+08:00 +2026/05/15 16:54:25.530, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.14, 64 +2026-05-15T16:54:30+08:00 +2026/05/15 16:54:30.555, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.34, 64 +2026-05-15T16:54:35+08:00 +2026/05/15 16:54:35.579, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.37, 64 +2026-05-15T16:54:40+08:00 +2026/05/15 16:54:40.603, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 239.49, 63 +2026-05-15T16:54:45+08:00 +2026/05/15 16:54:45.627, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.65, 63 +2026-05-15T16:54:50+08:00 +2026/05/15 16:54:50.651, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.73, 63 +2026-05-15T16:54:55+08:00 +2026/05/15 16:54:55.676, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.47, 64 +2026-05-15T16:55:00+08:00 +2026/05/15 16:55:00.701, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 355.25, 63 +2026-05-15T16:55:05+08:00 +2026/05/15 16:55:05.728, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.03, 64 +2026-05-15T16:55:10+08:00 +2026/05/15 16:55:10.758, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.17, 64 +2026-05-15T16:55:15+08:00 +2026/05/15 16:55:15.783, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.36, 64 +2026-05-15T16:55:20+08:00 +2026/05/15 16:55:20.806, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.55, 64 +2026-05-15T16:55:25+08:00 +2026/05/15 16:55:25.830, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.59, 64 +2026-05-15T16:55:30+08:00 +2026/05/15 16:55:30.855, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 362.55, 64 +2026-05-15T16:55:35+08:00 +2026/05/15 16:55:35.879, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 253.09, 63 +2026-05-15T16:55:40+08:00 +2026/05/15 16:55:40.905, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.26, 64 +2026-05-15T16:55:45+08:00 +2026/05/15 16:55:45.929, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.47, 65 +2026-05-15T16:55:50+08:00 +2026/05/15 16:55:50.952, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.84, 65 +2026-05-15T16:55:55+08:00 +2026/05/15 16:55:55.977, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.92, 63 +2026-05-15T16:56:00+08:00 +2026/05/15 16:56:01.002, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.87, 64 +2026-05-15T16:56:06+08:00 +2026/05/15 16:56:06.044, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.75, 64 +2026-05-15T16:56:11+08:00 +2026/05/15 16:56:11.071, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.99, 64 +2026-05-15T16:56:16+08:00 +2026/05/15 16:56:16.094, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.58, 64 +2026-05-15T16:56:21+08:00 +2026/05/15 16:56:21.119, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.73, 65 +2026-05-15T16:56:26+08:00 +2026/05/15 16:56:26.144, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.51, 64 +2026-05-15T16:56:31+08:00 +2026/05/15 16:56:31.171, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 262.98, 64 +2026-05-15T16:56:36+08:00 +2026/05/15 16:56:36.199, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.60, 64 +2026-05-15T16:56:41+08:00 +2026/05/15 16:56:41.226, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.14, 63 +2026-05-15T16:56:46+08:00 +2026/05/15 16:56:46.249, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.05, 63 +2026-05-15T16:56:51+08:00 +2026/05/15 16:56:51.276, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.17, 63 +2026-05-15T16:56:56+08:00 +2026/05/15 16:56:56.300, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.63, 64 +2026-05-15T16:57:01+08:00 +2026/05/15 16:57:01.323, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.30, 65 +2026-05-15T16:57:06+08:00 +2026/05/15 16:57:06.349, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.31, 64 +2026-05-15T16:57:11+08:00 +2026/05/15 16:57:11.390, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 360.71, 62 +2026-05-15T16:57:16+08:00 +2026/05/15 16:57:16.467, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.50, 64 +2026-05-15T16:57:21+08:00 +2026/05/15 16:57:21.490, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.55, 64 +2026-05-15T16:57:26+08:00 +2026/05/15 16:57:26.514, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.33, 63 +2026-05-15T16:57:31+08:00 +2026/05/15 16:57:31.542, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.25, 62 +2026-05-15T16:57:36+08:00 +2026/05/15 16:57:36.565, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.20, 63 +2026-05-15T16:57:41+08:00 +2026/05/15 16:57:41.590, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 361.64, 64 +2026-05-15T16:57:46+08:00 +2026/05/15 16:57:46.613, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.47, 65 +2026-05-15T16:57:51+08:00 +2026/05/15 16:57:51.637, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.95, 64 +2026-05-15T16:57:56+08:00 +2026/05/15 16:57:56.663, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.02, 64 +2026-05-15T16:58:01+08:00 +2026/05/15 16:58:01.689, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.39, 64 +2026-05-15T16:58:06+08:00 +2026/05/15 16:58:06.719, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.50, 64 +2026-05-15T16:58:11+08:00 +2026/05/15 16:58:11.743, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.75, 64 +2026-05-15T16:58:16+08:00 +2026/05/15 16:58:16.767, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.54, 64 +2026-05-15T16:58:21+08:00 +2026/05/15 16:58:21.789, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 278.40, 58 +2026-05-15T16:58:26+08:00 +2026/05/15 16:58:26.813, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.81, 65 +2026-05-15T16:58:31+08:00 +2026/05/15 16:58:31.838, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.29, 65 +2026-05-15T16:58:36+08:00 +2026/05/15 16:58:36.863, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.64, 64 +2026-05-15T16:58:41+08:00 +2026/05/15 16:58:41.886, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.31, 65 +2026-05-15T16:58:46+08:00 +2026/05/15 16:58:46.911, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.43, 64 +2026-05-15T16:58:51+08:00 +2026/05/15 16:58:51.934, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.63, 63 +2026-05-15T16:58:56+08:00 +2026/05/15 16:58:56.967, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.41, 64 +2026-05-15T16:59:01+08:00 +2026/05/15 16:59:01.992, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 362.64, 64 +2026-05-15T16:59:07+08:00 +2026/05/15 16:59:07.017, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.78, 64 +2026-05-15T16:59:12+08:00 +2026/05/15 16:59:12.041, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.44, 63 +2026-05-15T16:59:17+08:00 +2026/05/15 16:59:17.065, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.25, 65 +2026-05-15T16:59:22+08:00 +2026/05/15 16:59:22.089, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.83, 64 +2026-05-15T16:59:27+08:00 +2026/05/15 16:59:27.113, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.20, 65 +2026-05-15T16:59:32+08:00 +2026/05/15 16:59:32.138, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.03, 64 +2026-05-15T16:59:37+08:00 +2026/05/15 16:59:37.166, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.00, 63 +2026-05-15T16:59:42+08:00 +2026/05/15 16:59:42.190, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.29, 64 +2026-05-15T16:59:47+08:00 +2026/05/15 16:59:47.215, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.65, 63 +2026-05-15T16:59:52+08:00 +2026/05/15 16:59:52.238, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.76, 63 +2026-05-15T16:59:57+08:00 +2026/05/15 16:59:57.261, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.71, 64 +2026-05-15T17:00:02+08:00 +2026/05/15 17:00:02.286, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.50, 64 +2026-05-15T17:00:07+08:00 +2026/05/15 17:00:07.327, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.68, 64 +2026-05-15T17:00:12+08:00 +2026/05/15 17:00:12.368, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.65, 65 +2026-05-15T17:00:17+08:00 +2026/05/15 17:00:17.393, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.46, 64 +2026-05-15T17:00:22+08:00 +2026/05/15 17:00:22.435, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.11, 64 +2026-05-15T17:00:27+08:00 +2026/05/15 17:00:27.458, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.21, 63 +2026-05-15T17:00:32+08:00 +2026/05/15 17:00:32.482, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.16, 64 +2026-05-15T17:00:37+08:00 +2026/05/15 17:00:37.544, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.32, 65 +2026-05-15T17:00:42+08:00 +2026/05/15 17:00:42.569, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.47, 64 +2026-05-15T17:00:47+08:00 +2026/05/15 17:00:47.616, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.92, 64 +2026-05-15T17:00:52+08:00 +2026/05/15 17:00:52.641, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.93, 63 +2026-05-15T17:00:57+08:00 +2026/05/15 17:00:57.720, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 269.61, 58 +2026-05-15T17:01:02+08:00 +2026/05/15 17:01:02.749, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.54, 64 +2026-05-15T17:01:07+08:00 +2026/05/15 17:01:07.773, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.77, 65 +2026-05-15T17:01:12+08:00 +2026/05/15 17:01:12.822, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.18, 65 +2026-05-15T17:01:17+08:00 +2026/05/15 17:01:17.847, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.26, 65 +2026-05-15T17:01:22+08:00 +2026/05/15 17:01:22.901, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.12, 65 +2026-05-15T17:01:27+08:00 +2026/05/15 17:01:27.926, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.71, 63 +2026-05-15T17:01:32+08:00 +2026/05/15 17:01:32.966, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.77, 65 +2026-05-15T17:01:37+08:00 +2026/05/15 17:01:38.009, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 209.70, 63 +2026-05-15T17:01:43+08:00 +2026/05/15 17:01:43.035, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.85, 65 +2026-05-15T17:01:48+08:00 +2026/05/15 17:01:48.059, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.76, 64 +2026-05-15T17:01:53+08:00 +2026/05/15 17:01:53.086, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.77, 64 +2026-05-15T17:01:58+08:00 +2026/05/15 17:01:58.109, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 363.91, 63 +2026-05-15T17:02:03+08:00 +2026/05/15 17:02:03.132, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.29, 64 +2026-05-15T17:02:08+08:00 +2026/05/15 17:02:08.155, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.17, 65 +2026-05-15T17:02:13+08:00 +2026/05/15 17:02:13.180, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 260.05, 64 +2026-05-15T17:02:18+08:00 +2026/05/15 17:02:18.204, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.80, 64 +2026-05-15T17:02:23+08:00 +2026/05/15 17:02:23.226, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.43, 64 +2026-05-15T17:02:28+08:00 +2026/05/15 17:02:28.251, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.77, 64 +2026-05-15T17:02:33+08:00 +2026/05/15 17:02:33.273, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.05, 64 +2026-05-15T17:02:38+08:00 +2026/05/15 17:02:38.295, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.61, 65 +2026-05-15T17:02:43+08:00 +2026/05/15 17:02:43.320, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.73, 63 +2026-05-15T17:02:48+08:00 +2026/05/15 17:02:48.344, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 65 +2026-05-15T17:02:53+08:00 +2026/05/15 17:02:53.366, NVIDIA GeForce RTX 5090, 85, 39, 9607, 32607, 364.26, 65 +2026-05-15T17:02:58+08:00 +2026/05/15 17:02:58.389, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.61, 63 +2026-05-15T17:03:03+08:00 +2026/05/15 17:03:03.414, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.95, 64 +2026-05-15T17:03:08+08:00 +2026/05/15 17:03:08.438, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.69, 64 +2026-05-15T17:03:13+08:00 +2026/05/15 17:03:13.461, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.27, 64 +2026-05-15T17:03:18+08:00 +2026/05/15 17:03:18.484, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.74, 64 +2026-05-15T17:03:23+08:00 +2026/05/15 17:03:23.512, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.21, 64 +2026-05-15T17:03:28+08:00 +2026/05/15 17:03:28.536, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.12, 63 +2026-05-15T17:03:33+08:00 +2026/05/15 17:03:33.564, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.96, 64 +2026-05-15T17:03:38+08:00 +2026/05/15 17:03:38.587, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.34, 63 +2026-05-15T17:03:43+08:00 +2026/05/15 17:03:43.610, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.04, 64 +2026-05-15T17:03:48+08:00 +2026/05/15 17:03:48.634, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 364.33, 64 +2026-05-15T17:03:53+08:00 +2026/05/15 17:03:53.657, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.49, 64 +2026-05-15T17:03:58+08:00 +2026/05/15 17:03:58.682, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.76, 64 +2026-05-15T17:04:03+08:00 +2026/05/15 17:04:03.706, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.99, 64 +2026-05-15T17:04:08+08:00 +2026/05/15 17:04:08.729, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.36, 64 +2026-05-15T17:04:13+08:00 +2026/05/15 17:04:13.752, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.28, 63 +2026-05-15T17:04:18+08:00 +2026/05/15 17:04:18.776, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.62, 64 +2026-05-15T17:04:23+08:00 +2026/05/15 17:04:23.836, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.11, 65 +2026-05-15T17:04:28+08:00 +2026/05/15 17:04:28.861, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 364.92, 64 +2026-05-15T17:04:33+08:00 +2026/05/15 17:04:33.900, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.38, 64 +2026-05-15T17:04:38+08:00 +2026/05/15 17:04:38.927, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.33, 64 +2026-05-15T17:04:43+08:00 +2026/05/15 17:04:43.968, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.30, 65 +2026-05-15T17:04:48+08:00 +2026/05/15 17:04:48.994, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.12, 64 +2026-05-15T17:04:54+08:00 +2026/05/15 17:04:54.018, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 363.46, 64 +2026-05-15T17:04:59+08:00 +2026/05/15 17:04:59.060, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.08, 63 +2026-05-15T17:05:04+08:00 +2026/05/15 17:05:04.101, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.63, 65 +2026-05-15T17:05:09+08:00 +2026/05/15 17:05:09.125, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.16, 63 +2026-05-15T17:05:14+08:00 +2026/05/15 17:05:14.167, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.72, 64 +2026-05-15T17:05:19+08:00 +2026/05/15 17:05:19.190, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.39, 64 +2026-05-15T17:05:24+08:00 +2026/05/15 17:05:24.213, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.98, 64 +2026-05-15T17:05:29+08:00 +2026/05/15 17:05:29.238, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.67, 64 +2026-05-15T17:05:34+08:00 +2026/05/15 17:05:34.262, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.73, 64 +2026-05-15T17:05:39+08:00 +2026/05/15 17:05:39.288, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.96, 65 +2026-05-15T17:05:44+08:00 +2026/05/15 17:05:44.313, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.21, 64 +2026-05-15T17:05:49+08:00 +2026/05/15 17:05:49.337, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.74, 63 +2026-05-15T17:05:54+08:00 +2026/05/15 17:05:54.361, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.59, 65 +2026-05-15T17:05:59+08:00 +2026/05/15 17:05:59.385, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.13, 64 +2026-05-15T17:06:04+08:00 +2026/05/15 17:06:04.408, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 275.18, 58 +2026-05-15T17:06:09+08:00 +2026/05/15 17:06:09.434, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.75, 64 +2026-05-15T17:06:14+08:00 +2026/05/15 17:06:14.457, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.33, 64 +2026-05-15T17:06:19+08:00 +2026/05/15 17:06:19.481, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.81, 65 +2026-05-15T17:06:24+08:00 +2026/05/15 17:06:24.505, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 364.58, 64 +2026-05-15T17:06:29+08:00 +2026/05/15 17:06:29.529, NVIDIA GeForce RTX 5090, 88, 39, 9607, 32607, 363.71, 65 +2026-05-15T17:06:34+08:00 +2026/05/15 17:06:34.552, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.72, 64 +2026-05-15T17:06:39+08:00 +2026/05/15 17:06:39.576, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.79, 65 +2026-05-15T17:06:44+08:00 +2026/05/15 17:06:44.600, NVIDIA GeForce RTX 5090, 75, 30, 9607, 32607, 254.84, 65 +2026-05-15T17:06:49+08:00 +2026/05/15 17:06:49.624, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 64 +2026-05-15T17:06:54+08:00 +2026/05/15 17:06:54.649, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.85, 64 +2026-05-15T17:06:59+08:00 +2026/05/15 17:06:59.672, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.38, 65 +2026-05-15T17:07:04+08:00 +2026/05/15 17:07:04.695, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.47, 63 +2026-05-15T17:07:09+08:00 +2026/05/15 17:07:09.719, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.31, 64 +2026-05-15T17:07:14+08:00 +2026/05/15 17:07:14.744, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.53, 65 +2026-05-15T17:07:19+08:00 +2026/05/15 17:07:19.786, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.09, 64 +2026-05-15T17:07:24+08:00 +2026/05/15 17:07:24.812, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.64, 64 +2026-05-15T17:07:29+08:00 +2026/05/15 17:07:29.832, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.10, 65 +2026-05-15T17:07:34+08:00 +2026/05/15 17:07:34.856, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.58, 65 +2026-05-15T17:07:39+08:00 +2026/05/15 17:07:39.881, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.46, 65 +2026-05-15T17:07:44+08:00 +2026/05/15 17:07:44.905, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.61, 64 +2026-05-15T17:07:49+08:00 +2026/05/15 17:07:49.934, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.25, 64 +2026-05-15T17:07:54+08:00 +2026/05/15 17:07:54.958, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.98, 65 +2026-05-15T17:07:59+08:00 +2026/05/15 17:07:59.984, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 249.26, 63 +2026-05-15T17:08:04+08:00 +2026/05/15 17:08:05.012, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.81, 64 +2026-05-15T17:08:10+08:00 +2026/05/15 17:08:10.035, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.72, 64 +2026-05-15T17:08:15+08:00 +2026/05/15 17:08:15.059, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.21, 64 +2026-05-15T17:08:20+08:00 +2026/05/15 17:08:20.082, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.61, 65 +2026-05-15T17:08:25+08:00 +2026/05/15 17:08:25.107, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.26, 64 +2026-05-15T17:08:30+08:00 +2026/05/15 17:08:30.130, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.31, 65 +2026-05-15T17:08:35+08:00 +2026/05/15 17:08:35.153, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.31, 65 +2026-05-15T17:08:40+08:00 +2026/05/15 17:08:40.175, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.03, 65 +2026-05-15T17:08:45+08:00 +2026/05/15 17:08:45.200, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.68, 65 +2026-05-15T17:08:50+08:00 +2026/05/15 17:08:50.229, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.09, 64 +2026-05-15T17:08:55+08:00 +2026/05/15 17:08:55.256, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.69, 64 +2026-05-15T17:09:00+08:00 +2026/05/15 17:09:00.279, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.40, 65 +2026-05-15T17:09:05+08:00 +2026/05/15 17:09:05.307, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 365.31, 65 +2026-05-15T17:09:10+08:00 +2026/05/15 17:09:10.331, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.12, 64 +2026-05-15T17:09:15+08:00 +2026/05/15 17:09:15.357, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 64 +2026-05-15T17:09:20+08:00 +2026/05/15 17:09:20.380, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.01, 64 +2026-05-15T17:09:25+08:00 +2026/05/15 17:09:25.403, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.54, 64 +2026-05-15T17:09:30+08:00 +2026/05/15 17:09:30.428, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.38, 65 +2026-05-15T17:09:35+08:00 +2026/05/15 17:09:35.456, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.53, 65 +2026-05-15T17:09:40+08:00 +2026/05/15 17:09:40.482, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.46, 65 +2026-05-15T17:09:45+08:00 +2026/05/15 17:09:45.507, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.05, 65 +2026-05-15T17:09:50+08:00 +2026/05/15 17:09:50.530, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.71, 64 +2026-05-15T17:09:55+08:00 +2026/05/15 17:09:55.555, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.53, 64 +2026-05-15T17:10:00+08:00 +2026/05/15 17:10:00.579, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.07, 65 +2026-05-15T17:10:05+08:00 +2026/05/15 17:10:05.602, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.67, 64 +2026-05-15T17:10:10+08:00 +2026/05/15 17:10:10.625, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.67, 65 +2026-05-15T17:10:15+08:00 +2026/05/15 17:10:15.650, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.86, 65 +2026-05-15T17:10:20+08:00 +2026/05/15 17:10:20.692, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.41, 64 +2026-05-15T17:10:25+08:00 +2026/05/15 17:10:25.766, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.72, 64 +2026-05-15T17:10:30+08:00 +2026/05/15 17:10:30.789, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.06, 65 +2026-05-15T17:10:35+08:00 +2026/05/15 17:10:35.811, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.20, 65 +2026-05-15T17:10:40+08:00 +2026/05/15 17:10:40.854, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 363.87, 65 +2026-05-15T17:10:45+08:00 +2026/05/15 17:10:45.893, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.77, 65 +2026-05-15T17:10:50+08:00 +2026/05/15 17:10:50.954, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.63, 64 +2026-05-15T17:10:55+08:00 +2026/05/15 17:10:55.977, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.45, 64 +2026-05-15T17:11:01+08:00 +2026/05/15 17:11:01.024, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.97, 65 +2026-05-15T17:11:06+08:00 +2026/05/15 17:11:06.048, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.33, 64 +2026-05-15T17:11:11+08:00 +2026/05/15 17:11:11.090, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.08, 63 +2026-05-15T17:11:16+08:00 +2026/05/15 17:11:16.113, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.68, 63 +2026-05-15T17:11:21+08:00 +2026/05/15 17:11:21.139, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.12, 64 +2026-05-15T17:11:26+08:00 +2026/05/15 17:11:26.162, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.30, 64 +2026-05-15T17:11:31+08:00 +2026/05/15 17:11:31.186, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.41, 64 +2026-05-15T17:11:36+08:00 +2026/05/15 17:11:36.212, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.01, 64 +2026-05-15T17:11:41+08:00 +2026/05/15 17:11:41.236, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.59, 64 +2026-05-15T17:11:46+08:00 +2026/05/15 17:11:46.259, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 65 +2026-05-15T17:11:51+08:00 +2026/05/15 17:11:51.284, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.13, 64 +2026-05-15T17:11:56+08:00 +2026/05/15 17:11:56.306, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.54, 64 +2026-05-15T17:12:01+08:00 +2026/05/15 17:12:01.331, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.18, 64 +2026-05-15T17:12:06+08:00 +2026/05/15 17:12:06.355, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.88, 64 +2026-05-15T17:12:11+08:00 +2026/05/15 17:12:11.379, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.48, 65 +2026-05-15T17:12:16+08:00 +2026/05/15 17:12:16.404, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.86, 65 +2026-05-15T17:12:21+08:00 +2026/05/15 17:12:21.429, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.50, 65 +2026-05-15T17:12:26+08:00 +2026/05/15 17:12:26.455, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.91, 64 +2026-05-15T17:12:31+08:00 +2026/05/15 17:12:31.479, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.29, 64 +2026-05-15T17:12:36+08:00 +2026/05/15 17:12:36.503, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.21, 63 +2026-05-15T17:12:41+08:00 +2026/05/15 17:12:41.528, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.93, 64 +2026-05-15T17:12:46+08:00 +2026/05/15 17:12:46.555, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.57, 65 +2026-05-15T17:12:51+08:00 +2026/05/15 17:12:51.578, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.42, 64 +2026-05-15T17:12:56+08:00 +2026/05/15 17:12:56.603, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.04, 65 +2026-05-15T17:13:01+08:00 +2026/05/15 17:13:01.627, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.43, 65 +2026-05-15T17:13:06+08:00 +2026/05/15 17:13:06.651, NVIDIA GeForce RTX 5090, 19, 7, 9607, 32607, 254.78, 63 +2026-05-15T17:13:11+08:00 +2026/05/15 17:13:11.676, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.88, 64 +2026-05-15T17:13:16+08:00 +2026/05/15 17:13:16.699, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.54, 64 +2026-05-15T17:13:21+08:00 +2026/05/15 17:13:21.723, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 310.80, 59 +2026-05-15T17:13:26+08:00 +2026/05/15 17:13:26.745, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.77, 66 +2026-05-15T17:13:31+08:00 +2026/05/15 17:13:31.767, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.74, 65 +2026-05-15T17:13:36+08:00 +2026/05/15 17:13:36.793, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.23, 64 +2026-05-15T17:13:41+08:00 +2026/05/15 17:13:41.816, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.78, 65 +2026-05-15T17:13:46+08:00 +2026/05/15 17:13:46.841, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 260.69, 63 +2026-05-15T17:13:51+08:00 +2026/05/15 17:13:51.865, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.71, 63 +2026-05-15T17:13:56+08:00 +2026/05/15 17:13:56.889, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 65 +2026-05-15T17:14:01+08:00 +2026/05/15 17:14:01.914, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.96, 65 +2026-05-15T17:14:06+08:00 +2026/05/15 17:14:06.939, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.98, 65 +2026-05-15T17:14:11+08:00 +2026/05/15 17:14:11.962, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.74, 64 +2026-05-15T17:14:16+08:00 +2026/05/15 17:14:16.986, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.18, 64 +2026-05-15T17:14:21+08:00 +2026/05/15 17:14:22.014, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.00, 65 +2026-05-15T17:14:27+08:00 +2026/05/15 17:14:27.040, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.12, 63 +2026-05-15T17:14:32+08:00 +2026/05/15 17:14:32.064, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.80, 64 +2026-05-15T17:14:37+08:00 +2026/05/15 17:14:37.088, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.51, 64 +2026-05-15T17:14:42+08:00 +2026/05/15 17:14:42.113, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.17, 65 +2026-05-15T17:14:47+08:00 +2026/05/15 17:14:47.138, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.73, 63 +2026-05-15T17:14:52+08:00 +2026/05/15 17:14:52.162, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.11, 63 +2026-05-15T17:14:57+08:00 +2026/05/15 17:14:57.187, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.12, 64 +2026-05-15T17:15:02+08:00 +2026/05/15 17:15:02.211, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.60, 64 +2026-05-15T17:15:07+08:00 +2026/05/15 17:15:07.238, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.06, 65 +2026-05-15T17:15:12+08:00 +2026/05/15 17:15:12.263, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.90, 64 +2026-05-15T17:15:17+08:00 +2026/05/15 17:15:17.286, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.66, 64 +2026-05-15T17:15:22+08:00 +2026/05/15 17:15:22.310, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.62, 64 +2026-05-15T17:15:27+08:00 +2026/05/15 17:15:27.336, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.54, 65 +2026-05-15T17:15:32+08:00 +2026/05/15 17:15:32.360, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 365.53, 64 +2026-05-15T17:15:37+08:00 +2026/05/15 17:15:37.388, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.04, 65 +2026-05-15T17:15:42+08:00 +2026/05/15 17:15:42.410, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.48, 65 +2026-05-15T17:15:47+08:00 +2026/05/15 17:15:47.436, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.85, 64 +2026-05-15T17:15:52+08:00 +2026/05/15 17:15:52.459, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 64 +2026-05-15T17:15:57+08:00 +2026/05/15 17:15:57.482, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.77, 65 +2026-05-15T17:16:02+08:00 +2026/05/15 17:16:02.505, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.78, 65 +2026-05-15T17:16:07+08:00 +2026/05/15 17:16:07.529, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.37, 66 +2026-05-15T17:16:12+08:00 +2026/05/15 17:16:12.555, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.47, 64 +2026-05-15T17:16:17+08:00 +2026/05/15 17:16:17.579, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.33, 65 +2026-05-15T17:16:22+08:00 +2026/05/15 17:16:22.606, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.62, 64 +2026-05-15T17:16:27+08:00 +2026/05/15 17:16:27.633, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.45, 64 +2026-05-15T17:16:32+08:00 +2026/05/15 17:16:32.659, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.67, 65 +2026-05-15T17:16:37+08:00 +2026/05/15 17:16:37.683, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.16, 64 +2026-05-15T17:16:42+08:00 +2026/05/15 17:16:42.705, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.05, 65 +2026-05-15T17:16:47+08:00 +2026/05/15 17:16:47.730, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.54, 64 +2026-05-15T17:16:52+08:00 +2026/05/15 17:16:52.754, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 65 +2026-05-15T17:16:57+08:00 +2026/05/15 17:16:57.779, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.49, 66 +2026-05-15T17:17:02+08:00 +2026/05/15 17:17:02.802, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.01, 65 +2026-05-15T17:17:07+08:00 +2026/05/15 17:17:07.832, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.92, 64 +2026-05-15T17:17:12+08:00 +2026/05/15 17:17:12.860, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.57, 64 +2026-05-15T17:17:17+08:00 +2026/05/15 17:17:17.887, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.32, 64 +2026-05-15T17:17:22+08:00 +2026/05/15 17:17:22.909, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.08, 65 +2026-05-15T17:17:27+08:00 +2026/05/15 17:17:27.935, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.64, 64 +2026-05-15T17:17:32+08:00 +2026/05/15 17:17:32.961, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.97, 64 +2026-05-15T17:17:37+08:00 +2026/05/15 17:17:37.983, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.68, 63 +2026-05-15T17:17:42+08:00 +2026/05/15 17:17:43.006, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.96, 65 +2026-05-15T17:17:48+08:00 +2026/05/15 17:17:48.030, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.16, 65 +2026-05-15T17:17:53+08:00 +2026/05/15 17:17:53.055, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.00, 64 +2026-05-15T17:17:58+08:00 +2026/05/15 17:17:58.077, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 254.75, 58 +2026-05-15T17:18:03+08:00 +2026/05/15 17:18:03.134, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.95, 65 +2026-05-15T17:18:08+08:00 +2026/05/15 17:18:08.161, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.20, 64 +2026-05-15T17:18:13+08:00 +2026/05/15 17:18:13.185, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.60, 64 +2026-05-15T17:18:18+08:00 +2026/05/15 17:18:18.209, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.33, 65 +2026-05-15T17:18:23+08:00 +2026/05/15 17:18:23.232, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.58, 65 +2026-05-15T17:18:28+08:00 +2026/05/15 17:18:28.255, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.06, 63 +2026-05-15T17:18:33+08:00 +2026/05/15 17:18:33.324, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.06, 65 +2026-05-15T17:18:38+08:00 +2026/05/15 17:18:38.347, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.09, 64 +2026-05-15T17:18:43+08:00 +2026/05/15 17:18:43.395, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.92, 64 +2026-05-15T17:18:48+08:00 +2026/05/15 17:18:48.419, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 272.93, 65 +2026-05-15T17:18:53+08:00 +2026/05/15 17:18:53.444, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.64, 64 +2026-05-15T17:18:58+08:00 +2026/05/15 17:18:58.466, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.88, 65 +2026-05-15T17:19:03+08:00 +2026/05/15 17:19:03.537, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 363.20, 65 +2026-05-15T17:19:08+08:00 +2026/05/15 17:19:08.561, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.28, 65 +2026-05-15T17:19:13+08:00 +2026/05/15 17:19:13.634, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.76, 64 +2026-05-15T17:19:18+08:00 +2026/05/15 17:19:18.659, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.99, 65 +2026-05-15T17:19:23+08:00 +2026/05/15 17:19:23.733, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.74, 64 +2026-05-15T17:19:28+08:00 +2026/05/15 17:19:28.757, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 277.05, 58 +2026-05-15T17:19:33+08:00 +2026/05/15 17:19:33.800, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.96, 64 +2026-05-15T17:19:38+08:00 +2026/05/15 17:19:38.880, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.92, 64 +2026-05-15T17:19:43+08:00 +2026/05/15 17:19:43.905, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.67, 64 +2026-05-15T17:19:48+08:00 +2026/05/15 17:19:48.944, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.55, 63 +2026-05-15T17:19:53+08:00 +2026/05/15 17:19:53.968, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.31, 64 +2026-05-15T17:19:58+08:00 +2026/05/15 17:19:58.992, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.89, 64 +2026-05-15T17:20:04+08:00 +2026/05/15 17:20:04.017, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.92, 64 +2026-05-15T17:20:09+08:00 +2026/05/15 17:20:09.040, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 333.32, 65 +2026-05-15T17:20:14+08:00 +2026/05/15 17:20:14.064, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.29, 65 +2026-05-15T17:20:19+08:00 +2026/05/15 17:20:19.088, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.96, 65 +2026-05-15T17:20:24+08:00 +2026/05/15 17:20:24.111, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.52, 65 +2026-05-15T17:20:29+08:00 +2026/05/15 17:20:29.136, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.35, 64 +2026-05-15T17:20:34+08:00 +2026/05/15 17:20:34.161, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.18, 64 +2026-05-15T17:20:39+08:00 +2026/05/15 17:20:39.184, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 195.96, 62 +2026-05-15T17:20:44+08:00 +2026/05/15 17:20:44.209, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.82, 64 +2026-05-15T17:20:49+08:00 +2026/05/15 17:20:49.236, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 260.23, 58 +2026-05-15T17:20:54+08:00 +2026/05/15 17:20:54.261, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.37, 64 +2026-05-15T17:20:59+08:00 +2026/05/15 17:20:59.285, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.28, 65 +2026-05-15T17:21:04+08:00 +2026/05/15 17:21:04.308, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 363.84, 65 +2026-05-15T17:21:09+08:00 +2026/05/15 17:21:09.332, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.58, 65 +2026-05-15T17:21:14+08:00 +2026/05/15 17:21:14.357, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.54, 64 +2026-05-15T17:21:19+08:00 +2026/05/15 17:21:19.384, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.56, 65 +2026-05-15T17:21:24+08:00 +2026/05/15 17:21:24.408, NVIDIA GeForce RTX 5090, 81, 36, 9607, 32607, 363.70, 65 +2026-05-15T17:21:29+08:00 +2026/05/15 17:21:29.430, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.55, 64 +2026-05-15T17:21:34+08:00 +2026/05/15 17:21:34.454, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.49, 64 +2026-05-15T17:21:39+08:00 +2026/05/15 17:21:39.479, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.17, 64 +2026-05-15T17:21:44+08:00 +2026/05/15 17:21:44.501, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.34, 64 +2026-05-15T17:21:49+08:00 +2026/05/15 17:21:49.524, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.11, 65 +2026-05-15T17:21:54+08:00 +2026/05/15 17:21:54.546, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.87, 64 +2026-05-15T17:21:59+08:00 +2026/05/15 17:21:59.569, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 363.47, 64 +2026-05-15T17:22:04+08:00 +2026/05/15 17:22:04.592, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.55, 65 +2026-05-15T17:22:09+08:00 +2026/05/15 17:22:09.620, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.76, 64 +2026-05-15T17:22:14+08:00 +2026/05/15 17:22:14.646, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.04, 64 +2026-05-15T17:22:19+08:00 +2026/05/15 17:22:19.669, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.62, 65 +2026-05-15T17:22:24+08:00 +2026/05/15 17:22:24.692, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.30, 64 +2026-05-15T17:22:29+08:00 +2026/05/15 17:22:29.716, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 361.36, 64 +2026-05-15T17:22:34+08:00 +2026/05/15 17:22:34.739, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.62, 64 +2026-05-15T17:22:39+08:00 +2026/05/15 17:22:39.762, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 261.87, 65 +2026-05-15T17:22:44+08:00 +2026/05/15 17:22:44.786, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.14, 65 +2026-05-15T17:22:49+08:00 +2026/05/15 17:22:49.813, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.70, 64 +2026-05-15T17:22:54+08:00 +2026/05/15 17:22:54.843, NVIDIA GeForce RTX 5090, 82, 36, 9607, 32607, 360.79, 64 +2026-05-15T17:22:59+08:00 +2026/05/15 17:22:59.868, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.86, 64 +2026-05-15T17:23:04+08:00 +2026/05/15 17:23:04.891, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.89, 64 +2026-05-15T17:23:09+08:00 +2026/05/15 17:23:09.914, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.76, 64 +2026-05-15T17:23:14+08:00 +2026/05/15 17:23:14.941, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.46, 64 +2026-05-15T17:23:19+08:00 +2026/05/15 17:23:19.963, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.46, 64 +2026-05-15T17:23:24+08:00 +2026/05/15 17:23:24.992, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.80, 64 +2026-05-15T17:23:30+08:00 +2026/05/15 17:23:30.016, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.04, 65 +2026-05-15T17:23:35+08:00 +2026/05/15 17:23:35.042, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.38, 64 +2026-05-15T17:23:40+08:00 +2026/05/15 17:23:40.110, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.40, 63 +2026-05-15T17:23:45+08:00 +2026/05/15 17:23:45.157, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.56, 63 +2026-05-15T17:23:50+08:00 +2026/05/15 17:23:50.201, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.60, 63 +2026-05-15T17:23:55+08:00 +2026/05/15 17:23:55.253, NVIDIA GeForce RTX 5090, 81, 34, 9607, 32607, 257.98, 64 +2026-05-15T17:24:00+08:00 +2026/05/15 17:24:00.277, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.73, 64 +2026-05-15T17:24:05+08:00 +2026/05/15 17:24:05.348, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.05, 64 +2026-05-15T17:24:10+08:00 +2026/05/15 17:24:10.371, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.99, 65 +2026-05-15T17:24:15+08:00 +2026/05/15 17:24:15.440, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.94, 64 +2026-05-15T17:24:20+08:00 +2026/05/15 17:24:20.468, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.28, 65 +2026-05-15T17:24:25+08:00 +2026/05/15 17:24:25.529, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 363.25, 65 +2026-05-15T17:24:30+08:00 +2026/05/15 17:24:30.552, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.52, 64 +2026-05-15T17:24:35+08:00 +2026/05/15 17:24:35.594, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 208.38, 63 +2026-05-15T17:24:40+08:00 +2026/05/15 17:24:40.662, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.87, 65 +2026-05-15T17:24:45+08:00 +2026/05/15 17:24:45.686, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.83, 64 +2026-05-15T17:24:50+08:00 +2026/05/15 17:24:50.727, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.95, 64 +2026-05-15T17:24:55+08:00 +2026/05/15 17:24:55.755, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.20, 65 +2026-05-15T17:25:00+08:00 +2026/05/15 17:25:00.781, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.51, 64 +2026-05-15T17:25:05+08:00 +2026/05/15 17:25:05.804, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.54, 64 +2026-05-15T17:25:10+08:00 +2026/05/15 17:25:10.827, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.31, 63 +2026-05-15T17:25:15+08:00 +2026/05/15 17:25:15.851, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 361.20, 64 +2026-05-15T17:25:20+08:00 +2026/05/15 17:25:20.875, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 360.88, 63 +2026-05-15T17:25:25+08:00 +2026/05/15 17:25:25.899, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 361.20, 65 +2026-05-15T17:25:30+08:00 +2026/05/15 17:25:30.922, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.89, 65 +2026-05-15T17:25:35+08:00 +2026/05/15 17:25:35.945, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.69, 63 +2026-05-15T17:25:40+08:00 +2026/05/15 17:25:40.970, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.25, 64 +2026-05-15T17:25:45+08:00 +2026/05/15 17:25:45.992, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.30, 65 +2026-05-15T17:25:51+08:00 +2026/05/15 17:25:51.019, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 249.27, 64 +2026-05-15T17:25:56+08:00 +2026/05/15 17:25:56.042, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.99, 65 +2026-05-15T17:26:01+08:00 +2026/05/15 17:26:01.066, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 360.73, 64 +2026-05-15T17:26:06+08:00 +2026/05/15 17:26:06.088, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.79, 64 +2026-05-15T17:26:11+08:00 +2026/05/15 17:26:11.113, NVIDIA GeForce RTX 5090, 56, 19, 9607, 32607, 210.21, 61 +2026-05-15T17:26:16+08:00 +2026/05/15 17:26:16.135, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.81, 63 +2026-05-15T17:26:21+08:00 +2026/05/15 17:26:21.159, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.16, 63 +2026-05-15T17:26:26+08:00 +2026/05/15 17:26:26.183, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.23, 64 +2026-05-15T17:26:31+08:00 +2026/05/15 17:26:31.207, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.00, 65 +2026-05-15T17:26:36+08:00 +2026/05/15 17:26:36.231, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.01, 64 +2026-05-15T17:26:41+08:00 +2026/05/15 17:26:41.254, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 364.21, 65 +2026-05-15T17:26:46+08:00 +2026/05/15 17:26:46.278, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 364.64, 65 +2026-05-15T17:26:51+08:00 +2026/05/15 17:26:51.305, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.23, 65 +2026-05-15T17:26:56+08:00 +2026/05/15 17:26:56.331, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.07, 65 +2026-05-15T17:27:01+08:00 +2026/05/15 17:27:01.354, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.61, 65 +2026-05-15T17:27:06+08:00 +2026/05/15 17:27:06.378, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.29, 65 +2026-05-15T17:27:11+08:00 +2026/05/15 17:27:11.402, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.07, 65 +2026-05-15T17:27:16+08:00 +2026/05/15 17:27:16.425, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.68, 65 +2026-05-15T17:27:21+08:00 +2026/05/15 17:27:21.449, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 209.75, 64 +2026-05-15T17:27:26+08:00 +2026/05/15 17:27:26.476, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.67, 64 +2026-05-15T17:27:31+08:00 +2026/05/15 17:27:31.501, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.26, 64 +2026-05-15T17:27:36+08:00 +2026/05/15 17:27:36.525, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.93, 64 +2026-05-15T17:27:41+08:00 +2026/05/15 17:27:41.552, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.51, 64 +2026-05-15T17:27:46+08:00 +2026/05/15 17:27:46.579, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.78, 64 +2026-05-15T17:27:51+08:00 +2026/05/15 17:27:51.606, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 361.54, 64 +2026-05-15T17:27:56+08:00 +2026/05/15 17:27:56.628, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.95, 63 +2026-05-15T17:28:01+08:00 +2026/05/15 17:28:01.651, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 360.93, 65 +2026-05-15T17:28:06+08:00 +2026/05/15 17:28:06.673, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.03, 65 +2026-05-15T17:28:11+08:00 +2026/05/15 17:28:11.696, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.94, 64 +2026-05-15T17:28:16+08:00 +2026/05/15 17:28:16.718, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.25, 65 +2026-05-15T17:28:21+08:00 +2026/05/15 17:28:21.742, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 362.66, 65 +2026-05-15T17:28:26+08:00 +2026/05/15 17:28:26.767, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 361.03, 65 +2026-05-15T17:28:31+08:00 +2026/05/15 17:28:31.791, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 359.87, 65 +2026-05-15T17:28:36+08:00 +2026/05/15 17:28:36.820, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.28, 64 +2026-05-15T17:28:41+08:00 +2026/05/15 17:28:41.843, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.16, 64 +2026-05-15T17:28:46+08:00 +2026/05/15 17:28:46.866, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.11, 65 +2026-05-15T17:28:51+08:00 +2026/05/15 17:28:51.890, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.45, 65 +2026-05-15T17:28:56+08:00 +2026/05/15 17:28:56.914, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 210.20, 62 +2026-05-15T17:29:01+08:00 +2026/05/15 17:29:01.936, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.41, 64 +2026-05-15T17:29:06+08:00 +2026/05/15 17:29:06.961, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.89, 64 +2026-05-15T17:29:11+08:00 +2026/05/15 17:29:11.986, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.96, 65 +2026-05-15T17:29:16+08:00 +2026/05/15 17:29:17.012, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.77, 64 +2026-05-15T17:29:22+08:00 +2026/05/15 17:29:22.035, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.96, 64 +2026-05-15T17:29:27+08:00 +2026/05/15 17:29:27.078, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.93, 65 +2026-05-15T17:29:32+08:00 +2026/05/15 17:29:32.102, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 365.55, 65 +2026-05-15T17:29:37+08:00 +2026/05/15 17:29:37.150, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 365.72, 65 +2026-05-15T17:29:42+08:00 +2026/05/15 17:29:42.199, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 262.08, 64 +2026-05-15T17:29:47+08:00 +2026/05/15 17:29:47.227, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.74, 66 +2026-05-15T17:29:52+08:00 +2026/05/15 17:29:52.264, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.96, 65 +2026-05-15T17:29:57+08:00 +2026/05/15 17:29:57.323, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.16, 65 +2026-05-15T17:30:02+08:00 +2026/05/15 17:30:02.348, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.30, 65 +2026-05-15T17:30:07+08:00 +2026/05/15 17:30:07.370, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.38, 65 +2026-05-15T17:30:12+08:00 +2026/05/15 17:30:12.393, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.08, 65 +2026-05-15T17:30:17+08:00 +2026/05/15 17:30:17.416, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.18, 64 +2026-05-15T17:30:22+08:00 +2026/05/15 17:30:22.440, NVIDIA GeForce RTX 5090, 76, 34, 9607, 32607, 360.66, 64 +2026-05-15T17:30:27+08:00 +2026/05/15 17:30:27.464, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.86, 65 +2026-05-15T17:30:32+08:00 +2026/05/15 17:30:32.487, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.31, 65 +2026-05-15T17:30:37+08:00 +2026/05/15 17:30:37.511, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.74, 65 +2026-05-15T17:30:42+08:00 +2026/05/15 17:30:42.535, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.89, 65 +2026-05-15T17:30:47+08:00 +2026/05/15 17:30:47.558, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.00, 65 +2026-05-15T17:30:52+08:00 +2026/05/15 17:30:52.581, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.37, 65 +2026-05-15T17:30:57+08:00 +2026/05/15 17:30:57.609, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.39, 65 +2026-05-15T17:31:02+08:00 +2026/05/15 17:31:02.633, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.09, 65 +2026-05-15T17:31:07+08:00 +2026/05/15 17:31:07.654, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.98, 65 +2026-05-15T17:31:12+08:00 +2026/05/15 17:31:12.679, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.50, 65 +2026-05-15T17:31:17+08:00 +2026/05/15 17:31:17.701, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.83, 65 +2026-05-15T17:31:22+08:00 +2026/05/15 17:31:22.725, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.28, 65 +2026-05-15T17:31:27+08:00 +2026/05/15 17:31:27.747, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.04, 65 +2026-05-15T17:31:32+08:00 +2026/05/15 17:31:32.771, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.08, 65 +2026-05-15T17:31:37+08:00 +2026/05/15 17:31:37.798, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.31, 65 +2026-05-15T17:31:42+08:00 +2026/05/15 17:31:42.820, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.54, 65 +2026-05-15T17:31:47+08:00 +2026/05/15 17:31:47.844, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.78, 65 +2026-05-15T17:31:52+08:00 +2026/05/15 17:31:52.867, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.33, 65 +2026-05-15T17:31:57+08:00 +2026/05/15 17:31:57.891, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.00, 65 +2026-05-15T17:32:02+08:00 +2026/05/15 17:32:02.913, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.40, 64 +2026-05-15T17:32:07+08:00 +2026/05/15 17:32:07.934, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.74, 64 +2026-05-15T17:32:12+08:00 +2026/05/15 17:32:12.957, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.21, 65 +2026-05-15T17:32:17+08:00 +2026/05/15 17:32:17.979, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 358.18, 65 +2026-05-15T17:32:22+08:00 +2026/05/15 17:32:23.004, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.86, 65 +2026-05-15T17:32:28+08:00 +2026/05/15 17:32:28.028, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.65, 64 +2026-05-15T17:32:33+08:00 +2026/05/15 17:32:33.050, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.13, 65 +2026-05-15T17:32:38+08:00 +2026/05/15 17:32:38.074, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.80, 65 +2026-05-15T17:32:43+08:00 +2026/05/15 17:32:43.102, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 218.06, 58 +2026-05-15T17:32:48+08:00 +2026/05/15 17:32:48.139, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.14, 64 +2026-05-15T17:32:53+08:00 +2026/05/15 17:32:53.181, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.43, 64 +2026-05-15T17:32:58+08:00 +2026/05/15 17:32:58.205, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.81, 65 +2026-05-15T17:33:03+08:00 +2026/05/15 17:33:03.231, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 361.25, 64 +2026-05-15T17:33:08+08:00 +2026/05/15 17:33:08.255, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.01, 65 +2026-05-15T17:33:13+08:00 +2026/05/15 17:33:13.279, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.49, 65 +2026-05-15T17:33:18+08:00 +2026/05/15 17:33:18.301, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.69, 64 +2026-05-15T17:33:23+08:00 +2026/05/15 17:33:23.326, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.99, 64 +2026-05-15T17:33:28+08:00 +2026/05/15 17:33:28.349, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.42, 64 +2026-05-15T17:33:33+08:00 +2026/05/15 17:33:33.373, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.89, 64 +2026-05-15T17:33:38+08:00 +2026/05/15 17:33:38.397, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.20, 65 +2026-05-15T17:33:43+08:00 +2026/05/15 17:33:43.421, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.23, 65 +2026-05-15T17:33:48+08:00 +2026/05/15 17:33:48.446, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.59, 65 +2026-05-15T17:33:53+08:00 +2026/05/15 17:33:53.469, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.79, 65 +2026-05-15T17:33:58+08:00 +2026/05/15 17:33:58.494, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.02, 65 +2026-05-15T17:34:03+08:00 +2026/05/15 17:34:03.518, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.29, 65 +2026-05-15T17:34:08+08:00 +2026/05/15 17:34:08.542, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.66, 63 +2026-05-15T17:34:13+08:00 +2026/05/15 17:34:13.569, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.38, 64 +2026-05-15T17:34:18+08:00 +2026/05/15 17:34:18.591, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.28, 64 +2026-05-15T17:34:23+08:00 +2026/05/15 17:34:23.615, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.02, 65 +2026-05-15T17:34:28+08:00 +2026/05/15 17:34:28.639, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.51, 65 +2026-05-15T17:34:33+08:00 +2026/05/15 17:34:33.662, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.73, 64 +2026-05-15T17:34:38+08:00 +2026/05/15 17:34:38.686, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.86, 64 +2026-05-15T17:34:43+08:00 +2026/05/15 17:34:43.711, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.36, 64 +2026-05-15T17:34:48+08:00 +2026/05/15 17:34:48.735, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 362.57, 64 +2026-05-15T17:34:53+08:00 +2026/05/15 17:34:53.759, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.56, 64 +2026-05-15T17:34:58+08:00 +2026/05/15 17:34:58.781, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.81, 64 +2026-05-15T17:35:03+08:00 +2026/05/15 17:35:03.805, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.98, 65 +2026-05-15T17:35:08+08:00 +2026/05/15 17:35:08.829, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.20, 65 +2026-05-15T17:35:13+08:00 +2026/05/15 17:35:13.853, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.77, 65 +2026-05-15T17:35:18+08:00 +2026/05/15 17:35:18.878, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.58, 65 +2026-05-15T17:35:23+08:00 +2026/05/15 17:35:23.901, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.37, 65 +2026-05-15T17:35:28+08:00 +2026/05/15 17:35:28.926, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.46, 65 +2026-05-15T17:35:33+08:00 +2026/05/15 17:35:33.953, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.67, 65 +2026-05-15T17:35:38+08:00 +2026/05/15 17:35:38.977, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.58, 65 +2026-05-15T17:35:43+08:00 +2026/05/15 17:35:44.000, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.39, 65 +2026-05-15T17:35:49+08:00 +2026/05/15 17:35:49.024, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.84, 64 +2026-05-15T17:35:54+08:00 +2026/05/15 17:35:54.050, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.76, 65 +2026-05-15T17:35:59+08:00 +2026/05/15 17:35:59.074, NVIDIA GeForce RTX 5090, 86, 39, 9607, 32607, 364.45, 64 +2026-05-15T17:36:04+08:00 +2026/05/15 17:36:04.097, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.61, 65 +2026-05-15T17:36:09+08:00 +2026/05/15 17:36:09.122, NVIDIA GeForce RTX 5090, 1, 0, 9607, 32607, 316.52, 59 +2026-05-15T17:36:14+08:00 +2026/05/15 17:36:14.144, NVIDIA GeForce RTX 5090, 88, 40, 9607, 32607, 364.71, 64 +2026-05-15T17:36:19+08:00 +2026/05/15 17:36:19.167, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.18, 64 +2026-05-15T17:36:24+08:00 +2026/05/15 17:36:24.195, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.57, 64 +2026-05-15T17:36:29+08:00 +2026/05/15 17:36:29.218, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.20, 64 +2026-05-15T17:36:34+08:00 +2026/05/15 17:36:34.241, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.70, 65 +2026-05-15T17:36:39+08:00 +2026/05/15 17:36:39.269, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.08, 65 +2026-05-15T17:36:44+08:00 +2026/05/15 17:36:44.294, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.32, 65 +2026-05-15T17:36:49+08:00 +2026/05/15 17:36:49.317, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.45, 64 +2026-05-15T17:36:54+08:00 +2026/05/15 17:36:54.344, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.38, 65 +2026-05-15T17:36:59+08:00 +2026/05/15 17:36:59.368, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 65 +2026-05-15T17:37:04+08:00 +2026/05/15 17:37:04.393, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 365.00, 65 +2026-05-15T17:37:09+08:00 +2026/05/15 17:37:09.428, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 237.68, 64 +2026-05-15T17:37:14+08:00 +2026/05/15 17:37:14.470, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.62, 65 +2026-05-15T17:37:19+08:00 +2026/05/15 17:37:19.513, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 365.46, 65 +2026-05-15T17:37:24+08:00 +2026/05/15 17:37:24.538, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.53, 64 +2026-05-15T17:37:29+08:00 +2026/05/15 17:37:29.560, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.82, 63 +2026-05-15T17:37:34+08:00 +2026/05/15 17:37:34.583, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.48, 64 +2026-05-15T17:37:39+08:00 +2026/05/15 17:37:39.608, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.98, 65 +2026-05-15T17:37:44+08:00 +2026/05/15 17:37:44.633, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.23, 65 +2026-05-15T17:37:49+08:00 +2026/05/15 17:37:49.660, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.29, 65 +2026-05-15T17:37:54+08:00 +2026/05/15 17:37:54.684, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.02, 65 +2026-05-15T17:37:59+08:00 +2026/05/15 17:37:59.708, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.46, 64 +2026-05-15T17:38:04+08:00 +2026/05/15 17:38:04.732, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.69, 63 +2026-05-15T17:38:09+08:00 +2026/05/15 17:38:09.755, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.73, 64 +2026-05-15T17:38:14+08:00 +2026/05/15 17:38:14.783, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.91, 64 +2026-05-15T17:38:19+08:00 +2026/05/15 17:38:19.807, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.35, 64 +2026-05-15T17:38:24+08:00 +2026/05/15 17:38:24.830, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.67, 65 +2026-05-15T17:38:29+08:00 +2026/05/15 17:38:29.856, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.50, 64 +2026-05-15T17:38:34+08:00 +2026/05/15 17:38:34.878, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.91, 65 +2026-05-15T17:38:39+08:00 +2026/05/15 17:38:39.902, NVIDIA GeForce RTX 5090, 3, 1, 9607, 32607, 239.82, 60 +2026-05-15T17:38:44+08:00 +2026/05/15 17:38:44.924, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.20, 64 +2026-05-15T17:38:49+08:00 +2026/05/15 17:38:49.954, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.13, 65 +2026-05-15T17:38:54+08:00 +2026/05/15 17:38:54.978, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 353.35, 62 +2026-05-15T17:38:59+08:00 +2026/05/15 17:39:00.000, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.68, 65 +2026-05-15T17:39:05+08:00 +2026/05/15 17:39:05.025, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 362.43, 64 +2026-05-15T17:39:10+08:00 +2026/05/15 17:39:10.049, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.01, 64 +2026-05-15T17:39:15+08:00 +2026/05/15 17:39:15.107, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.38, 64 +2026-05-15T17:39:20+08:00 +2026/05/15 17:39:20.154, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.61, 65 +2026-05-15T17:39:25+08:00 +2026/05/15 17:39:25.178, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.98, 65 +2026-05-15T17:39:30+08:00 +2026/05/15 17:39:30.219, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 362.39, 65 +2026-05-15T17:39:35+08:00 +2026/05/15 17:39:35.288, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.80, 65 +2026-05-15T17:39:40+08:00 +2026/05/15 17:39:40.313, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.59, 65 +2026-05-15T17:39:45+08:00 +2026/05/15 17:39:45.385, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.94, 65 +2026-05-15T17:39:50+08:00 +2026/05/15 17:39:50.443, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.13, 65 +2026-05-15T17:39:55+08:00 +2026/05/15 17:39:55.465, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.74, 65 +2026-05-15T17:40:00+08:00 +2026/05/15 17:40:00.518, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.85, 65 +2026-05-15T17:40:05+08:00 +2026/05/15 17:40:05.560, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 257.43, 65 +2026-05-15T17:40:10+08:00 +2026/05/15 17:40:10.583, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.63, 64 +2026-05-15T17:40:15+08:00 +2026/05/15 17:40:15.624, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.26, 65 +2026-05-15T17:40:20+08:00 +2026/05/15 17:40:20.647, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.46, 65 +2026-05-15T17:40:25+08:00 +2026/05/15 17:40:25.672, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 362.43, 65 +2026-05-15T17:40:30+08:00 +2026/05/15 17:40:30.697, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.42, 65 +2026-05-15T17:40:35+08:00 +2026/05/15 17:40:35.719, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 311.35, 64 +2026-05-15T17:40:40+08:00 +2026/05/15 17:40:40.744, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.43, 65 +2026-05-15T17:40:45+08:00 +2026/05/15 17:40:45.770, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.61, 64 +2026-05-15T17:40:50+08:00 +2026/05/15 17:40:50.793, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.14, 65 +2026-05-15T17:40:55+08:00 +2026/05/15 17:40:55.817, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.23, 65 +2026-05-15T17:41:00+08:00 +2026/05/15 17:41:00.841, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.77, 65 +2026-05-15T17:41:05+08:00 +2026/05/15 17:41:05.866, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.42, 65 +2026-05-15T17:41:10+08:00 +2026/05/15 17:41:10.890, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.04, 65 +2026-05-15T17:41:15+08:00 +2026/05/15 17:41:15.916, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 354.66, 64 +2026-05-15T17:41:20+08:00 +2026/05/15 17:41:20.938, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.21, 64 +2026-05-15T17:41:25+08:00 +2026/05/15 17:41:25.964, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 327.49, 60 +2026-05-15T17:41:30+08:00 +2026/05/15 17:41:30.986, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.62, 64 +2026-05-15T17:41:35+08:00 +2026/05/15 17:41:36.011, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.33, 65 +2026-05-15T17:41:41+08:00 +2026/05/15 17:41:41.035, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.62, 65 +2026-05-15T17:41:46+08:00 +2026/05/15 17:41:46.059, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.66, 65 +2026-05-15T17:41:51+08:00 +2026/05/15 17:41:51.083, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.39, 63 +2026-05-15T17:41:56+08:00 +2026/05/15 17:41:56.107, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.42, 64 +2026-05-15T17:42:01+08:00 +2026/05/15 17:42:01.131, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.81, 66 +2026-05-15T17:42:06+08:00 +2026/05/15 17:42:06.196, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.04, 64 +2026-05-15T17:42:11+08:00 +2026/05/15 17:42:11.221, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.73, 65 +2026-05-15T17:42:16+08:00 +2026/05/15 17:42:16.289, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.58, 65 +2026-05-15T17:42:21+08:00 +2026/05/15 17:42:21.312, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.32, 65 +2026-05-15T17:42:26+08:00 +2026/05/15 17:42:26.336, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.21, 65 +2026-05-15T17:42:31+08:00 +2026/05/15 17:42:31.361, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.40, 65 +2026-05-15T17:42:36+08:00 +2026/05/15 17:42:36.384, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.33, 64 +2026-05-15T17:42:41+08:00 +2026/05/15 17:42:41.407, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.91, 65 +2026-05-15T17:42:46+08:00 +2026/05/15 17:42:46.432, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.04, 64 +2026-05-15T17:42:51+08:00 +2026/05/15 17:42:51.460, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.29, 64 +2026-05-15T17:42:56+08:00 +2026/05/15 17:42:56.483, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.07, 64 +2026-05-15T17:43:01+08:00 +2026/05/15 17:43:01.525, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.62, 64 +2026-05-15T17:43:06+08:00 +2026/05/15 17:43:06.566, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.16, 65 +2026-05-15T17:43:11+08:00 +2026/05/15 17:43:11.609, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.23, 64 +2026-05-15T17:43:16+08:00 +2026/05/15 17:43:16.635, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.55, 65 +2026-05-15T17:43:21+08:00 +2026/05/15 17:43:21.659, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 362.57, 65 +2026-05-15T17:43:26+08:00 +2026/05/15 17:43:26.683, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.36, 65 +2026-05-15T17:43:31+08:00 +2026/05/15 17:43:31.706, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 364.83, 65 +2026-05-15T17:43:36+08:00 +2026/05/15 17:43:36.731, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.05, 63 +2026-05-15T17:43:41+08:00 +2026/05/15 17:43:41.753, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.78, 64 +2026-05-15T17:43:46+08:00 +2026/05/15 17:43:46.775, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.61, 64 +2026-05-15T17:43:51+08:00 +2026/05/15 17:43:51.799, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.86, 63 +2026-05-15T17:43:56+08:00 +2026/05/15 17:43:56.822, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.29, 66 +2026-05-15T17:44:01+08:00 +2026/05/15 17:44:01.845, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.35, 65 +2026-05-15T17:44:06+08:00 +2026/05/15 17:44:06.869, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.33, 65 +2026-05-15T17:44:11+08:00 +2026/05/15 17:44:11.893, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.72, 64 +2026-05-15T17:44:16+08:00 +2026/05/15 17:44:16.916, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.08, 66 +2026-05-15T17:44:21+08:00 +2026/05/15 17:44:21.939, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.09, 63 +2026-05-15T17:44:26+08:00 +2026/05/15 17:44:26.967, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.67, 65 +2026-05-15T17:44:31+08:00 +2026/05/15 17:44:31.990, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.49, 65 +2026-05-15T17:44:37+08:00 +2026/05/15 17:44:37.017, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.74, 65 +2026-05-15T17:44:42+08:00 +2026/05/15 17:44:42.040, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.55, 64 +2026-05-15T17:44:47+08:00 +2026/05/15 17:44:47.064, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.45, 65 +2026-05-15T17:44:52+08:00 +2026/05/15 17:44:52.087, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.50, 65 +2026-05-15T17:44:57+08:00 +2026/05/15 17:44:57.113, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.50, 65 +2026-05-15T17:45:02+08:00 +2026/05/15 17:45:02.136, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 362.95, 65 +2026-05-15T17:45:07+08:00 +2026/05/15 17:45:07.161, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 287.28, 59 +2026-05-15T17:45:12+08:00 +2026/05/15 17:45:12.187, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.34, 64 +2026-05-15T17:45:17+08:00 +2026/05/15 17:45:17.223, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.60, 65 +2026-05-15T17:45:22+08:00 +2026/05/15 17:45:22.264, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.86, 65 +2026-05-15T17:45:27+08:00 +2026/05/15 17:45:27.291, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.56, 65 +2026-05-15T17:45:32+08:00 +2026/05/15 17:45:32.315, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.53, 65 +2026-05-15T17:45:37+08:00 +2026/05/15 17:45:37.357, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.62, 64 +2026-05-15T17:45:42+08:00 +2026/05/15 17:45:42.404, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 365.64, 65 +2026-05-15T17:45:47+08:00 +2026/05/15 17:45:47.428, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.15, 64 +2026-05-15T17:45:52+08:00 +2026/05/15 17:45:52.469, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.55, 64 +2026-05-15T17:45:57+08:00 +2026/05/15 17:45:57.492, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 65 +2026-05-15T17:46:02+08:00 +2026/05/15 17:46:02.516, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.06, 65 +2026-05-15T17:46:07+08:00 +2026/05/15 17:46:07.540, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.23, 65 +2026-05-15T17:46:12+08:00 +2026/05/15 17:46:12.563, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.49, 66 +2026-05-15T17:46:17+08:00 +2026/05/15 17:46:17.587, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 344.30, 65 +2026-05-15T17:46:22+08:00 +2026/05/15 17:46:22.610, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.83, 65 +2026-05-15T17:46:27+08:00 +2026/05/15 17:46:27.633, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.35, 65 +2026-05-15T17:46:32+08:00 +2026/05/15 17:46:32.656, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.25, 65 +2026-05-15T17:46:37+08:00 +2026/05/15 17:46:37.679, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.05, 65 +2026-05-15T17:46:42+08:00 +2026/05/15 17:46:42.703, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 193.74, 64 +2026-05-15T17:46:47+08:00 +2026/05/15 17:46:47.728, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.48, 64 +2026-05-15T17:46:52+08:00 +2026/05/15 17:46:52.752, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.81, 64 +2026-05-15T17:46:57+08:00 +2026/05/15 17:46:57.779, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 362.23, 65 +2026-05-15T17:47:02+08:00 +2026/05/15 17:47:02.803, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.51, 65 +2026-05-15T17:47:07+08:00 +2026/05/15 17:47:07.827, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 363.00, 65 +2026-05-15T17:47:12+08:00 +2026/05/15 17:47:12.853, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 362.93, 65 +2026-05-15T17:47:17+08:00 +2026/05/15 17:47:17.879, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.51, 64 +2026-05-15T17:47:22+08:00 +2026/05/15 17:47:22.902, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.13, 64 +2026-05-15T17:47:27+08:00 +2026/05/15 17:47:27.927, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.98, 64 +2026-05-15T17:47:32+08:00 +2026/05/15 17:47:32.951, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 257.05, 64 +2026-05-15T17:47:37+08:00 +2026/05/15 17:47:37.975, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.84, 66 +2026-05-15T17:47:42+08:00 +2026/05/15 17:47:42.999, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.58, 64 +2026-05-15T17:47:48+08:00 +2026/05/15 17:47:48.024, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.47, 65 +2026-05-15T17:47:53+08:00 +2026/05/15 17:47:53.048, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.58, 65 +2026-05-15T17:47:58+08:00 +2026/05/15 17:47:58.074, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.88, 66 +2026-05-15T17:48:03+08:00 +2026/05/15 17:48:03.099, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.62, 65 +2026-05-15T17:48:08+08:00 +2026/05/15 17:48:08.123, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.11, 66 +2026-05-15T17:48:13+08:00 +2026/05/15 17:48:13.147, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 195.26, 62 +2026-05-15T17:48:18+08:00 +2026/05/15 17:48:18.173, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 364.18, 64 +2026-05-15T17:48:23+08:00 +2026/05/15 17:48:23.197, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 64 +2026-05-15T17:48:28+08:00 +2026/05/15 17:48:28.220, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.93, 65 +2026-05-15T17:48:33+08:00 +2026/05/15 17:48:33.243, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.00, 66 +2026-05-15T17:48:38+08:00 +2026/05/15 17:48:38.268, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.08, 64 +2026-05-15T17:48:43+08:00 +2026/05/15 17:48:43.292, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.89, 65 +2026-05-15T17:48:48+08:00 +2026/05/15 17:48:48.315, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 262.29, 63 +2026-05-15T17:48:53+08:00 +2026/05/15 17:48:53.338, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.74, 65 +2026-05-15T17:48:58+08:00 +2026/05/15 17:48:58.362, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.56, 64 +2026-05-15T17:49:03+08:00 +2026/05/15 17:49:03.385, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.65, 64 +2026-05-15T17:49:08+08:00 +2026/05/15 17:49:08.410, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.91, 64 +2026-05-15T17:49:13+08:00 +2026/05/15 17:49:13.436, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.82, 63 +2026-05-15T17:49:18+08:00 +2026/05/15 17:49:18.466, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.01, 64 +2026-05-15T17:49:23+08:00 +2026/05/15 17:49:23.492, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.99, 65 +2026-05-15T17:49:28+08:00 +2026/05/15 17:49:28.514, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.88, 65 +2026-05-15T17:49:33+08:00 +2026/05/15 17:49:33.539, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.83, 65 +2026-05-15T17:49:38+08:00 +2026/05/15 17:49:38.563, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.15, 65 +2026-05-15T17:49:43+08:00 +2026/05/15 17:49:43.588, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.34, 65 +2026-05-15T17:49:48+08:00 +2026/05/15 17:49:48.612, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 271.22, 64 +2026-05-15T17:49:53+08:00 +2026/05/15 17:49:53.636, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.99, 65 +2026-05-15T17:49:58+08:00 +2026/05/15 17:49:58.660, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.55, 65 +2026-05-15T17:50:03+08:00 +2026/05/15 17:50:03.688, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.73, 65 +2026-05-15T17:50:08+08:00 +2026/05/15 17:50:08.714, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.09, 64 +2026-05-15T17:50:13+08:00 +2026/05/15 17:50:13.738, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.84, 66 +2026-05-15T17:50:18+08:00 +2026/05/15 17:50:18.760, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.62, 65 +2026-05-15T17:50:23+08:00 +2026/05/15 17:50:23.785, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.31, 64 +2026-05-15T17:50:28+08:00 +2026/05/15 17:50:28.808, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.13, 65 +2026-05-15T17:50:33+08:00 +2026/05/15 17:50:33.832, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.91, 66 +2026-05-15T17:50:38+08:00 +2026/05/15 17:50:38.855, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.83, 65 +2026-05-15T17:50:43+08:00 +2026/05/15 17:50:43.901, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.37, 65 +2026-05-15T17:50:48+08:00 +2026/05/15 17:50:48.940, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.10, 65 +2026-05-15T17:50:53+08:00 +2026/05/15 17:50:53.982, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.80, 65 +2026-05-15T17:50:58+08:00 +2026/05/15 17:50:59.006, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.43, 64 +2026-05-15T17:51:04+08:00 +2026/05/15 17:51:04.029, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.97, 65 +2026-05-15T17:51:09+08:00 +2026/05/15 17:51:09.071, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.87, 66 +2026-05-15T17:51:14+08:00 +2026/05/15 17:51:14.120, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.87, 65 +2026-05-15T17:51:19+08:00 +2026/05/15 17:51:19.143, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.43, 65 +2026-05-15T17:51:24+08:00 +2026/05/15 17:51:24.186, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.61, 65 +2026-05-15T17:51:29+08:00 +2026/05/15 17:51:29.228, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.49, 65 +2026-05-15T17:51:34+08:00 +2026/05/15 17:51:34.282, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.85, 65 +2026-05-15T17:51:39+08:00 +2026/05/15 17:51:39.305, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 365.45, 65 +2026-05-15T17:51:44+08:00 +2026/05/15 17:51:44.357, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.37, 65 +2026-05-15T17:51:49+08:00 +2026/05/15 17:51:49.382, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.87, 65 +2026-05-15T17:51:54+08:00 +2026/05/15 17:51:54.422, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.21, 66 +2026-05-15T17:51:59+08:00 +2026/05/15 17:51:59.446, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 365.57, 65 +2026-05-15T17:52:04+08:00 +2026/05/15 17:52:04.469, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.96, 64 +2026-05-15T17:52:09+08:00 +2026/05/15 17:52:09.493, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.49, 65 +2026-05-15T17:52:14+08:00 +2026/05/15 17:52:14.515, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 366.59, 65 +2026-05-15T17:52:19+08:00 +2026/05/15 17:52:19.539, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.29, 66 +2026-05-15T17:52:24+08:00 +2026/05/15 17:52:24.563, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.78, 64 +2026-05-15T17:52:29+08:00 +2026/05/15 17:52:29.586, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.75, 65 +2026-05-15T17:52:34+08:00 +2026/05/15 17:52:34.611, NVIDIA GeForce RTX 5090, 0, 0, 9607, 32607, 183.15, 58 +2026-05-15T17:52:39+08:00 +2026/05/15 17:52:39.635, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.52, 65 +2026-05-15T17:52:44+08:00 +2026/05/15 17:52:44.659, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.76, 65 +2026-05-15T17:52:49+08:00 +2026/05/15 17:52:49.681, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.27, 66 +2026-05-15T17:52:54+08:00 +2026/05/15 17:52:54.705, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 365.57, 65 +2026-05-15T17:52:59+08:00 +2026/05/15 17:52:59.728, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.00, 64 +2026-05-15T17:53:04+08:00 +2026/05/15 17:53:04.752, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.70, 65 +2026-05-15T17:53:09+08:00 +2026/05/15 17:53:09.774, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 278.22, 59 +2026-05-15T17:53:14+08:00 +2026/05/15 17:53:14.798, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.38, 65 +2026-05-15T17:53:19+08:00 +2026/05/15 17:53:19.821, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.90, 65 +2026-05-15T17:53:24+08:00 +2026/05/15 17:53:24.844, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.53, 65 +2026-05-15T17:53:29+08:00 +2026/05/15 17:53:29.865, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 364.95, 65 +2026-05-15T17:53:34+08:00 +2026/05/15 17:53:34.888, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.02, 64 +2026-05-15T17:53:39+08:00 +2026/05/15 17:53:39.910, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.93, 65 +2026-05-15T17:53:44+08:00 +2026/05/15 17:53:44.935, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.28, 65 +2026-05-15T17:53:49+08:00 +2026/05/15 17:53:49.958, NVIDIA GeForce RTX 5090, 69, 32, 9607, 32607, 263.40, 65 +2026-05-15T17:53:54+08:00 +2026/05/15 17:53:54.984, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.83, 65 +2026-05-15T17:53:59+08:00 +2026/05/15 17:54:00.005, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 272.46, 59 +2026-05-15T17:54:05+08:00 +2026/05/15 17:54:05.028, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.31, 65 +2026-05-15T17:54:10+08:00 +2026/05/15 17:54:10.052, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.55, 65 +2026-05-15T17:54:15+08:00 +2026/05/15 17:54:15.074, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.60, 65 +2026-05-15T17:54:20+08:00 +2026/05/15 17:54:20.100, NVIDIA GeForce RTX 5090, 87, 39, 9607, 32607, 363.90, 65 +2026-05-15T17:54:25+08:00 +2026/05/15 17:54:25.127, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 363.53, 65 +2026-05-15T17:54:30+08:00 +2026/05/15 17:54:30.150, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.55, 66 +2026-05-15T17:54:35+08:00 +2026/05/15 17:54:35.177, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.18, 65 +2026-05-15T17:54:40+08:00 +2026/05/15 17:54:40.199, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.18, 65 +2026-05-15T17:54:45+08:00 +2026/05/15 17:54:45.226, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.18, 65 +2026-05-15T17:54:50+08:00 +2026/05/15 17:54:50.248, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.85, 65 +2026-05-15T17:54:55+08:00 +2026/05/15 17:54:55.271, NVIDIA GeForce RTX 5090, 87, 41, 9607, 32607, 364.66, 65 +2026-05-15T17:55:00+08:00 +2026/05/15 17:55:00.295, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.94, 65 +2026-05-15T17:55:05+08:00 +2026/05/15 17:55:05.321, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 364.86, 65 +2026-05-15T17:55:10+08:00 +2026/05/15 17:55:10.341, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.21, 65 +2026-05-15T17:55:15+08:00 +2026/05/15 17:55:15.362, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.04, 65 +2026-05-15T17:55:20+08:00 +2026/05/15 17:55:20.385, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.52, 65 +2026-05-15T17:55:25+08:00 +2026/05/15 17:55:25.409, NVIDIA GeForce RTX 5090, 87, 40, 9607, 32607, 363.19, 65 +2026-05-15T17:55:30+08:00 +2026/05/15 17:55:30.432, NVIDIA GeForce RTX 5090, 85, 38, 9607, 32607, 363.74, 65 +2026-05-15T17:55:35+08:00 +2026/05/15 17:55:35.455, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.79, 65 +2026-05-15T17:55:40+08:00 +2026/05/15 17:55:40.481, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.39, 65 +2026-05-15T17:55:45+08:00 +2026/05/15 17:55:45.502, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.51, 64 +2026-05-15T17:55:50+08:00 +2026/05/15 17:55:50.523, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 365.02, 64 +2026-05-15T17:55:55+08:00 +2026/05/15 17:55:55.544, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.39, 64 +2026-05-15T17:56:00+08:00 +2026/05/15 17:56:00.573, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.75, 64 +2026-05-15T17:56:05+08:00 +2026/05/15 17:56:05.595, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.55, 65 +2026-05-15T17:56:10+08:00 +2026/05/15 17:56:10.634, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 365.35, 65 +2026-05-15T17:56:15+08:00 +2026/05/15 17:56:15.657, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.86, 64 +2026-05-15T17:56:20+08:00 +2026/05/15 17:56:20.703, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.41, 64 +2026-05-15T17:56:25+08:00 +2026/05/15 17:56:25.726, NVIDIA GeForce RTX 5090, 86, 40, 9607, 32607, 364.01, 65 +2026-05-15T17:56:30+08:00 +2026/05/15 17:56:30.765, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.60, 64 +2026-05-15T17:56:35+08:00 +2026/05/15 17:56:35.814, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.23, 63 +2026-05-15T17:56:40+08:00 +2026/05/15 17:56:40.838, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 365.20, 66 +2026-05-15T17:56:45+08:00 +2026/05/15 17:56:45.911, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.35, 63 +2026-05-15T17:56:50+08:00 +2026/05/15 17:56:50.935, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 363.84, 63 +2026-05-15T17:56:55+08:00 +2026/05/15 17:56:55.977, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 338.46, 65 +2026-05-15T17:57:01+08:00 +2026/05/15 17:57:01.018, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.52, 65 +2026-05-15T17:57:06+08:00 +2026/05/15 17:57:06.039, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 362.86, 65 +2026-05-15T17:57:11+08:00 +2026/05/15 17:57:11.082, NVIDIA GeForce RTX 5090, 84, 37, 9607, 32607, 363.58, 65 +2026-05-15T17:57:16+08:00 +2026/05/15 17:57:16.157, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.79, 65 +2026-05-15T17:57:21+08:00 +2026/05/15 17:57:21.180, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.35, 65 +2026-05-15T17:57:26+08:00 +2026/05/15 17:57:26.204, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.68, 65 +2026-05-15T17:57:31+08:00 +2026/05/15 17:57:31.227, NVIDIA GeForce RTX 5090, 86, 38, 9607, 32607, 364.03, 65 +2026-05-15T17:57:36+08:00 +2026/05/15 17:57:36.250, NVIDIA GeForce RTX 5090, 86, 37, 9607, 32607, 364.41, 65 +2026-05-15T17:57:41+08:00 +2026/05/15 17:57:41.273, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.35, 65 +2026-05-15T17:57:46+08:00 +2026/05/15 17:57:46.295, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.70, 65 +2026-05-15T17:57:51+08:00 +2026/05/15 17:57:51.319, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.01, 64 +2026-05-15T17:57:56+08:00 +2026/05/15 17:57:56.343, NVIDIA GeForce RTX 5090, 87, 37, 9607, 32607, 364.29, 64 +2026-05-15T17:58:01+08:00 +2026/05/15 17:58:01.369, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.97, 64 +2026-05-15T17:58:06+08:00 +2026/05/15 17:58:06.393, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.91, 64 +2026-05-15T17:58:11+08:00 +2026/05/15 17:58:11.418, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 363.79, 63 +2026-05-15T17:58:16+08:00 +2026/05/15 17:58:16.441, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.33, 64 +2026-05-15T17:58:21+08:00 +2026/05/15 17:58:21.467, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.11, 64 +2026-05-15T17:58:26+08:00 +2026/05/15 17:58:26.490, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.54, 64 +2026-05-15T17:58:31+08:00 +2026/05/15 17:58:31.515, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.43, 65 +2026-05-15T17:58:36+08:00 +2026/05/15 17:58:36.538, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.27, 65 +2026-05-15T17:58:41+08:00 +2026/05/15 17:58:41.561, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.63, 65 +2026-05-15T17:58:46+08:00 +2026/05/15 17:58:46.585, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.40, 64 +2026-05-15T17:58:51+08:00 +2026/05/15 17:58:51.608, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.49, 66 +2026-05-15T17:58:56+08:00 +2026/05/15 17:58:56.633, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 310.89, 64 +2026-05-15T17:59:01+08:00 +2026/05/15 17:59:01.662, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.93, 65 +2026-05-15T17:59:06+08:00 +2026/05/15 17:59:06.685, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.41, 65 +2026-05-15T17:59:11+08:00 +2026/05/15 17:59:11.713, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.17, 64 +2026-05-15T17:59:16+08:00 +2026/05/15 17:59:16.738, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 366.06, 66 +2026-05-15T17:59:21+08:00 +2026/05/15 17:59:21.762, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.87, 65 +2026-05-15T17:59:26+08:00 +2026/05/15 17:59:26.786, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.34, 64 +2026-05-15T17:59:31+08:00 +2026/05/15 17:59:31.808, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.33, 66 +2026-05-15T17:59:36+08:00 +2026/05/15 17:59:36.832, NVIDIA GeForce RTX 5090, 85, 37, 9607, 32607, 364.78, 64 +2026-05-15T17:59:41+08:00 +2026/05/15 17:59:41.855, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.12, 65 +2026-05-15T17:59:46+08:00 +2026/05/15 17:59:46.878, NVIDIA GeForce RTX 5090, 88, 38, 9607, 32607, 366.32, 65 +2026-05-15T17:59:51+08:00 +2026/05/15 17:59:51.902, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.27, 65 +2026-05-15T17:59:56+08:00 +2026/05/15 17:59:56.925, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.66, 65 +2026-05-15T18:00:01+08:00 +2026/05/15 18:00:01.947, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.71, 65 +2026-05-15T18:00:06+08:00 +2026/05/15 18:00:06.970, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.32, 66 +2026-05-15T18:00:11+08:00 +2026/05/15 18:00:11.993, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.90, 65 +2026-05-15T18:00:17+08:00 +2026/05/15 18:00:17.022, NVIDIA GeForce RTX 5090, 88, 41, 9607, 32607, 364.66, 64 +2026-05-15T18:00:22+08:00 +2026/05/15 18:00:22.047, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 364.56, 64 +2026-05-15T18:00:27+08:00 +2026/05/15 18:00:27.071, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 365.68, 66 +2026-05-15T18:00:32+08:00 +2026/05/15 18:00:32.095, NVIDIA GeForce RTX 5090, 87, 38, 9607, 32607, 345.74, 60 +2026-05-15T18:00:37+08:00 +2026/05/15 18:00:37.116, NVIDIA GeForce RTX 5090, 10, 0, 2855, 32607, 75.26, 54 +2026-05-15T18:00:42+08:00 +2026/05/15 18:00:42.139, NVIDIA GeForce RTX 5090, 10, 0, 2933, 32607, 72.77, 53 +2026-05-15T18:00:47+08:00 +2026/05/15 18:00:47.162, NVIDIA GeForce RTX 5090, 45, 12, 5607, 32607, 146.69, 55 +2026-05-15T18:00:52+08:00 +2026/05/15 18:00:52.184, NVIDIA GeForce RTX 5090, 36, 4, 5607, 32607, 156.48, 55 +2026-05-15T18:00:57+08:00 +2026/05/15 18:00:57.208, NVIDIA GeForce RTX 5090, 0, 0, 18, 32607, 41.15, 50 +2026-05-15T18:01:02+08:00 +2026/05/15 18:01:02.231, NVIDIA GeForce RTX 5090, 0, 0, 3709, 32607, 70.57, 50 +2026-05-15T18:01:07+08:00 +2026/05/15 18:01:07.252, NVIDIA GeForce RTX 5090, 0, 0, 4029, 32607, 70.21, 49 +2026-05-15T18:01:12+08:00 +2026/05/15 18:01:12.274, NVIDIA GeForce RTX 5090, 0, 0, 4419, 32607, 69.43, 49 +2026-05-15T18:01:17+08:00 +2026/05/15 18:01:17.296, NVIDIA GeForce RTX 5090, 86, 36, 11859, 32607, 353.31, 60 +2026-05-15T18:01:22+08:00 +2026/05/15 18:01:22.318, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 355.13, 61 +2026-05-15T18:01:27+08:00 +2026/05/15 18:01:27.345, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 355.96, 60 +2026-05-15T18:01:32+08:00 +2026/05/15 18:01:32.368, NVIDIA GeForce RTX 5090, 88, 36, 11859, 32607, 355.84, 61 +2026-05-15T18:01:37+08:00 +2026/05/15 18:01:37.391, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 356.06, 62 +2026-05-15T18:01:42+08:00 +2026/05/15 18:01:42.416, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 356.53, 61 +2026-05-15T18:01:47+08:00 +2026/05/15 18:01:47.440, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 358.40, 63 +2026-05-15T18:01:52+08:00 +2026/05/15 18:01:52.462, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 358.91, 63 +2026-05-15T18:01:57+08:00 +2026/05/15 18:01:57.485, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 358.06, 63 +2026-05-15T18:02:02+08:00 +2026/05/15 18:02:02.509, NVIDIA GeForce RTX 5090, 82, 35, 11859, 32607, 358.16, 63 +2026-05-15T18:02:07+08:00 +2026/05/15 18:02:07.532, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 361.30, 64 +2026-05-15T18:02:12+08:00 +2026/05/15 18:02:12.556, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 357.04, 61 +2026-05-15T18:02:17+08:00 +2026/05/15 18:02:17.581, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 359.21, 62 +2026-05-15T18:02:22+08:00 +2026/05/15 18:02:22.606, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 357.98, 61 +2026-05-15T18:02:27+08:00 +2026/05/15 18:02:27.630, NVIDIA GeForce RTX 5090, 85, 38, 11859, 32607, 359.11, 62 +2026-05-15T18:02:32+08:00 +2026/05/15 18:02:32.656, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 359.34, 64 +2026-05-15T18:02:37+08:00 +2026/05/15 18:02:37.681, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 358.68, 62 +2026-05-15T18:02:42+08:00 +2026/05/15 18:02:42.705, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 360.21, 63 +2026-05-15T18:02:47+08:00 +2026/05/15 18:02:47.732, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 359.56, 63 +2026-05-15T18:02:52+08:00 +2026/05/15 18:02:52.755, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 359.62, 63 +2026-05-15T18:02:57+08:00 +2026/05/15 18:02:57.777, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 360.74, 64 +2026-05-15T18:03:02+08:00 +2026/05/15 18:03:02.802, NVIDIA GeForce RTX 5090, 88, 41, 11859, 32607, 360.86, 62 +2026-05-15T18:03:07+08:00 +2026/05/15 18:03:07.825, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 361.23, 64 +2026-05-15T18:03:12+08:00 +2026/05/15 18:03:12.851, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 360.13, 63 +2026-05-15T18:03:17+08:00 +2026/05/15 18:03:17.875, NVIDIA GeForce RTX 5090, 0, 0, 11859, 32607, 274.93, 63 +2026-05-15T18:03:22+08:00 +2026/05/15 18:03:22.897, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 360.87, 64 +2026-05-15T18:03:27+08:00 +2026/05/15 18:03:27.921, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 361.68, 64 +2026-05-15T18:03:32+08:00 +2026/05/15 18:03:32.944, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 361.59, 64 +2026-05-15T18:03:37+08:00 +2026/05/15 18:03:37.968, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 361.87, 64 +2026-05-15T18:03:42+08:00 +2026/05/15 18:03:42.990, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 361.72, 64 +2026-05-15T18:03:48+08:00 +2026/05/15 18:03:48.013, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 362.95, 64 +2026-05-15T18:03:53+08:00 +2026/05/15 18:03:53.036, NVIDIA GeForce RTX 5090, 88, 41, 11859, 32607, 362.98, 63 +2026-05-15T18:03:58+08:00 +2026/05/15 18:03:58.059, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.39, 65 +2026-05-15T18:04:03+08:00 +2026/05/15 18:04:03.083, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.57, 64 +2026-05-15T18:04:08+08:00 +2026/05/15 18:04:08.106, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.89, 65 +2026-05-15T18:04:13+08:00 +2026/05/15 18:04:13.128, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.82, 65 +2026-05-15T18:04:18+08:00 +2026/05/15 18:04:18.149, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 364.28, 64 +2026-05-15T18:04:23+08:00 +2026/05/15 18:04:23.172, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 363.21, 64 +2026-05-15T18:04:28+08:00 +2026/05/15 18:04:28.195, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.19, 64 +2026-05-15T18:04:33+08:00 +2026/05/15 18:04:33.218, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.79, 65 +2026-05-15T18:04:38+08:00 +2026/05/15 18:04:38.246, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.36, 65 +2026-05-15T18:04:43+08:00 +2026/05/15 18:04:43.270, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.33, 64 +2026-05-15T18:04:48+08:00 +2026/05/15 18:04:48.295, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.67, 65 +2026-05-15T18:04:53+08:00 +2026/05/15 18:04:53.317, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 364.67, 65 +2026-05-15T18:04:58+08:00 +2026/05/15 18:04:58.340, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 363.22, 65 +2026-05-15T18:05:03+08:00 +2026/05/15 18:05:03.363, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 361.89, 63 +2026-05-15T18:05:08+08:00 +2026/05/15 18:05:08.388, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.44, 65 +2026-05-15T18:05:13+08:00 +2026/05/15 18:05:13.412, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.42, 65 +2026-05-15T18:05:18+08:00 +2026/05/15 18:05:18.434, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.21, 65 +2026-05-15T18:05:23+08:00 +2026/05/15 18:05:23.455, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.75, 65 +2026-05-15T18:05:28+08:00 +2026/05/15 18:05:28.477, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 360.95, 63 +2026-05-15T18:05:33+08:00 +2026/05/15 18:05:33.503, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 358.93, 64 +2026-05-15T18:05:38+08:00 +2026/05/15 18:05:38.526, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 360.59, 65 +2026-05-15T18:05:43+08:00 +2026/05/15 18:05:43.550, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 277.92, 65 +2026-05-15T18:05:48+08:00 +2026/05/15 18:05:48.574, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 360.92, 64 +2026-05-15T18:05:53+08:00 +2026/05/15 18:05:53.597, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 361.21, 65 +2026-05-15T18:05:58+08:00 +2026/05/15 18:05:58.622, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.43, 65 +2026-05-15T18:06:03+08:00 +2026/05/15 18:06:03.645, NVIDIA GeForce RTX 5090, 85, 37, 11859, 32607, 234.93, 64 +2026-05-15T18:06:08+08:00 +2026/05/15 18:06:08.668, NVIDIA GeForce RTX 5090, 88, 41, 11859, 32607, 277.10, 65 +2026-05-15T18:06:13+08:00 +2026/05/15 18:06:13.692, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.21, 65 +2026-05-15T18:06:18+08:00 +2026/05/15 18:06:18.716, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 365.40, 65 +2026-05-15T18:06:23+08:00 +2026/05/15 18:06:23.741, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.67, 65 +2026-05-15T18:06:28+08:00 +2026/05/15 18:06:28.768, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 363.63, 64 +2026-05-15T18:06:33+08:00 +2026/05/15 18:06:33.796, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.08, 64 +2026-05-15T18:06:38+08:00 +2026/05/15 18:06:38.821, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 364.52, 65 +2026-05-15T18:06:43+08:00 +2026/05/15 18:06:43.845, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 364.64, 65 +2026-05-15T18:06:48+08:00 +2026/05/15 18:06:48.869, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.19, 65 +2026-05-15T18:06:53+08:00 +2026/05/15 18:06:53.895, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.95, 65 +2026-05-15T18:06:58+08:00 +2026/05/15 18:06:58.919, NVIDIA GeForce RTX 5090, 85, 36, 11859, 32607, 363.60, 64 +2026-05-15T18:07:03+08:00 +2026/05/15 18:07:03.944, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.65, 65 +2026-05-15T18:07:08+08:00 +2026/05/15 18:07:08.967, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.77, 65 +2026-05-15T18:07:13+08:00 +2026/05/15 18:07:13.991, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.70, 65 +2026-05-15T18:07:19+08:00 +2026/05/15 18:07:19.014, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.11, 65 +2026-05-15T18:07:24+08:00 +2026/05/15 18:07:24.037, NVIDIA GeForce RTX 5090, 85, 36, 11859, 32607, 363.28, 64 +2026-05-15T18:07:29+08:00 +2026/05/15 18:07:29.060, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.52, 65 +2026-05-15T18:07:34+08:00 +2026/05/15 18:07:34.084, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.31, 65 +2026-05-15T18:07:39+08:00 +2026/05/15 18:07:39.107, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 363.46, 64 +2026-05-15T18:07:44+08:00 +2026/05/15 18:07:44.130, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.75, 65 +2026-05-15T18:07:49+08:00 +2026/05/15 18:07:49.152, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.31, 65 +2026-05-15T18:07:54+08:00 +2026/05/15 18:07:54.174, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.85, 65 +2026-05-15T18:07:59+08:00 +2026/05/15 18:07:59.198, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.93, 65 +2026-05-15T18:08:04+08:00 +2026/05/15 18:08:04.222, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 365.04, 65 +2026-05-15T18:08:09+08:00 +2026/05/15 18:08:09.245, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 313.11, 65 +2026-05-15T18:08:14+08:00 +2026/05/15 18:08:14.275, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 364.56, 64 +2026-05-15T18:08:19+08:00 +2026/05/15 18:08:19.299, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 273.55, 64 +2026-05-15T18:08:24+08:00 +2026/05/15 18:08:24.322, NVIDIA GeForce RTX 5090, 88, 41, 11859, 32607, 365.12, 65 +2026-05-15T18:08:29+08:00 +2026/05/15 18:08:29.346, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.90, 65 +2026-05-15T18:08:34+08:00 +2026/05/15 18:08:34.371, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.01, 65 +2026-05-15T18:08:39+08:00 +2026/05/15 18:08:39.394, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.30, 64 +2026-05-15T18:08:44+08:00 +2026/05/15 18:08:44.419, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 363.57, 65 +2026-05-15T18:08:49+08:00 +2026/05/15 18:08:49.442, NVIDIA GeForce RTX 5090, 87, 36, 11859, 32607, 362.83, 64 +2026-05-15T18:08:54+08:00 +2026/05/15 18:08:54.467, NVIDIA GeForce RTX 5090, 88, 40, 11859, 32607, 362.75, 65 +2026-05-15T18:08:59+08:00 +2026/05/15 18:08:59.491, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.14, 65 +2026-05-15T18:09:04+08:00 +2026/05/15 18:09:04.513, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.79, 64 +2026-05-15T18:09:09+08:00 +2026/05/15 18:09:09.536, NVIDIA GeForce RTX 5090, 88, 38, 11859, 32607, 363.77, 65 +2026-05-15T18:09:14+08:00 +2026/05/15 18:09:14.559, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 364.63, 65 +2026-05-15T18:09:19+08:00 +2026/05/15 18:09:19.582, NVIDIA GeForce RTX 5090, 88, 41, 11859, 32607, 364.99, 65 +2026-05-15T18:09:24+08:00 +2026/05/15 18:09:24.608, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 361.00, 64 +2026-05-15T18:09:29+08:00 +2026/05/15 18:09:29.632, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.19, 65 +2026-05-15T18:09:34+08:00 +2026/05/15 18:09:34.660, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.01, 64 +2026-05-15T18:09:39+08:00 +2026/05/15 18:09:39.684, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 361.22, 65 +2026-05-15T18:09:44+08:00 +2026/05/15 18:09:44.709, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 363.74, 65 +2026-05-15T18:09:49+08:00 +2026/05/15 18:09:49.732, NVIDIA GeForce RTX 5090, 87, 36, 11859, 32607, 361.01, 63 +2026-05-15T18:09:54+08:00 +2026/05/15 18:09:54.755, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.43, 64 +2026-05-15T18:09:59+08:00 +2026/05/15 18:09:59.779, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.16, 65 +2026-05-15T18:10:04+08:00 +2026/05/15 18:10:04.802, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 362.66, 65 +2026-05-15T18:10:09+08:00 +2026/05/15 18:10:09.829, NVIDIA GeForce RTX 5090, 87, 38, 11859, 32607, 362.75, 65 +2026-05-15T18:10:14+08:00 +2026/05/15 18:10:14.853, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 364.83, 65 +2026-05-15T18:10:19+08:00 +2026/05/15 18:10:19.876, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 361.91, 65 +2026-05-15T18:10:24+08:00 +2026/05/15 18:10:24.917, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.72, 64 +2026-05-15T18:10:29+08:00 +2026/05/15 18:10:29.941, NVIDIA GeForce RTX 5090, 85, 37, 11859, 32607, 364.11, 65 +2026-05-15T18:10:34+08:00 +2026/05/15 18:10:35.006, NVIDIA GeForce RTX 5090, 88, 39, 11859, 32607, 317.71, 59 +2026-05-15T18:10:40+08:00 +2026/05/15 18:10:40.030, NVIDIA GeForce RTX 5090, 86, 36, 11859, 32607, 363.65, 65 +2026-05-15T18:10:45+08:00 +2026/05/15 18:10:45.069, NVIDIA GeForce RTX 5090, 88, 41, 11859, 32607, 364.94, 65 +2026-05-15T18:10:50+08:00 +2026/05/15 18:10:50.095, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.35, 65 +2026-05-15T18:10:55+08:00 +2026/05/15 18:10:55.135, NVIDIA GeForce RTX 5090, 87, 38, 11859, 32607, 364.82, 64 +2026-05-15T18:11:00+08:00 +2026/05/15 18:11:00.208, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 288.58, 65 +2026-05-15T18:11:05+08:00 +2026/05/15 18:11:05.231, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.82, 64 +2026-05-15T18:11:10+08:00 +2026/05/15 18:11:10.256, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.14, 65 +2026-05-15T18:11:15+08:00 +2026/05/15 18:11:15.298, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 364.60, 65 +2026-05-15T18:11:20+08:00 +2026/05/15 18:11:20.322, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.49, 65 +2026-05-15T18:11:25+08:00 +2026/05/15 18:11:25.347, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 364.41, 65 +2026-05-15T18:11:30+08:00 +2026/05/15 18:11:30.389, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.21, 65 +2026-05-15T18:11:35+08:00 +2026/05/15 18:11:35.413, NVIDIA GeForce RTX 5090, 88, 41, 11859, 32607, 364.44, 65 +2026-05-15T18:11:40+08:00 +2026/05/15 18:11:40.437, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 363.88, 65 +2026-05-15T18:11:45+08:00 +2026/05/15 18:11:45.462, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.59, 64 +2026-05-15T18:11:50+08:00 +2026/05/15 18:11:50.485, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.11, 64 +2026-05-15T18:11:55+08:00 +2026/05/15 18:11:55.507, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.33, 65 +2026-05-15T18:12:00+08:00 +2026/05/15 18:12:00.530, NVIDIA GeForce RTX 5090, 88, 41, 11859, 32607, 364.80, 65 +2026-05-15T18:12:05+08:00 +2026/05/15 18:12:05.554, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.36, 65 +2026-05-15T18:12:10+08:00 +2026/05/15 18:12:10.579, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 364.01, 64 +2026-05-15T18:12:15+08:00 +2026/05/15 18:12:15.607, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.86, 64 +2026-05-15T18:12:20+08:00 +2026/05/15 18:12:20.631, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.86, 65 +2026-05-15T18:12:25+08:00 +2026/05/15 18:12:25.654, NVIDIA GeForce RTX 5090, 85, 39, 11859, 32607, 365.25, 65 +2026-05-15T18:12:30+08:00 +2026/05/15 18:12:30.676, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.51, 65 +2026-05-15T18:12:35+08:00 +2026/05/15 18:12:35.701, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.16, 64 +2026-05-15T18:12:40+08:00 +2026/05/15 18:12:40.723, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.26, 64 +2026-05-15T18:12:45+08:00 +2026/05/15 18:12:45.747, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.38, 64 +2026-05-15T18:12:50+08:00 +2026/05/15 18:12:50.769, NVIDIA GeForce RTX 5090, 88, 41, 11859, 32607, 364.50, 65 +2026-05-15T18:12:55+08:00 +2026/05/15 18:12:55.793, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.64, 65 +2026-05-15T18:13:00+08:00 +2026/05/15 18:13:00.820, NVIDIA GeForce RTX 5090, 43, 15, 11859, 32607, 276.98, 65 +2026-05-15T18:13:05+08:00 +2026/05/15 18:13:05.848, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 361.99, 64 +2026-05-15T18:13:10+08:00 +2026/05/15 18:13:10.871, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.32, 65 +2026-05-15T18:13:15+08:00 +2026/05/15 18:13:15.895, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 362.49, 64 +2026-05-15T18:13:20+08:00 +2026/05/15 18:13:20.919, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.70, 65 +2026-05-15T18:13:25+08:00 +2026/05/15 18:13:25.942, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.99, 64 +2026-05-15T18:13:30+08:00 +2026/05/15 18:13:30.963, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.84, 65 +2026-05-15T18:13:35+08:00 +2026/05/15 18:13:35.988, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.89, 65 +2026-05-15T18:13:40+08:00 +2026/05/15 18:13:41.011, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 362.49, 65 +2026-05-15T18:13:46+08:00 +2026/05/15 18:13:46.040, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.49, 65 +2026-05-15T18:13:51+08:00 +2026/05/15 18:13:51.066, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 362.38, 64 +2026-05-15T18:13:56+08:00 +2026/05/15 18:13:56.088, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 362.84, 65 +2026-05-15T18:14:01+08:00 +2026/05/15 18:14:01.111, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 362.25, 64 +2026-05-15T18:14:06+08:00 +2026/05/15 18:14:06.133, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 342.15, 61 +2026-05-15T18:14:11+08:00 +2026/05/15 18:14:11.158, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 362.49, 64 +2026-05-15T18:14:16+08:00 +2026/05/15 18:14:16.181, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.54, 65 +2026-05-15T18:14:21+08:00 +2026/05/15 18:14:21.208, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.43, 64 +2026-05-15T18:14:26+08:00 +2026/05/15 18:14:26.233, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.90, 65 +2026-05-15T18:14:31+08:00 +2026/05/15 18:14:31.257, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.30, 65 +2026-05-15T18:14:36+08:00 +2026/05/15 18:14:36.282, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.40, 64 +2026-05-15T18:14:41+08:00 +2026/05/15 18:14:41.305, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 362.58, 64 +2026-05-15T18:14:46+08:00 +2026/05/15 18:14:46.328, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.02, 64 +2026-05-15T18:14:51+08:00 +2026/05/15 18:14:51.354, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.27, 65 +2026-05-15T18:14:56+08:00 +2026/05/15 18:14:56.377, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 362.56, 65 +2026-05-15T18:15:01+08:00 +2026/05/15 18:15:01.403, NVIDIA GeForce RTX 5090, 28, 17, 11859, 32607, 349.46, 62 +2026-05-15T18:15:06+08:00 +2026/05/15 18:15:06.425, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.85, 64 +2026-05-15T18:15:11+08:00 +2026/05/15 18:15:11.451, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.60, 64 +2026-05-15T18:15:16+08:00 +2026/05/15 18:15:16.474, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 361.15, 64 +2026-05-15T18:15:21+08:00 +2026/05/15 18:15:21.498, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.27, 65 +2026-05-15T18:15:26+08:00 +2026/05/15 18:15:26.522, NVIDIA GeForce RTX 5090, 15, 5, 11859, 32607, 270.48, 58 +2026-05-15T18:15:31+08:00 +2026/05/15 18:15:31.547, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 363.22, 65 +2026-05-15T18:15:36+08:00 +2026/05/15 18:15:36.569, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.95, 64 +2026-05-15T18:15:41+08:00 +2026/05/15 18:15:41.594, NVIDIA GeForce RTX 5090, 86, 36, 11859, 32607, 363.47, 65 +2026-05-15T18:15:46+08:00 +2026/05/15 18:15:46.617, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.01, 64 +2026-05-15T18:15:51+08:00 +2026/05/15 18:15:51.641, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 328.27, 65 +2026-05-15T18:15:56+08:00 +2026/05/15 18:15:56.665, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.74, 66 +2026-05-15T18:16:01+08:00 +2026/05/15 18:16:01.689, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.35, 64 +2026-05-15T18:16:06+08:00 +2026/05/15 18:16:06.717, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.08, 65 +2026-05-15T18:16:11+08:00 +2026/05/15 18:16:11.742, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.34, 64 +2026-05-15T18:16:16+08:00 +2026/05/15 18:16:16.769, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 362.58, 64 +2026-05-15T18:16:21+08:00 +2026/05/15 18:16:21.795, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 326.19, 60 +2026-05-15T18:16:26+08:00 +2026/05/15 18:16:26.816, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.39, 63 +2026-05-15T18:16:31+08:00 +2026/05/15 18:16:31.840, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.06, 65 +2026-05-15T18:16:36+08:00 +2026/05/15 18:16:36.865, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.28, 64 +2026-05-15T18:16:41+08:00 +2026/05/15 18:16:41.889, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.46, 65 +2026-05-15T18:16:46+08:00 +2026/05/15 18:16:46.913, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.57, 64 +2026-05-15T18:16:51+08:00 +2026/05/15 18:16:51.937, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.25, 65 +2026-05-15T18:16:56+08:00 +2026/05/15 18:16:56.962, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.73, 65 +2026-05-15T18:17:01+08:00 +2026/05/15 18:17:01.988, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 361.81, 64 +2026-05-15T18:17:07+08:00 +2026/05/15 18:17:07.016, NVIDIA GeForce RTX 5090, 87, 39, 11859, 32607, 361.55, 65 +2026-05-15T18:17:12+08:00 +2026/05/15 18:17:12.042, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.01, 64 +2026-05-15T18:17:17+08:00 +2026/05/15 18:17:17.065, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 362.37, 65 +2026-05-15T18:17:22+08:00 +2026/05/15 18:17:22.090, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.17, 65 +2026-05-15T18:17:27+08:00 +2026/05/15 18:17:27.114, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 362.50, 64 +2026-05-15T18:17:32+08:00 +2026/05/15 18:17:32.155, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 354.45, 64 +2026-05-15T18:17:37+08:00 +2026/05/15 18:17:37.233, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 361.37, 65 +2026-05-15T18:17:42+08:00 +2026/05/15 18:17:42.272, NVIDIA GeForce RTX 5090, 85, 38, 11859, 32607, 362.74, 65 +2026-05-15T18:17:47+08:00 +2026/05/15 18:17:47.298, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.40, 65 +2026-05-15T18:17:52+08:00 +2026/05/15 18:17:52.323, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.09, 64 +2026-05-15T18:17:57+08:00 +2026/05/15 18:17:57.366, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 363.73, 63 +2026-05-15T18:18:02+08:00 +2026/05/15 18:18:02.409, NVIDIA GeForce RTX 5090, 85, 36, 11859, 32607, 363.77, 65 +2026-05-15T18:18:07+08:00 +2026/05/15 18:18:07.466, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.66, 65 +2026-05-15T18:18:12+08:00 +2026/05/15 18:18:12.523, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.35, 64 +2026-05-15T18:18:17+08:00 +2026/05/15 18:18:17.581, NVIDIA GeForce RTX 5090, 0, 0, 11859, 32607, 338.16, 60 +2026-05-15T18:18:22+08:00 +2026/05/15 18:18:22.605, NVIDIA GeForce RTX 5090, 85, 37, 11859, 32607, 364.01, 65 +2026-05-15T18:18:27+08:00 +2026/05/15 18:18:27.646, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.44, 64 +2026-05-15T18:18:32+08:00 +2026/05/15 18:18:32.686, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.43, 65 +2026-05-15T18:18:37+08:00 +2026/05/15 18:18:37.725, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.51, 65 +2026-05-15T18:18:42+08:00 +2026/05/15 18:18:42.766, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 318.04, 59 +2026-05-15T18:18:47+08:00 +2026/05/15 18:18:47.823, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.64, 64 +2026-05-15T18:18:52+08:00 +2026/05/15 18:18:52.849, NVIDIA GeForce RTX 5090, 88, 41, 11859, 32607, 362.63, 65 +2026-05-15T18:18:57+08:00 +2026/05/15 18:18:57.871, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 363.20, 64 +2026-05-15T18:19:02+08:00 +2026/05/15 18:19:02.894, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.78, 65 +2026-05-15T18:19:07+08:00 +2026/05/15 18:19:07.917, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.01, 64 +2026-05-15T18:19:12+08:00 +2026/05/15 18:19:12.944, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.32, 64 +2026-05-15T18:19:17+08:00 +2026/05/15 18:19:17.973, NVIDIA GeForce RTX 5090, 86, 38, 11859, 32607, 362.56, 65 +2026-05-15T18:19:22+08:00 +2026/05/15 18:19:23.000, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.32, 65 +2026-05-15T18:19:28+08:00 +2026/05/15 18:19:28.023, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.15, 64 +2026-05-15T18:19:33+08:00 +2026/05/15 18:19:33.046, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.12, 65 +2026-05-15T18:19:38+08:00 +2026/05/15 18:19:38.069, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.19, 64 +2026-05-15T18:19:43+08:00 +2026/05/15 18:19:43.091, NVIDIA GeForce RTX 5090, 88, 41, 11859, 32607, 362.39, 64 +2026-05-15T18:19:48+08:00 +2026/05/15 18:19:48.115, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 363.74, 64 +2026-05-15T18:19:53+08:00 +2026/05/15 18:19:53.138, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.06, 64 +2026-05-15T18:19:58+08:00 +2026/05/15 18:19:58.161, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.13, 65 +2026-05-15T18:20:03+08:00 +2026/05/15 18:20:03.187, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.45, 64 +2026-05-15T18:20:08+08:00 +2026/05/15 18:20:08.214, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 364.49, 65 +2026-05-15T18:20:13+08:00 +2026/05/15 18:20:13.237, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.87, 65 +2026-05-15T18:20:18+08:00 +2026/05/15 18:20:18.261, NVIDIA GeForce RTX 5090, 85, 37, 11859, 32607, 363.10, 65 +2026-05-15T18:20:23+08:00 +2026/05/15 18:20:23.286, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 363.80, 64 +2026-05-15T18:20:28+08:00 +2026/05/15 18:20:28.309, NVIDIA GeForce RTX 5090, 87, 38, 11859, 32607, 363.74, 64 +2026-05-15T18:20:33+08:00 +2026/05/15 18:20:33.334, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 364.07, 64 +2026-05-15T18:20:38+08:00 +2026/05/15 18:20:38.356, NVIDIA GeForce RTX 5090, 87, 39, 11859, 32607, 364.51, 65 +2026-05-15T18:20:43+08:00 +2026/05/15 18:20:43.381, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 277.62, 65 +2026-05-15T18:20:48+08:00 +2026/05/15 18:20:48.406, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.23, 65 +2026-05-15T18:20:53+08:00 +2026/05/15 18:20:53.430, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.38, 64 +2026-05-15T18:20:58+08:00 +2026/05/15 18:20:58.452, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.71, 64 +2026-05-15T18:21:03+08:00 +2026/05/15 18:21:03.475, NVIDIA GeForce RTX 5090, 88, 41, 11859, 32607, 251.26, 64 +2026-05-15T18:21:08+08:00 +2026/05/15 18:21:08.497, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 306.53, 63 +2026-05-15T18:21:13+08:00 +2026/05/15 18:21:13.521, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.27, 65 +2026-05-15T18:21:18+08:00 +2026/05/15 18:21:18.543, NVIDIA GeForce RTX 5090, 88, 41, 11859, 32607, 364.34, 65 +2026-05-15T18:21:23+08:00 +2026/05/15 18:21:23.567, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.72, 65 +2026-05-15T18:21:28+08:00 +2026/05/15 18:21:28.595, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 361.11, 64 +2026-05-15T18:21:33+08:00 +2026/05/15 18:21:33.618, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 361.92, 65 +2026-05-15T18:21:38+08:00 +2026/05/15 18:21:38.645, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 361.27, 64 +2026-05-15T18:21:43+08:00 +2026/05/15 18:21:43.670, NVIDIA GeForce RTX 5090, 88, 36, 11859, 32607, 362.53, 64 +2026-05-15T18:21:48+08:00 +2026/05/15 18:21:48.695, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 361.69, 65 +2026-05-15T18:21:53+08:00 +2026/05/15 18:21:53.724, NVIDIA GeForce RTX 5090, 88, 38, 11859, 32607, 360.90, 64 +2026-05-15T18:21:58+08:00 +2026/05/15 18:21:58.748, NVIDIA GeForce RTX 5090, 87, 39, 11859, 32607, 360.85, 65 +2026-05-15T18:22:03+08:00 +2026/05/15 18:22:03.772, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.26, 63 +2026-05-15T18:22:08+08:00 +2026/05/15 18:22:08.795, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.82, 64 +2026-05-15T18:22:13+08:00 +2026/05/15 18:22:13.819, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 360.13, 64 +2026-05-15T18:22:18+08:00 +2026/05/15 18:22:18.844, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 360.61, 64 +2026-05-15T18:22:23+08:00 +2026/05/15 18:22:23.868, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 361.76, 64 +2026-05-15T18:22:28+08:00 +2026/05/15 18:22:28.893, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 359.64, 64 +2026-05-15T18:22:33+08:00 +2026/05/15 18:22:33.916, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 360.36, 65 +2026-05-15T18:22:38+08:00 +2026/05/15 18:22:38.944, NVIDIA GeForce RTX 5090, 86, 39, 11859, 32607, 361.42, 65 +2026-05-15T18:22:43+08:00 +2026/05/15 18:22:44.020, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 359.24, 63 +2026-05-15T18:22:49+08:00 +2026/05/15 18:22:49.044, NVIDIA GeForce RTX 5090, 88, 41, 11859, 32607, 362.99, 64 +2026-05-15T18:22:54+08:00 +2026/05/15 18:22:54.067, NVIDIA GeForce RTX 5090, 88, 36, 11859, 32607, 361.45, 64 +2026-05-15T18:22:59+08:00 +2026/05/15 18:22:59.113, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.58, 65 +2026-05-15T18:23:04+08:00 +2026/05/15 18:23:04.157, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.92, 65 +2026-05-15T18:23:09+08:00 +2026/05/15 18:23:09.199, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 332.42, 60 +2026-05-15T18:23:14+08:00 +2026/05/15 18:23:14.256, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.30, 65 +2026-05-15T18:23:19+08:00 +2026/05/15 18:23:19.278, NVIDIA GeForce RTX 5090, 86, 36, 11859, 32607, 362.09, 64 +2026-05-15T18:23:24+08:00 +2026/05/15 18:23:24.321, NVIDIA GeForce RTX 5090, 85, 38, 11859, 32607, 363.57, 64 +2026-05-15T18:23:29+08:00 +2026/05/15 18:23:29.363, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.24, 65 +2026-05-15T18:23:34+08:00 +2026/05/15 18:23:34.428, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 271.06, 63 +2026-05-15T18:23:39+08:00 +2026/05/15 18:23:39.454, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.81, 65 +2026-05-15T18:23:44+08:00 +2026/05/15 18:23:44.478, NVIDIA GeForce RTX 5090, 88, 41, 11859, 32607, 364.08, 64 +2026-05-15T18:23:49+08:00 +2026/05/15 18:23:49.501, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.09, 65 +2026-05-15T18:23:54+08:00 +2026/05/15 18:23:54.524, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.76, 64 +2026-05-15T18:23:59+08:00 +2026/05/15 18:23:59.547, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 361.61, 64 +2026-05-15T18:24:04+08:00 +2026/05/15 18:24:04.574, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 362.66, 65 +2026-05-15T18:24:09+08:00 +2026/05/15 18:24:09.598, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.89, 64 +2026-05-15T18:24:14+08:00 +2026/05/15 18:24:14.622, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 362.55, 64 +2026-05-15T18:24:19+08:00 +2026/05/15 18:24:19.645, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.37, 65 +2026-05-15T18:24:24+08:00 +2026/05/15 18:24:24.667, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 362.51, 65 +2026-05-15T18:24:29+08:00 +2026/05/15 18:24:29.693, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.64, 65 +2026-05-15T18:24:34+08:00 +2026/05/15 18:24:34.715, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.16, 64 +2026-05-15T18:24:39+08:00 +2026/05/15 18:24:39.739, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.98, 65 +2026-05-15T18:24:44+08:00 +2026/05/15 18:24:44.764, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.44, 64 +2026-05-15T18:24:49+08:00 +2026/05/15 18:24:49.787, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 263.11, 64 +2026-05-15T18:24:54+08:00 +2026/05/15 18:24:54.811, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.56, 65 +2026-05-15T18:24:59+08:00 +2026/05/15 18:24:59.836, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 362.75, 64 +2026-05-15T18:25:04+08:00 +2026/05/15 18:25:04.860, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.33, 65 +2026-05-15T18:25:09+08:00 +2026/05/15 18:25:09.883, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.36, 65 +2026-05-15T18:25:14+08:00 +2026/05/15 18:25:14.909, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 362.96, 64 +2026-05-15T18:25:19+08:00 +2026/05/15 18:25:19.933, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 363.00, 65 +2026-05-15T18:25:24+08:00 +2026/05/15 18:25:24.956, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 362.01, 63 +2026-05-15T18:25:29+08:00 +2026/05/15 18:25:29.980, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.70, 64 +2026-05-15T18:25:34+08:00 +2026/05/15 18:25:35.002, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 278.32, 59 +2026-05-15T18:25:40+08:00 +2026/05/15 18:25:40.028, NVIDIA GeForce RTX 5090, 85, 37, 11859, 32607, 362.39, 64 +2026-05-15T18:25:45+08:00 +2026/05/15 18:25:45.052, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 362.80, 64 +2026-05-15T18:25:50+08:00 +2026/05/15 18:25:50.080, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.27, 65 +2026-05-15T18:25:55+08:00 +2026/05/15 18:25:55.104, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.27, 65 +2026-05-15T18:26:00+08:00 +2026/05/15 18:26:00.128, NVIDIA GeForce RTX 5090, 84, 37, 11859, 32607, 304.68, 64 +2026-05-15T18:26:05+08:00 +2026/05/15 18:26:05.152, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.26, 65 +2026-05-15T18:26:10+08:00 +2026/05/15 18:26:10.176, NVIDIA GeForce RTX 5090, 0, 0, 11859, 32607, 239.28, 63 +2026-05-15T18:26:15+08:00 +2026/05/15 18:26:15.202, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.41, 65 +2026-05-15T18:26:20+08:00 +2026/05/15 18:26:20.224, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 362.87, 64 +2026-05-15T18:26:25+08:00 +2026/05/15 18:26:25.247, NVIDIA GeForce RTX 5090, 88, 41, 11859, 32607, 362.22, 65 +2026-05-15T18:26:30+08:00 +2026/05/15 18:26:30.272, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.51, 65 +2026-05-15T18:26:35+08:00 +2026/05/15 18:26:35.295, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 364.00, 64 +2026-05-15T18:26:40+08:00 +2026/05/15 18:26:40.325, NVIDIA GeForce RTX 5090, 88, 39, 11859, 32607, 363.99, 65 +2026-05-15T18:26:45+08:00 +2026/05/15 18:26:45.352, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.87, 65 +2026-05-15T18:26:50+08:00 +2026/05/15 18:26:50.378, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 363.74, 64 +2026-05-15T18:26:55+08:00 +2026/05/15 18:26:55.401, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.65, 64 +2026-05-15T18:27:00+08:00 +2026/05/15 18:27:00.426, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 362.29, 65 +2026-05-15T18:27:05+08:00 +2026/05/15 18:27:05.451, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.26, 66 +2026-05-15T18:27:10+08:00 +2026/05/15 18:27:10.476, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.80, 64 +2026-05-15T18:27:15+08:00 +2026/05/15 18:27:15.501, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.66, 64 +2026-05-15T18:27:20+08:00 +2026/05/15 18:27:20.525, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.56, 64 +2026-05-15T18:27:25+08:00 +2026/05/15 18:27:25.552, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 363.46, 65 +2026-05-15T18:27:30+08:00 +2026/05/15 18:27:30.577, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.68, 64 +2026-05-15T18:27:35+08:00 +2026/05/15 18:27:35.600, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.27, 65 +2026-05-15T18:27:40+08:00 +2026/05/15 18:27:40.623, NVIDIA GeForce RTX 5090, 88, 40, 11859, 32607, 365.10, 65 +2026-05-15T18:27:45+08:00 +2026/05/15 18:27:45.647, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.54, 65 +2026-05-15T18:27:50+08:00 +2026/05/15 18:27:50.671, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.77, 65 +2026-05-15T18:27:55+08:00 +2026/05/15 18:27:55.695, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.71, 64 +2026-05-15T18:28:00+08:00 +2026/05/15 18:28:00.720, NVIDIA GeForce RTX 5090, 0, 0, 11859, 32607, 287.80, 60 +2026-05-15T18:28:05+08:00 +2026/05/15 18:28:05.744, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.61, 65 +2026-05-15T18:28:10+08:00 +2026/05/15 18:28:10.766, NVIDIA GeForce RTX 5090, 87, 38, 11859, 32607, 363.97, 65 +2026-05-15T18:28:15+08:00 +2026/05/15 18:28:15.809, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 363.95, 65 +2026-05-15T18:28:20+08:00 +2026/05/15 18:28:20.870, NVIDIA GeForce RTX 5090, 86, 39, 11859, 32607, 363.25, 64 +2026-05-15T18:28:25+08:00 +2026/05/15 18:28:25.893, NVIDIA GeForce RTX 5090, 0, 0, 11859, 32607, 238.48, 64 +2026-05-15T18:28:30+08:00 +2026/05/15 18:28:30.916, NVIDIA GeForce RTX 5090, 87, 39, 11859, 32607, 362.24, 65 +2026-05-15T18:28:35+08:00 +2026/05/15 18:28:35.962, NVIDIA GeForce RTX 5090, 84, 37, 11859, 32607, 362.37, 64 +2026-05-15T18:28:40+08:00 +2026/05/15 18:28:41.006, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.80, 64 +2026-05-15T18:28:46+08:00 +2026/05/15 18:28:46.049, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 362.28, 63 +2026-05-15T18:28:51+08:00 +2026/05/15 18:28:51.073, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.45, 65 +2026-05-15T18:28:56+08:00 +2026/05/15 18:28:56.097, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 361.81, 64 +2026-05-15T18:29:01+08:00 +2026/05/15 18:29:01.119, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.56, 65 +2026-05-15T18:29:06+08:00 +2026/05/15 18:29:06.157, NVIDIA GeForce RTX 5090, 84, 37, 11859, 32607, 362.54, 64 +2026-05-15T18:29:11+08:00 +2026/05/15 18:29:11.184, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.48, 65 +2026-05-15T18:29:16+08:00 +2026/05/15 18:29:16.208, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.58, 65 +2026-05-15T18:29:21+08:00 +2026/05/15 18:29:21.237, NVIDIA GeForce RTX 5090, 87, 39, 11859, 32607, 362.15, 64 +2026-05-15T18:29:26+08:00 +2026/05/15 18:29:26.263, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.01, 65 +2026-05-15T18:29:31+08:00 +2026/05/15 18:29:31.285, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.70, 65 +2026-05-15T18:29:36+08:00 +2026/05/15 18:29:36.310, NVIDIA GeForce RTX 5090, 33, 12, 11859, 32607, 239.23, 63 +2026-05-15T18:29:41+08:00 +2026/05/15 18:29:41.336, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.00, 64 +2026-05-15T18:29:46+08:00 +2026/05/15 18:29:46.359, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.39, 64 +2026-05-15T18:29:51+08:00 +2026/05/15 18:29:51.383, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.47, 66 +2026-05-15T18:29:56+08:00 +2026/05/15 18:29:56.412, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.62, 64 +2026-05-15T18:30:01+08:00 +2026/05/15 18:30:01.436, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.55, 65 +2026-05-15T18:30:06+08:00 +2026/05/15 18:30:06.462, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.66, 65 +2026-05-15T18:30:11+08:00 +2026/05/15 18:30:11.487, NVIDIA GeForce RTX 5090, 87, 39, 11859, 32607, 364.76, 65 +2026-05-15T18:30:16+08:00 +2026/05/15 18:30:16.512, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.10, 65 +2026-05-15T18:30:21+08:00 +2026/05/15 18:30:21.534, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.07, 64 +2026-05-15T18:30:26+08:00 +2026/05/15 18:30:26.558, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 269.43, 63 +2026-05-15T18:30:31+08:00 +2026/05/15 18:30:31.582, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 364.34, 65 +2026-05-15T18:30:36+08:00 +2026/05/15 18:30:36.605, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.18, 65 +2026-05-15T18:30:41+08:00 +2026/05/15 18:30:41.626, NVIDIA GeForce RTX 5090, 84, 36, 11859, 32607, 363.82, 64 +2026-05-15T18:30:46+08:00 +2026/05/15 18:30:46.651, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.23, 65 +2026-05-15T18:30:51+08:00 +2026/05/15 18:30:51.673, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 279.87, 64 +2026-05-15T18:30:56+08:00 +2026/05/15 18:30:56.696, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 362.74, 65 +2026-05-15T18:31:01+08:00 +2026/05/15 18:31:01.721, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.66, 64 +2026-05-15T18:31:06+08:00 +2026/05/15 18:31:06.745, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 363.30, 65 +2026-05-15T18:31:11+08:00 +2026/05/15 18:31:11.768, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.67, 64 +2026-05-15T18:31:16+08:00 +2026/05/15 18:31:16.794, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.60, 64 +2026-05-15T18:31:21+08:00 +2026/05/15 18:31:21.818, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 363.90, 64 +2026-05-15T18:31:26+08:00 +2026/05/15 18:31:26.842, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 364.65, 64 +2026-05-15T18:31:31+08:00 +2026/05/15 18:31:31.866, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.54, 65 +2026-05-15T18:31:36+08:00 +2026/05/15 18:31:36.889, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.93, 65 +2026-05-15T18:31:41+08:00 +2026/05/15 18:31:41.921, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 363.60, 65 +2026-05-15T18:31:46+08:00 +2026/05/15 18:31:46.945, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 354.58, 64 +2026-05-15T18:31:51+08:00 +2026/05/15 18:31:51.969, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.58, 65 +2026-05-15T18:31:56+08:00 +2026/05/15 18:31:56.993, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 363.66, 65 +2026-05-15T18:32:02+08:00 +2026/05/15 18:32:02.019, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.96, 64 +2026-05-15T18:32:07+08:00 +2026/05/15 18:32:07.042, NVIDIA GeForce RTX 5090, 85, 37, 11859, 32607, 362.99, 63 +2026-05-15T18:32:12+08:00 +2026/05/15 18:32:12.066, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 363.42, 64 +2026-05-15T18:32:17+08:00 +2026/05/15 18:32:17.089, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.83, 65 +2026-05-15T18:32:22+08:00 +2026/05/15 18:32:22.112, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.29, 64 +2026-05-15T18:32:27+08:00 +2026/05/15 18:32:27.158, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.58, 65 +2026-05-15T18:32:32+08:00 +2026/05/15 18:32:32.179, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 364.14, 65 +2026-05-15T18:32:37+08:00 +2026/05/15 18:32:37.203, NVIDIA GeForce RTX 5090, 85, 37, 11859, 32607, 363.98, 63 +2026-05-15T18:32:42+08:00 +2026/05/15 18:32:42.227, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.04, 65 +2026-05-15T18:32:47+08:00 +2026/05/15 18:32:47.250, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.27, 64 +2026-05-15T18:32:52+08:00 +2026/05/15 18:32:52.276, NVIDIA GeForce RTX 5090, 0, 0, 11859, 32607, 279.82, 65 +2026-05-15T18:32:57+08:00 +2026/05/15 18:32:57.299, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.43, 65 +2026-05-15T18:33:02+08:00 +2026/05/15 18:33:02.325, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.25, 64 +2026-05-15T18:33:07+08:00 +2026/05/15 18:33:07.348, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.40, 64 +2026-05-15T18:33:12+08:00 +2026/05/15 18:33:12.371, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.10, 64 +2026-05-15T18:33:17+08:00 +2026/05/15 18:33:17.397, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.32, 64 +2026-05-15T18:33:22+08:00 +2026/05/15 18:33:22.424, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 364.83, 65 +2026-05-15T18:33:27+08:00 +2026/05/15 18:33:27.448, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.80, 65 +2026-05-15T18:33:32+08:00 +2026/05/15 18:33:32.471, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.38, 65 +2026-05-15T18:33:37+08:00 +2026/05/15 18:33:37.495, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.31, 63 +2026-05-15T18:33:42+08:00 +2026/05/15 18:33:42.520, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 325.85, 63 +2026-05-15T18:33:47+08:00 +2026/05/15 18:33:47.546, NVIDIA GeForce RTX 5090, 85, 36, 11859, 32607, 363.54, 64 +2026-05-15T18:33:52+08:00 +2026/05/15 18:33:52.572, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.75, 64 +2026-05-15T18:33:57+08:00 +2026/05/15 18:33:57.598, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 249.66, 64 +2026-05-15T18:34:02+08:00 +2026/05/15 18:34:02.622, NVIDIA GeForce RTX 5090, 85, 39, 11859, 32607, 362.58, 64 +2026-05-15T18:34:07+08:00 +2026/05/15 18:34:07.645, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 362.70, 64 +2026-05-15T18:34:12+08:00 +2026/05/15 18:34:12.668, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 362.93, 66 +2026-05-15T18:34:17+08:00 +2026/05/15 18:34:17.692, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.01, 64 +2026-05-15T18:34:22+08:00 +2026/05/15 18:34:22.719, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.02, 64 +2026-05-15T18:34:27+08:00 +2026/05/15 18:34:27.744, NVIDIA GeForce RTX 5090, 85, 38, 11859, 32607, 363.91, 65 +2026-05-15T18:34:32+08:00 +2026/05/15 18:34:32.769, NVIDIA GeForce RTX 5090, 88, 41, 11859, 32607, 364.30, 65 +2026-05-15T18:34:37+08:00 +2026/05/15 18:34:37.793, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.03, 64 +2026-05-15T18:34:42+08:00 +2026/05/15 18:34:42.817, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.90, 65 +2026-05-15T18:34:47+08:00 +2026/05/15 18:34:47.841, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.90, 65 +2026-05-15T18:34:52+08:00 +2026/05/15 18:34:52.863, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 363.32, 64 +2026-05-15T18:34:57+08:00 +2026/05/15 18:34:57.905, NVIDIA GeForce RTX 5090, 87, 39, 11859, 32607, 363.11, 64 +2026-05-15T18:35:02+08:00 +2026/05/15 18:35:02.948, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.49, 65 +2026-05-15T18:35:07+08:00 +2026/05/15 18:35:07.975, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.86, 64 +2026-05-15T18:35:12+08:00 +2026/05/15 18:35:13.001, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.96, 65 +2026-05-15T18:35:18+08:00 +2026/05/15 18:35:18.026, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 364.74, 65 +2026-05-15T18:35:23+08:00 +2026/05/15 18:35:23.049, NVIDIA GeForce RTX 5090, 85, 36, 11859, 32607, 363.19, 63 +2026-05-15T18:35:28+08:00 +2026/05/15 18:35:28.072, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.90, 65 +2026-05-15T18:35:33+08:00 +2026/05/15 18:35:33.094, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.01, 64 +2026-05-15T18:35:38+08:00 +2026/05/15 18:35:38.138, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 363.40, 65 +2026-05-15T18:35:43+08:00 +2026/05/15 18:35:43.178, NVIDIA GeForce RTX 5090, 88, 41, 11859, 32607, 268.46, 63 +2026-05-15T18:35:48+08:00 +2026/05/15 18:35:48.234, NVIDIA GeForce RTX 5090, 87, 36, 11859, 32607, 357.64, 63 +2026-05-15T18:35:53+08:00 +2026/05/15 18:35:53.259, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 361.37, 65 +2026-05-15T18:35:58+08:00 +2026/05/15 18:35:58.298, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.38, 64 +2026-05-15T18:36:03+08:00 +2026/05/15 18:36:03.344, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.79, 65 +2026-05-15T18:36:08+08:00 +2026/05/15 18:36:08.387, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.73, 64 +2026-05-15T18:36:13+08:00 +2026/05/15 18:36:13.426, NVIDIA GeForce RTX 5090, 0, 0, 11859, 32607, 304.51, 59 +2026-05-15T18:36:18+08:00 +2026/05/15 18:36:18.469, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 361.16, 64 +2026-05-15T18:36:23+08:00 +2026/05/15 18:36:23.513, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.32, 65 +2026-05-15T18:36:28+08:00 +2026/05/15 18:36:28.557, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 361.05, 64 +2026-05-15T18:36:33+08:00 +2026/05/15 18:36:33.580, NVIDIA GeForce RTX 5090, 87, 41, 11859, 32607, 361.43, 65 +2026-05-15T18:36:38+08:00 +2026/05/15 18:36:38.622, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 361.74, 64 +2026-05-15T18:36:43+08:00 +2026/05/15 18:36:43.646, NVIDIA GeForce RTX 5090, 86, 39, 11859, 32607, 362.59, 65 +2026-05-15T18:36:48+08:00 +2026/05/15 18:36:48.675, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.45, 65 +2026-05-15T18:36:53+08:00 +2026/05/15 18:36:53.698, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 362.87, 65 +2026-05-15T18:36:58+08:00 +2026/05/15 18:36:58.722, NVIDIA GeForce RTX 5090, 87, 36, 11859, 32607, 359.73, 64 +2026-05-15T18:37:03+08:00 +2026/05/15 18:37:03.745, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 361.04, 65 +2026-05-15T18:37:08+08:00 +2026/05/15 18:37:08.772, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 359.83, 65 +2026-05-15T18:37:13+08:00 +2026/05/15 18:37:13.797, NVIDIA GeForce RTX 5090, 87, 41, 11859, 32607, 359.99, 65 +2026-05-15T18:37:18+08:00 +2026/05/15 18:37:18.821, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 361.27, 65 +2026-05-15T18:37:23+08:00 +2026/05/15 18:37:23.845, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 359.66, 64 +2026-05-15T18:37:28+08:00 +2026/05/15 18:37:28.869, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 361.35, 64 +2026-05-15T18:37:33+08:00 +2026/05/15 18:37:33.892, NVIDIA GeForce RTX 5090, 87, 38, 11859, 32607, 361.03, 65 +2026-05-15T18:37:38+08:00 +2026/05/15 18:37:38.915, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 361.14, 65 +2026-05-15T18:37:43+08:00 +2026/05/15 18:37:43.939, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 359.44, 65 +2026-05-15T18:37:48+08:00 +2026/05/15 18:37:48.962, NVIDIA GeForce RTX 5090, 88, 38, 11859, 32607, 361.40, 65 +2026-05-15T18:37:53+08:00 +2026/05/15 18:37:53.988, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.18, 65 +2026-05-15T18:37:58+08:00 +2026/05/15 18:37:59.012, NVIDIA GeForce RTX 5090, 87, 36, 11859, 32607, 361.10, 64 +2026-05-15T18:38:04+08:00 +2026/05/15 18:38:04.035, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 361.84, 65 +2026-05-15T18:38:09+08:00 +2026/05/15 18:38:09.060, NVIDIA GeForce RTX 5090, 87, 36, 11859, 32607, 361.31, 65 +2026-05-15T18:38:14+08:00 +2026/05/15 18:38:14.085, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 360.95, 64 +2026-05-15T18:38:19+08:00 +2026/05/15 18:38:19.109, NVIDIA GeForce RTX 5090, 87, 35, 11859, 32607, 359.03, 65 +2026-05-15T18:38:24+08:00 +2026/05/15 18:38:24.132, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 360.46, 64 +2026-05-15T18:38:29+08:00 +2026/05/15 18:38:29.161, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 353.61, 65 +2026-05-15T18:38:34+08:00 +2026/05/15 18:38:34.183, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 317.94, 59 +2026-05-15T18:38:39+08:00 +2026/05/15 18:38:39.213, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.79, 65 +2026-05-15T18:38:44+08:00 +2026/05/15 18:38:44.237, NVIDIA GeForce RTX 5090, 86, 39, 11859, 32607, 361.58, 64 +2026-05-15T18:38:49+08:00 +2026/05/15 18:38:49.260, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.52, 65 +2026-05-15T18:38:54+08:00 +2026/05/15 18:38:54.287, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 362.16, 64 +2026-05-15T18:38:59+08:00 +2026/05/15 18:38:59.311, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 275.33, 65 +2026-05-15T18:39:04+08:00 +2026/05/15 18:39:04.336, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 362.69, 64 +2026-05-15T18:39:09+08:00 +2026/05/15 18:39:09.364, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.15, 64 +2026-05-15T18:39:14+08:00 +2026/05/15 18:39:14.388, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.21, 66 +2026-05-15T18:39:19+08:00 +2026/05/15 18:39:19.412, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.18, 65 +2026-05-15T18:39:24+08:00 +2026/05/15 18:39:24.437, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 361.41, 65 +2026-05-15T18:39:29+08:00 +2026/05/15 18:39:29.460, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.56, 65 +2026-05-15T18:39:34+08:00 +2026/05/15 18:39:34.484, NVIDIA GeForce RTX 5090, 65, 23, 11859, 32607, 353.69, 64 +2026-05-15T18:39:39+08:00 +2026/05/15 18:39:39.509, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 361.93, 64 +2026-05-15T18:39:44+08:00 +2026/05/15 18:39:44.533, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.06, 66 +2026-05-15T18:39:49+08:00 +2026/05/15 18:39:49.559, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 361.58, 64 +2026-05-15T18:39:54+08:00 +2026/05/15 18:39:54.585, NVIDIA GeForce RTX 5090, 86, 40, 11859, 32607, 362.93, 65 +2026-05-15T18:39:59+08:00 +2026/05/15 18:39:59.608, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.74, 64 +2026-05-15T18:40:04+08:00 +2026/05/15 18:40:04.633, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 363.35, 65 +2026-05-15T18:40:09+08:00 +2026/05/15 18:40:09.659, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.09, 65 +2026-05-15T18:40:14+08:00 +2026/05/15 18:40:14.680, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 363.72, 65 +2026-05-15T18:40:19+08:00 +2026/05/15 18:40:19.703, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 361.72, 64 +2026-05-15T18:40:24+08:00 +2026/05/15 18:40:24.727, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 360.88, 64 +2026-05-15T18:40:29+08:00 +2026/05/15 18:40:29.752, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 361.89, 65 +2026-05-15T18:40:34+08:00 +2026/05/15 18:40:34.781, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 356.11, 65 +2026-05-15T18:40:39+08:00 +2026/05/15 18:40:39.810, NVIDIA GeForce RTX 5090, 88, 40, 11859, 32607, 361.29, 65 +2026-05-15T18:40:44+08:00 +2026/05/15 18:40:44.837, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 360.42, 65 +2026-05-15T18:40:49+08:00 +2026/05/15 18:40:49.862, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.75, 65 +2026-05-15T18:40:54+08:00 +2026/05/15 18:40:54.886, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 361.64, 64 +2026-05-15T18:40:59+08:00 +2026/05/15 18:40:59.912, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 324.09, 60 +2026-05-15T18:41:04+08:00 +2026/05/15 18:41:04.932, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 361.98, 65 +2026-05-15T18:41:09+08:00 +2026/05/15 18:41:09.956, NVIDIA GeForce RTX 5090, 88, 36, 11859, 32607, 362.34, 65 +2026-05-15T18:41:14+08:00 +2026/05/15 18:41:14.985, NVIDIA GeForce RTX 5090, 88, 36, 11859, 32607, 360.55, 66 +2026-05-15T18:41:19+08:00 +2026/05/15 18:41:20.008, NVIDIA GeForce RTX 5090, 88, 41, 11859, 32607, 362.86, 65 +2026-05-15T18:41:25+08:00 +2026/05/15 18:41:25.032, NVIDIA GeForce RTX 5090, 45, 16, 11859, 32607, 276.32, 65 +2026-05-15T18:41:30+08:00 +2026/05/15 18:41:30.058, NVIDIA GeForce RTX 5090, 86, 39, 11859, 32607, 363.23, 65 +2026-05-15T18:41:35+08:00 +2026/05/15 18:41:35.082, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.06, 65 +2026-05-15T18:41:40+08:00 +2026/05/15 18:41:40.105, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.39, 65 +2026-05-15T18:41:45+08:00 +2026/05/15 18:41:45.130, NVIDIA GeForce RTX 5090, 88, 40, 11859, 32607, 361.77, 65 +2026-05-15T18:41:50+08:00 +2026/05/15 18:41:50.153, NVIDIA GeForce RTX 5090, 88, 36, 11859, 32607, 297.18, 65 +2026-05-15T18:41:55+08:00 +2026/05/15 18:41:55.176, NVIDIA GeForce RTX 5090, 88, 40, 11859, 32607, 361.82, 65 +2026-05-15T18:42:00+08:00 +2026/05/15 18:42:00.201, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.22, 64 +2026-05-15T18:42:05+08:00 +2026/05/15 18:42:05.225, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.56, 66 +2026-05-15T18:42:10+08:00 +2026/05/15 18:42:10.251, NVIDIA GeForce RTX 5090, 88, 40, 11859, 32607, 361.35, 65 +2026-05-15T18:42:15+08:00 +2026/05/15 18:42:15.274, NVIDIA GeForce RTX 5090, 88, 36, 11859, 32607, 362.09, 65 +2026-05-15T18:42:20+08:00 +2026/05/15 18:42:20.299, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.17, 65 +2026-05-15T18:42:25+08:00 +2026/05/15 18:42:25.325, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 361.85, 64 +2026-05-15T18:42:30+08:00 +2026/05/15 18:42:30.347, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 363.80, 66 +2026-05-15T18:42:35+08:00 +2026/05/15 18:42:35.370, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.71, 64 +2026-05-15T18:42:40+08:00 +2026/05/15 18:42:40.397, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.20, 65 +2026-05-15T18:42:45+08:00 +2026/05/15 18:42:45.424, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.40, 65 +2026-05-15T18:42:50+08:00 +2026/05/15 18:42:50.447, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.41, 64 +2026-05-15T18:42:55+08:00 +2026/05/15 18:42:55.470, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.98, 65 +2026-05-15T18:43:00+08:00 +2026/05/15 18:43:00.495, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 365.61, 65 +2026-05-15T18:43:05+08:00 +2026/05/15 18:43:05.518, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.08, 66 +2026-05-15T18:43:10+08:00 +2026/05/15 18:43:10.543, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.14, 65 +2026-05-15T18:43:15+08:00 +2026/05/15 18:43:15.567, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.81, 64 +2026-05-15T18:43:20+08:00 +2026/05/15 18:43:20.592, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.78, 65 +2026-05-15T18:43:25+08:00 +2026/05/15 18:43:25.622, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 365.38, 66 +2026-05-15T18:43:30+08:00 +2026/05/15 18:43:30.645, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.36, 66 +2026-05-15T18:43:35+08:00 +2026/05/15 18:43:35.669, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.94, 66 +2026-05-15T18:43:40+08:00 +2026/05/15 18:43:40.692, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 364.27, 65 +2026-05-15T18:43:45+08:00 +2026/05/15 18:43:45.715, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.94, 64 +2026-05-15T18:43:50+08:00 +2026/05/15 18:43:50.739, NVIDIA GeForce RTX 5090, 0, 0, 11859, 32607, 253.59, 60 +2026-05-15T18:43:55+08:00 +2026/05/15 18:43:55.761, NVIDIA GeForce RTX 5090, 85, 36, 11859, 32607, 364.49, 65 +2026-05-15T18:44:00+08:00 +2026/05/15 18:44:00.783, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.17, 66 +2026-05-15T18:44:05+08:00 +2026/05/15 18:44:05.807, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 363.86, 64 +2026-05-15T18:44:10+08:00 +2026/05/15 18:44:10.831, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.95, 65 +2026-05-15T18:44:15+08:00 +2026/05/15 18:44:15.854, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 281.22, 65 +2026-05-15T18:44:20+08:00 +2026/05/15 18:44:20.878, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 364.82, 65 +2026-05-15T18:44:25+08:00 +2026/05/15 18:44:25.902, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.08, 66 +2026-05-15T18:44:30+08:00 +2026/05/15 18:44:30.928, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 365.51, 66 +2026-05-15T18:44:35+08:00 +2026/05/15 18:44:35.954, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 365.18, 65 +2026-05-15T18:44:40+08:00 +2026/05/15 18:44:40.982, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.69, 65 +2026-05-15T18:44:45+08:00 +2026/05/15 18:44:46.005, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.73, 65 +2026-05-15T18:44:51+08:00 +2026/05/15 18:44:51.028, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.05, 65 +2026-05-15T18:44:56+08:00 +2026/05/15 18:44:56.052, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.54, 66 +2026-05-15T18:45:01+08:00 +2026/05/15 18:45:01.075, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.15, 65 +2026-05-15T18:45:06+08:00 +2026/05/15 18:45:06.100, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.12, 64 +2026-05-15T18:45:11+08:00 +2026/05/15 18:45:11.124, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.04, 65 +2026-05-15T18:45:16+08:00 +2026/05/15 18:45:16.149, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.15, 65 +2026-05-15T18:45:21+08:00 +2026/05/15 18:45:21.171, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.65, 65 +2026-05-15T18:45:26+08:00 +2026/05/15 18:45:26.195, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.62, 65 +2026-05-15T18:45:31+08:00 +2026/05/15 18:45:31.220, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.98, 64 +2026-05-15T18:45:36+08:00 +2026/05/15 18:45:36.243, NVIDIA GeForce RTX 5090, 88, 41, 11859, 32607, 364.34, 65 +2026-05-15T18:45:41+08:00 +2026/05/15 18:45:41.267, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.76, 66 +2026-05-15T18:45:46+08:00 +2026/05/15 18:45:46.289, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.04, 66 +2026-05-15T18:45:51+08:00 +2026/05/15 18:45:51.312, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.09, 65 +2026-05-15T18:45:56+08:00 +2026/05/15 18:45:56.333, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.07, 65 +2026-05-15T18:46:01+08:00 +2026/05/15 18:46:01.358, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.42, 65 +2026-05-15T18:46:06+08:00 +2026/05/15 18:46:06.386, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.97, 65 +2026-05-15T18:46:11+08:00 +2026/05/15 18:46:11.412, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 249.80, 66 +2026-05-15T18:46:16+08:00 +2026/05/15 18:46:16.439, NVIDIA GeForce RTX 5090, 86, 38, 11859, 32607, 279.38, 65 +2026-05-15T18:46:21+08:00 +2026/05/15 18:46:21.464, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.77, 65 +2026-05-15T18:46:26+08:00 +2026/05/15 18:46:26.489, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.14, 64 +2026-05-15T18:46:31+08:00 +2026/05/15 18:46:31.513, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.59, 66 +2026-05-15T18:46:36+08:00 +2026/05/15 18:46:36.537, NVIDIA GeForce RTX 5090, 88, 41, 11859, 32607, 365.85, 66 +2026-05-15T18:46:41+08:00 +2026/05/15 18:46:41.559, NVIDIA GeForce RTX 5090, 88, 41, 11859, 32607, 366.28, 66 +2026-05-15T18:46:46+08:00 +2026/05/15 18:46:46.587, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 366.65, 66 +2026-05-15T18:46:51+08:00 +2026/05/15 18:46:51.610, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 364.82, 66 +2026-05-15T18:46:56+08:00 +2026/05/15 18:46:56.635, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.23, 65 +2026-05-15T18:47:01+08:00 +2026/05/15 18:47:01.658, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.10, 65 +2026-05-15T18:47:06+08:00 +2026/05/15 18:47:06.681, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.67, 65 +2026-05-15T18:47:11+08:00 +2026/05/15 18:47:11.705, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.63, 65 +2026-05-15T18:47:16+08:00 +2026/05/15 18:47:16.729, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.57, 65 +2026-05-15T18:47:21+08:00 +2026/05/15 18:47:21.753, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 240.19, 63 +2026-05-15T18:47:26+08:00 +2026/05/15 18:47:26.779, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.68, 66 +2026-05-15T18:47:31+08:00 +2026/05/15 18:47:31.809, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.88, 65 +2026-05-15T18:47:36+08:00 +2026/05/15 18:47:36.831, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.93, 64 +2026-05-15T18:47:41+08:00 +2026/05/15 18:47:41.855, NVIDIA GeForce RTX 5090, 88, 38, 11859, 32607, 364.50, 66 +2026-05-15T18:47:46+08:00 +2026/05/15 18:47:46.880, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 364.69, 66 +2026-05-15T18:47:51+08:00 +2026/05/15 18:47:51.906, NVIDIA GeForce RTX 5090, 87, 38, 11859, 32607, 364.32, 66 +2026-05-15T18:47:56+08:00 +2026/05/15 18:47:56.932, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.09, 66 +2026-05-15T18:48:01+08:00 +2026/05/15 18:48:01.956, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.75, 66 +2026-05-15T18:48:06+08:00 +2026/05/15 18:48:06.979, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 364.21, 65 +2026-05-15T18:48:11+08:00 +2026/05/15 18:48:12.004, NVIDIA GeForce RTX 5090, 87, 41, 11859, 32607, 363.87, 66 +2026-05-15T18:48:17+08:00 +2026/05/15 18:48:17.034, NVIDIA GeForce RTX 5090, 57, 26, 11859, 32607, 275.69, 65 +2026-05-15T18:48:22+08:00 +2026/05/15 18:48:22.058, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 363.48, 65 +2026-05-15T18:48:27+08:00 +2026/05/15 18:48:27.097, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.85, 66 +2026-05-15T18:48:32+08:00 +2026/05/15 18:48:32.150, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 363.48, 65 +2026-05-15T18:48:37+08:00 +2026/05/15 18:48:37.192, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.17, 65 +2026-05-15T18:48:42+08:00 +2026/05/15 18:48:42.226, NVIDIA GeForce RTX 5090, 21, 7, 11859, 32607, 268.28, 64 +2026-05-15T18:48:47+08:00 +2026/05/15 18:48:47.268, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.47, 66 +2026-05-15T18:48:52+08:00 +2026/05/15 18:48:52.312, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.62, 65 +2026-05-15T18:48:57+08:00 +2026/05/15 18:48:57.357, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.95, 65 +2026-05-15T18:49:02+08:00 +2026/05/15 18:49:02.404, NVIDIA GeForce RTX 5090, 87, 38, 11859, 32607, 364.79, 65 +2026-05-15T18:49:07+08:00 +2026/05/15 18:49:07.436, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.74, 65 +2026-05-15T18:49:12+08:00 +2026/05/15 18:49:12.460, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.13, 66 +2026-05-15T18:49:17+08:00 +2026/05/15 18:49:17.501, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 363.92, 66 +2026-05-15T18:49:22+08:00 +2026/05/15 18:49:22.545, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.99, 66 +2026-05-15T18:49:27+08:00 +2026/05/15 18:49:27.585, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 363.55, 66 +2026-05-15T18:49:32+08:00 +2026/05/15 18:49:32.612, NVIDIA GeForce RTX 5090, 84, 37, 11859, 32607, 364.67, 66 +2026-05-15T18:49:37+08:00 +2026/05/15 18:49:37.639, NVIDIA GeForce RTX 5090, 0, 0, 11859, 32607, 332.60, 61 +2026-05-15T18:49:42+08:00 +2026/05/15 18:49:42.662, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 364.54, 66 +2026-05-15T18:49:47+08:00 +2026/05/15 18:49:47.685, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.51, 65 +2026-05-15T18:49:52+08:00 +2026/05/15 18:49:52.711, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.26, 65 +2026-05-15T18:49:57+08:00 +2026/05/15 18:49:57.734, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 365.27, 65 +2026-05-15T18:50:02+08:00 +2026/05/15 18:50:02.757, NVIDIA GeForce RTX 5090, 85, 37, 11859, 32607, 359.81, 64 +2026-05-15T18:50:07+08:00 +2026/05/15 18:50:07.781, NVIDIA GeForce RTX 5090, 87, 38, 11859, 32607, 364.43, 65 +2026-05-15T18:50:12+08:00 +2026/05/15 18:50:12.806, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.36, 64 +2026-05-15T18:50:17+08:00 +2026/05/15 18:50:17.831, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 364.65, 65 +2026-05-15T18:50:22+08:00 +2026/05/15 18:50:22.854, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.63, 65 +2026-05-15T18:50:27+08:00 +2026/05/15 18:50:27.882, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.44, 65 +2026-05-15T18:50:32+08:00 +2026/05/15 18:50:32.908, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 363.72, 65 +2026-05-15T18:50:37+08:00 +2026/05/15 18:50:37.932, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.41, 65 +2026-05-15T18:50:42+08:00 +2026/05/15 18:50:42.958, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 364.33, 65 +2026-05-15T18:50:47+08:00 +2026/05/15 18:50:47.985, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.01, 65 +2026-05-15T18:50:52+08:00 +2026/05/15 18:50:53.010, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 361.26, 65 +2026-05-15T18:50:58+08:00 +2026/05/15 18:50:58.033, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 362.21, 65 +2026-05-15T18:51:03+08:00 +2026/05/15 18:51:03.056, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 360.27, 65 +2026-05-15T18:51:08+08:00 +2026/05/15 18:51:08.079, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 360.09, 65 +2026-05-15T18:51:13+08:00 +2026/05/15 18:51:13.101, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.72, 65 +2026-05-15T18:51:18+08:00 +2026/05/15 18:51:18.126, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.16, 65 +2026-05-15T18:51:23+08:00 +2026/05/15 18:51:23.173, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.36, 65 +2026-05-15T18:51:28+08:00 +2026/05/15 18:51:28.195, NVIDIA GeForce RTX 5090, 86, 39, 11859, 32607, 363.96, 65 +2026-05-15T18:51:33+08:00 +2026/05/15 18:51:33.235, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 352.32, 63 +2026-05-15T18:51:38+08:00 +2026/05/15 18:51:38.278, NVIDIA GeForce RTX 5090, 87, 36, 11859, 32607, 362.79, 65 +2026-05-15T18:51:43+08:00 +2026/05/15 18:51:43.333, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.55, 65 +2026-05-15T18:51:48+08:00 +2026/05/15 18:51:48.365, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.56, 66 +2026-05-15T18:51:53+08:00 +2026/05/15 18:51:53.389, NVIDIA GeForce RTX 5090, 87, 41, 11859, 32607, 362.28, 66 +2026-05-15T18:51:58+08:00 +2026/05/15 18:51:58.430, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 189.37, 65 +2026-05-15T18:52:03+08:00 +2026/05/15 18:52:03.495, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 361.68, 66 +2026-05-15T18:52:08+08:00 +2026/05/15 18:52:08.520, NVIDIA GeForce RTX 5090, 87, 36, 11859, 32607, 360.97, 66 +2026-05-15T18:52:13+08:00 +2026/05/15 18:52:13.561, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 364.63, 65 +2026-05-15T18:52:18+08:00 +2026/05/15 18:52:18.602, NVIDIA GeForce RTX 5090, 85, 38, 11859, 32607, 364.90, 66 +2026-05-15T18:52:23+08:00 +2026/05/15 18:52:23.626, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 359.43, 65 +2026-05-15T18:52:28+08:00 +2026/05/15 18:52:28.649, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.58, 66 +2026-05-15T18:52:33+08:00 +2026/05/15 18:52:33.672, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.26, 66 +2026-05-15T18:52:38+08:00 +2026/05/15 18:52:38.696, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 361.92, 66 +2026-05-15T18:52:43+08:00 +2026/05/15 18:52:43.723, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.22, 65 +2026-05-15T18:52:48+08:00 +2026/05/15 18:52:48.745, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.51, 65 +2026-05-15T18:52:53+08:00 +2026/05/15 18:52:53.770, NVIDIA GeForce RTX 5090, 84, 36, 11859, 32607, 365.00, 66 +2026-05-15T18:52:58+08:00 +2026/05/15 18:52:58.794, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.21, 65 +2026-05-15T18:53:03+08:00 +2026/05/15 18:53:03.818, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 363.98, 66 +2026-05-15T18:53:08+08:00 +2026/05/15 18:53:08.840, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.04, 66 +2026-05-15T18:53:13+08:00 +2026/05/15 18:53:13.865, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.42, 64 +2026-05-15T18:53:18+08:00 +2026/05/15 18:53:18.889, NVIDIA GeForce RTX 5090, 87, 41, 11859, 32607, 365.12, 66 +2026-05-15T18:53:23+08:00 +2026/05/15 18:53:23.915, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.83, 66 +2026-05-15T18:53:28+08:00 +2026/05/15 18:53:28.939, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 363.41, 65 +2026-05-15T18:53:33+08:00 +2026/05/15 18:53:33.961, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 364.21, 65 +2026-05-15T18:53:38+08:00 +2026/05/15 18:53:38.986, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.17, 65 +2026-05-15T18:53:43+08:00 +2026/05/15 18:53:44.007, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 365.04, 66 +2026-05-15T18:53:49+08:00 +2026/05/15 18:53:49.033, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 365.07, 66 +2026-05-15T18:53:54+08:00 +2026/05/15 18:53:54.058, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 365.99, 66 +2026-05-15T18:53:59+08:00 +2026/05/15 18:53:59.081, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.68, 65 +2026-05-15T18:54:04+08:00 +2026/05/15 18:54:04.102, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.90, 65 +2026-05-15T18:54:09+08:00 +2026/05/15 18:54:09.127, NVIDIA GeForce RTX 5090, 85, 37, 11859, 32607, 364.54, 65 +2026-05-15T18:54:14+08:00 +2026/05/15 18:54:14.149, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.51, 65 +2026-05-15T18:54:19+08:00 +2026/05/15 18:54:19.174, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.50, 66 +2026-05-15T18:54:24+08:00 +2026/05/15 18:54:24.197, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 271.46, 62 +2026-05-15T18:54:29+08:00 +2026/05/15 18:54:29.220, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.23, 65 +2026-05-15T18:54:34+08:00 +2026/05/15 18:54:34.244, NVIDIA GeForce RTX 5090, 85, 37, 11859, 32607, 364.75, 65 +2026-05-15T18:54:39+08:00 +2026/05/15 18:54:39.267, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.46, 66 +2026-05-15T18:54:44+08:00 +2026/05/15 18:54:44.291, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 364.16, 65 +2026-05-15T18:54:49+08:00 +2026/05/15 18:54:49.312, NVIDIA GeForce RTX 5090, 85, 38, 11859, 32607, 331.51, 65 +2026-05-15T18:54:54+08:00 +2026/05/15 18:54:54.336, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.58, 66 +2026-05-15T18:54:59+08:00 +2026/05/15 18:54:59.360, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.50, 65 +2026-05-15T18:55:04+08:00 +2026/05/15 18:55:04.384, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.56, 66 +2026-05-15T18:55:09+08:00 +2026/05/15 18:55:09.407, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.97, 65 +2026-05-15T18:55:14+08:00 +2026/05/15 18:55:14.444, NVIDIA GeForce RTX 5090, 84, 37, 11859, 32607, 364.94, 66 +2026-05-15T18:55:19+08:00 +2026/05/15 18:55:19.469, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.44, 65 +2026-05-15T18:55:24+08:00 +2026/05/15 18:55:24.493, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 364.67, 66 +2026-05-15T18:55:29+08:00 +2026/05/15 18:55:29.515, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.04, 65 +2026-05-15T18:55:34+08:00 +2026/05/15 18:55:34.538, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.38, 65 +2026-05-15T18:55:39+08:00 +2026/05/15 18:55:39.563, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.57, 66 +2026-05-15T18:55:44+08:00 +2026/05/15 18:55:44.584, NVIDIA GeForce RTX 5090, 85, 37, 11859, 32607, 363.37, 65 +2026-05-15T18:55:49+08:00 +2026/05/15 18:55:49.606, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.85, 66 +2026-05-15T18:55:54+08:00 +2026/05/15 18:55:54.631, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.43, 64 +2026-05-15T18:55:59+08:00 +2026/05/15 18:55:59.657, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.52, 66 +2026-05-15T18:56:04+08:00 +2026/05/15 18:56:04.680, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.69, 65 +2026-05-15T18:56:09+08:00 +2026/05/15 18:56:09.702, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 364.41, 66 +2026-05-15T18:56:14+08:00 +2026/05/15 18:56:14.724, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.54, 66 +2026-05-15T18:56:19+08:00 +2026/05/15 18:56:19.747, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 364.01, 66 +2026-05-15T18:56:24+08:00 +2026/05/15 18:56:24.772, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.92, 66 +2026-05-15T18:56:29+08:00 +2026/05/15 18:56:29.793, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 363.22, 65 +2026-05-15T18:56:34+08:00 +2026/05/15 18:56:34.819, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.93, 66 +2026-05-15T18:56:39+08:00 +2026/05/15 18:56:39.842, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 362.95, 65 +2026-05-15T18:56:44+08:00 +2026/05/15 18:56:44.865, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.89, 65 +2026-05-15T18:56:49+08:00 +2026/05/15 18:56:49.890, NVIDIA GeForce RTX 5090, 59, 27, 11859, 32607, 358.06, 61 +2026-05-15T18:56:54+08:00 +2026/05/15 18:56:54.915, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 363.48, 66 +2026-05-15T18:56:59+08:00 +2026/05/15 18:56:59.939, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.58, 66 +2026-05-15T18:57:04+08:00 +2026/05/15 18:57:04.965, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 364.14, 65 +2026-05-15T18:57:09+08:00 +2026/05/15 18:57:09.988, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.77, 66 +2026-05-15T18:57:14+08:00 +2026/05/15 18:57:15.013, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 346.06, 65 +2026-05-15T18:57:20+08:00 +2026/05/15 18:57:20.036, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.45, 65 +2026-05-15T18:57:25+08:00 +2026/05/15 18:57:25.061, NVIDIA GeForce RTX 5090, 88, 41, 11859, 32607, 365.50, 65 +2026-05-15T18:57:30+08:00 +2026/05/15 18:57:30.086, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 365.86, 66 +2026-05-15T18:57:35+08:00 +2026/05/15 18:57:35.107, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.83, 66 +2026-05-15T18:57:40+08:00 +2026/05/15 18:57:40.130, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.83, 65 +2026-05-15T18:57:45+08:00 +2026/05/15 18:57:45.154, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.76, 66 +2026-05-15T18:57:50+08:00 +2026/05/15 18:57:50.177, NVIDIA GeForce RTX 5090, 86, 39, 11859, 32607, 364.69, 65 +2026-05-15T18:57:55+08:00 +2026/05/15 18:57:55.199, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.78, 66 +2026-05-15T18:58:00+08:00 +2026/05/15 18:58:00.222, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 366.73, 66 +2026-05-15T18:58:05+08:00 +2026/05/15 18:58:05.245, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.33, 66 +2026-05-15T18:58:10+08:00 +2026/05/15 18:58:10.269, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.73, 65 +2026-05-15T18:58:15+08:00 +2026/05/15 18:58:15.298, NVIDIA GeForce RTX 5090, 84, 37, 11859, 32607, 365.65, 64 +2026-05-15T18:58:20+08:00 +2026/05/15 18:58:20.322, NVIDIA GeForce RTX 5090, 87, 38, 11859, 32607, 365.25, 66 +2026-05-15T18:58:25+08:00 +2026/05/15 18:58:25.347, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.16, 66 +2026-05-15T18:58:30+08:00 +2026/05/15 18:58:30.371, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 365.61, 66 +2026-05-15T18:58:35+08:00 +2026/05/15 18:58:35.396, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 366.32, 65 +2026-05-15T18:58:40+08:00 +2026/05/15 18:58:40.421, NVIDIA GeForce RTX 5090, 88, 38, 11859, 32607, 365.77, 66 +2026-05-15T18:58:45+08:00 +2026/05/15 18:58:45.445, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 366.54, 65 +2026-05-15T18:58:50+08:00 +2026/05/15 18:58:50.467, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.64, 67 +2026-05-15T18:58:55+08:00 +2026/05/15 18:58:55.494, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 365.68, 65 +2026-05-15T18:59:00+08:00 +2026/05/15 18:59:00.518, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 365.58, 64 +2026-05-15T18:59:05+08:00 +2026/05/15 18:59:05.541, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.18, 66 +2026-05-15T18:59:10+08:00 +2026/05/15 18:59:10.565, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.42, 66 +2026-05-15T18:59:15+08:00 +2026/05/15 18:59:15.588, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 280.21, 65 +2026-05-15T18:59:20+08:00 +2026/05/15 18:59:20.612, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.26, 65 +2026-05-15T18:59:25+08:00 +2026/05/15 18:59:25.635, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.58, 66 +2026-05-15T18:59:30+08:00 +2026/05/15 18:59:30.660, NVIDIA GeForce RTX 5090, 88, 40, 11859, 32607, 367.27, 66 +2026-05-15T18:59:35+08:00 +2026/05/15 18:59:35.684, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.07, 66 +2026-05-15T18:59:40+08:00 +2026/05/15 18:59:40.708, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 294.85, 66 +2026-05-15T18:59:45+08:00 +2026/05/15 18:59:45.732, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.65, 65 +2026-05-15T18:59:50+08:00 +2026/05/15 18:59:50.756, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.20, 65 +2026-05-15T18:59:55+08:00 +2026/05/15 18:59:55.781, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 365.30, 66 +2026-05-15T19:00:00+08:00 +2026/05/15 19:00:00.806, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.96, 64 +2026-05-15T19:00:05+08:00 +2026/05/15 19:00:05.829, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.18, 65 +2026-05-15T19:00:10+08:00 +2026/05/15 19:00:10.851, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 365.24, 65 +2026-05-15T19:00:15+08:00 +2026/05/15 19:00:15.873, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.59, 66 +2026-05-15T19:00:20+08:00 +2026/05/15 19:00:20.898, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.23, 66 +2026-05-15T19:00:25+08:00 +2026/05/15 19:00:25.923, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.04, 65 +2026-05-15T19:00:30+08:00 +2026/05/15 19:00:30.949, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.95, 66 +2026-05-15T19:00:35+08:00 +2026/05/15 19:00:35.973, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.05, 65 +2026-05-15T19:00:40+08:00 +2026/05/15 19:00:40.997, NVIDIA GeForce RTX 5090, 87, 38, 11859, 32607, 365.59, 66 +2026-05-15T19:00:46+08:00 +2026/05/15 19:00:46.042, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.44, 66 +2026-05-15T19:00:51+08:00 +2026/05/15 19:00:51.083, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.58, 65 +2026-05-15T19:00:56+08:00 +2026/05/15 19:00:56.151, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.05, 65 +2026-05-15T19:01:01+08:00 +2026/05/15 19:01:01.174, NVIDIA GeForce RTX 5090, 88, 41, 11859, 32607, 365.81, 65 +2026-05-15T19:01:06+08:00 +2026/05/15 19:01:06.200, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.21, 66 +2026-05-15T19:01:11+08:00 +2026/05/15 19:01:11.243, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 366.63, 66 +2026-05-15T19:01:16+08:00 +2026/05/15 19:01:16.284, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.06, 63 +2026-05-15T19:01:21+08:00 +2026/05/15 19:01:21.346, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.59, 65 +2026-05-15T19:01:26+08:00 +2026/05/15 19:01:26.368, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.88, 66 +2026-05-15T19:01:31+08:00 +2026/05/15 19:01:31.393, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 366.90, 66 +2026-05-15T19:01:36+08:00 +2026/05/15 19:01:36.436, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.20, 66 +2026-05-15T19:01:41+08:00 +2026/05/15 19:01:41.478, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 344.20, 66 +2026-05-15T19:01:46+08:00 +2026/05/15 19:01:46.520, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.89, 65 +2026-05-15T19:01:51+08:00 +2026/05/15 19:01:51.561, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 366.24, 66 +2026-05-15T19:01:56+08:00 +2026/05/15 19:01:56.601, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.32, 65 +2026-05-15T19:02:01+08:00 +2026/05/15 19:02:01.629, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.98, 66 +2026-05-15T19:02:06+08:00 +2026/05/15 19:02:06.684, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.85, 66 +2026-05-15T19:02:11+08:00 +2026/05/15 19:02:11.712, NVIDIA GeForce RTX 5090, 0, 0, 11859, 32607, 255.98, 63 +2026-05-15T19:02:16+08:00 +2026/05/15 19:02:16.736, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.93, 66 +2026-05-15T19:02:21+08:00 +2026/05/15 19:02:21.760, NVIDIA GeForce RTX 5090, 87, 38, 11859, 32607, 365.66, 64 +2026-05-15T19:02:26+08:00 +2026/05/15 19:02:26.784, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 365.29, 66 +2026-05-15T19:02:31+08:00 +2026/05/15 19:02:31.807, NVIDIA GeForce RTX 5090, 88, 41, 11859, 32607, 366.24, 66 +2026-05-15T19:02:36+08:00 +2026/05/15 19:02:36.829, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.09, 67 +2026-05-15T19:02:41+08:00 +2026/05/15 19:02:41.852, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.15, 66 +2026-05-15T19:02:46+08:00 +2026/05/15 19:02:46.874, NVIDIA GeForce RTX 5090, 88, 39, 11859, 32607, 367.02, 66 +2026-05-15T19:02:51+08:00 +2026/05/15 19:02:51.898, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.35, 66 +2026-05-15T19:02:56+08:00 +2026/05/15 19:02:56.919, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.20, 66 +2026-05-15T19:03:01+08:00 +2026/05/15 19:03:01.942, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 365.61, 65 +2026-05-15T19:03:06+08:00 +2026/05/15 19:03:06.963, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.83, 66 +2026-05-15T19:03:11+08:00 +2026/05/15 19:03:11.987, NVIDIA GeForce RTX 5090, 88, 41, 11859, 32607, 365.05, 65 +2026-05-15T19:03:16+08:00 +2026/05/15 19:03:17.009, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 322.39, 60 +2026-05-15T19:03:22+08:00 +2026/05/15 19:03:22.030, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 366.64, 66 +2026-05-15T19:03:27+08:00 +2026/05/15 19:03:27.053, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 367.80, 66 +2026-05-15T19:03:32+08:00 +2026/05/15 19:03:32.083, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.06, 65 +2026-05-15T19:03:37+08:00 +2026/05/15 19:03:37.111, NVIDIA GeForce RTX 5090, 86, 39, 11859, 32607, 365.34, 65 +2026-05-15T19:03:42+08:00 +2026/05/15 19:03:42.134, NVIDIA GeForce RTX 5090, 25, 16, 11859, 32607, 278.69, 64 +2026-05-15T19:03:47+08:00 +2026/05/15 19:03:47.158, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 366.21, 66 +2026-05-15T19:03:52+08:00 +2026/05/15 19:03:52.181, NVIDIA GeForce RTX 5090, 88, 38, 11859, 32607, 366.80, 66 +2026-05-15T19:03:57+08:00 +2026/05/15 19:03:57.204, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 364.96, 65 +2026-05-15T19:04:02+08:00 +2026/05/15 19:04:02.230, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.36, 66 +2026-05-15T19:04:07+08:00 +2026/05/15 19:04:07.251, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.89, 66 +2026-05-15T19:04:12+08:00 +2026/05/15 19:04:12.274, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 365.86, 65 +2026-05-15T19:04:17+08:00 +2026/05/15 19:04:17.297, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.28, 66 +2026-05-15T19:04:22+08:00 +2026/05/15 19:04:22.320, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.43, 66 +2026-05-15T19:04:27+08:00 +2026/05/15 19:04:27.344, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 367.59, 66 +2026-05-15T19:04:32+08:00 +2026/05/15 19:04:32.372, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 356.84, 66 +2026-05-15T19:04:37+08:00 +2026/05/15 19:04:37.395, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.63, 66 +2026-05-15T19:04:42+08:00 +2026/05/15 19:04:42.417, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.97, 66 +2026-05-15T19:04:47+08:00 +2026/05/15 19:04:47.440, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.66, 65 +2026-05-15T19:04:52+08:00 +2026/05/15 19:04:52.465, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.05, 66 +2026-05-15T19:04:57+08:00 +2026/05/15 19:04:57.486, NVIDIA GeForce RTX 5090, 83, 36, 11859, 32607, 354.90, 66 +2026-05-15T19:05:02+08:00 +2026/05/15 19:05:02.513, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 366.77, 66 +2026-05-15T19:05:07+08:00 +2026/05/15 19:05:07.539, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.93, 66 +2026-05-15T19:05:12+08:00 +2026/05/15 19:05:12.565, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.29, 64 +2026-05-15T19:05:17+08:00 +2026/05/15 19:05:17.588, NVIDIA GeForce RTX 5090, 85, 36, 11859, 32607, 365.91, 66 +2026-05-15T19:05:22+08:00 +2026/05/15 19:05:22.620, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.45, 66 +2026-05-15T19:05:27+08:00 +2026/05/15 19:05:27.654, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.26, 64 +2026-05-15T19:05:32+08:00 +2026/05/15 19:05:32.677, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.58, 66 +2026-05-15T19:05:37+08:00 +2026/05/15 19:05:37.707, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 364.37, 66 +2026-05-15T19:05:42+08:00 +2026/05/15 19:05:42.730, NVIDIA GeForce RTX 5090, 0, 0, 11859, 32607, 327.11, 61 +2026-05-15T19:05:47+08:00 +2026/05/15 19:05:47.754, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 363.53, 65 +2026-05-15T19:05:52+08:00 +2026/05/15 19:05:52.777, NVIDIA GeForce RTX 5090, 78, 34, 11859, 32607, 362.65, 66 +2026-05-15T19:05:57+08:00 +2026/05/15 19:05:57.800, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.33, 65 +2026-05-15T19:06:02+08:00 +2026/05/15 19:06:02.828, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.74, 65 +2026-05-15T19:06:07+08:00 +2026/05/15 19:06:07.851, NVIDIA GeForce RTX 5090, 9, 0, 11859, 32607, 247.67, 59 +2026-05-15T19:06:12+08:00 +2026/05/15 19:06:12.874, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.09, 66 +2026-05-15T19:06:17+08:00 +2026/05/15 19:06:17.899, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 365.16, 66 +2026-05-15T19:06:22+08:00 +2026/05/15 19:06:22.922, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.50, 66 +2026-05-15T19:06:27+08:00 +2026/05/15 19:06:27.950, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.06, 65 +2026-05-15T19:06:32+08:00 +2026/05/15 19:06:32.972, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 269.40, 59 +2026-05-15T19:06:37+08:00 +2026/05/15 19:06:38.014, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.20, 66 +2026-05-15T19:06:43+08:00 +2026/05/15 19:06:43.057, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.36, 66 +2026-05-15T19:06:48+08:00 +2026/05/15 19:06:48.082, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 366.78, 66 +2026-05-15T19:06:53+08:00 +2026/05/15 19:06:53.108, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.68, 65 +2026-05-15T19:06:58+08:00 +2026/05/15 19:06:58.147, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 328.35, 65 +2026-05-15T19:07:03+08:00 +2026/05/15 19:07:03.171, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.33, 66 +2026-05-15T19:07:08+08:00 +2026/05/15 19:07:08.195, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.19, 65 +2026-05-15T19:07:13+08:00 +2026/05/15 19:07:13.218, NVIDIA GeForce RTX 5090, 84, 37, 11859, 32607, 365.07, 65 +2026-05-15T19:07:18+08:00 +2026/05/15 19:07:18.242, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.28, 65 +2026-05-15T19:07:23+08:00 +2026/05/15 19:07:23.265, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 363.74, 65 +2026-05-15T19:07:28+08:00 +2026/05/15 19:07:28.289, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.49, 65 +2026-05-15T19:07:33+08:00 +2026/05/15 19:07:33.312, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.92, 66 +2026-05-15T19:07:38+08:00 +2026/05/15 19:07:38.336, NVIDIA GeForce RTX 5090, 87, 39, 11859, 32607, 363.53, 66 +2026-05-15T19:07:43+08:00 +2026/05/15 19:07:43.361, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.19, 67 +2026-05-15T19:07:48+08:00 +2026/05/15 19:07:48.387, NVIDIA GeForce RTX 5090, 57, 21, 11859, 32607, 356.18, 66 +2026-05-15T19:07:53+08:00 +2026/05/15 19:07:53.412, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 364.28, 65 +2026-05-15T19:07:58+08:00 +2026/05/15 19:07:58.438, NVIDIA GeForce RTX 5090, 88, 41, 11859, 32607, 365.22, 65 +2026-05-15T19:08:03+08:00 +2026/05/15 19:08:03.461, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.17, 66 +2026-05-15T19:08:08+08:00 +2026/05/15 19:08:08.486, NVIDIA GeForce RTX 5090, 86, 36, 11859, 32607, 366.28, 66 +2026-05-15T19:08:13+08:00 +2026/05/15 19:08:13.508, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 355.27, 66 +2026-05-15T19:08:18+08:00 +2026/05/15 19:08:18.533, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.22, 65 +2026-05-15T19:08:23+08:00 +2026/05/15 19:08:23.557, NVIDIA GeForce RTX 5090, 88, 40, 11859, 32607, 365.65, 66 +2026-05-15T19:08:28+08:00 +2026/05/15 19:08:28.581, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.62, 66 +2026-05-15T19:08:33+08:00 +2026/05/15 19:08:33.607, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.89, 65 +2026-05-15T19:08:38+08:00 +2026/05/15 19:08:38.630, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 356.42, 66 +2026-05-15T19:08:43+08:00 +2026/05/15 19:08:43.656, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.41, 66 +2026-05-15T19:08:48+08:00 +2026/05/15 19:08:48.684, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.70, 67 +2026-05-15T19:08:53+08:00 +2026/05/15 19:08:53.708, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.45, 65 +2026-05-15T19:08:58+08:00 +2026/05/15 19:08:58.732, NVIDIA GeForce RTX 5090, 0, 0, 11859, 32607, 293.47, 60 +2026-05-15T19:09:03+08:00 +2026/05/15 19:09:03.755, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 366.92, 66 +2026-05-15T19:09:08+08:00 +2026/05/15 19:09:08.812, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.92, 67 +2026-05-15T19:09:13+08:00 +2026/05/15 19:09:13.835, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.67, 66 +2026-05-15T19:09:18+08:00 +2026/05/15 19:09:18.859, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.98, 65 +2026-05-15T19:09:23+08:00 +2026/05/15 19:09:23.886, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 312.88, 65 +2026-05-15T19:09:28+08:00 +2026/05/15 19:09:28.920, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.46, 66 +2026-05-15T19:09:33+08:00 +2026/05/15 19:09:33.949, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 367.03, 66 +2026-05-15T19:09:38+08:00 +2026/05/15 19:09:38.978, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.35, 65 +2026-05-15T19:09:43+08:00 +2026/05/15 19:09:44.001, NVIDIA GeForce RTX 5090, 87, 38, 11859, 32607, 365.89, 66 +2026-05-15T19:09:49+08:00 +2026/05/15 19:09:49.026, NVIDIA GeForce RTX 5090, 87, 38, 11859, 32607, 365.68, 66 +2026-05-15T19:09:54+08:00 +2026/05/15 19:09:54.054, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.16, 66 +2026-05-15T19:09:59+08:00 +2026/05/15 19:09:59.080, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 367.18, 66 +2026-05-15T19:10:04+08:00 +2026/05/15 19:10:04.106, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.30, 65 +2026-05-15T19:10:09+08:00 +2026/05/15 19:10:09.129, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.61, 66 +2026-05-15T19:10:14+08:00 +2026/05/15 19:10:14.153, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.25, 65 +2026-05-15T19:10:19+08:00 +2026/05/15 19:10:19.177, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 365.09, 67 +2026-05-15T19:10:24+08:00 +2026/05/15 19:10:24.201, NVIDIA GeForce RTX 5090, 85, 36, 11859, 32607, 363.38, 66 +2026-05-15T19:10:29+08:00 +2026/05/15 19:10:29.225, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.30, 65 +2026-05-15T19:10:34+08:00 +2026/05/15 19:10:34.251, NVIDIA GeForce RTX 5090, 88, 36, 11859, 32607, 363.22, 66 +2026-05-15T19:10:39+08:00 +2026/05/15 19:10:39.278, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 354.25, 64 +2026-05-15T19:10:44+08:00 +2026/05/15 19:10:44.299, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.28, 66 +2026-05-15T19:10:49+08:00 +2026/05/15 19:10:49.324, NVIDIA GeForce RTX 5090, 87, 39, 11859, 32607, 364.03, 66 +2026-05-15T19:10:54+08:00 +2026/05/15 19:10:54.350, NVIDIA GeForce RTX 5090, 88, 36, 11859, 32607, 362.30, 65 +2026-05-15T19:10:59+08:00 +2026/05/15 19:10:59.374, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 366.07, 66 +2026-05-15T19:11:04+08:00 +2026/05/15 19:11:04.398, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.47, 66 +2026-05-15T19:11:09+08:00 +2026/05/15 19:11:09.421, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 366.55, 65 +2026-05-15T19:11:14+08:00 +2026/05/15 19:11:14.445, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.79, 65 +2026-05-15T19:11:19+08:00 +2026/05/15 19:11:19.469, NVIDIA GeForce RTX 5090, 88, 40, 11859, 32607, 365.89, 66 +2026-05-15T19:11:24+08:00 +2026/05/15 19:11:24.492, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 280.25, 63 +2026-05-15T19:11:29+08:00 +2026/05/15 19:11:29.518, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.48, 66 +2026-05-15T19:11:34+08:00 +2026/05/15 19:11:34.547, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 365.84, 65 +2026-05-15T19:11:39+08:00 +2026/05/15 19:11:39.572, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.74, 67 +2026-05-15T19:11:44+08:00 +2026/05/15 19:11:44.597, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.27, 65 +2026-05-15T19:11:49+08:00 +2026/05/15 19:11:49.621, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 235.79, 65 +2026-05-15T19:11:54+08:00 +2026/05/15 19:11:54.646, NVIDIA GeForce RTX 5090, 85, 37, 11859, 32607, 366.22, 66 +2026-05-15T19:11:59+08:00 +2026/05/15 19:11:59.671, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.58, 67 +2026-05-15T19:12:04+08:00 +2026/05/15 19:12:04.694, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.08, 65 +2026-05-15T19:12:09+08:00 +2026/05/15 19:12:09.718, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 365.59, 66 +2026-05-15T19:12:14+08:00 +2026/05/15 19:12:14.745, NVIDIA GeForce RTX 5090, 88, 41, 11859, 32607, 366.59, 66 +2026-05-15T19:12:19+08:00 +2026/05/15 19:12:19.772, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.92, 66 +2026-05-15T19:12:24+08:00 +2026/05/15 19:12:24.795, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.98, 65 +2026-05-15T19:12:29+08:00 +2026/05/15 19:12:29.819, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.65, 66 +2026-05-15T19:12:34+08:00 +2026/05/15 19:12:34.844, NVIDIA GeForce RTX 5090, 88, 41, 11859, 32607, 366.76, 66 +2026-05-15T19:12:39+08:00 +2026/05/15 19:12:39.868, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 248.56, 64 +2026-05-15T19:12:44+08:00 +2026/05/15 19:12:44.892, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.18, 66 +2026-05-15T19:12:49+08:00 +2026/05/15 19:12:49.920, NVIDIA GeForce RTX 5090, 85, 38, 11859, 32607, 365.91, 66 +2026-05-15T19:12:54+08:00 +2026/05/15 19:12:54.944, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.67, 67 +2026-05-15T19:12:59+08:00 +2026/05/15 19:12:59.976, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.47, 65 +2026-05-15T19:13:04+08:00 +2026/05/15 19:13:04.998, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.13, 67 +2026-05-15T19:13:10+08:00 +2026/05/15 19:13:10.021, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.18, 65 +2026-05-15T19:13:15+08:00 +2026/05/15 19:13:15.044, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.96, 65 +2026-05-15T19:13:20+08:00 +2026/05/15 19:13:20.070, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.34, 66 +2026-05-15T19:13:25+08:00 +2026/05/15 19:13:25.096, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.71, 64 +2026-05-15T19:13:30+08:00 +2026/05/15 19:13:30.122, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.58, 65 +2026-05-15T19:13:35+08:00 +2026/05/15 19:13:35.146, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 365.29, 66 +2026-05-15T19:13:40+08:00 +2026/05/15 19:13:40.168, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.12, 66 +2026-05-15T19:13:45+08:00 +2026/05/15 19:13:45.192, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.11, 65 +2026-05-15T19:13:50+08:00 +2026/05/15 19:13:50.213, NVIDIA GeForce RTX 5090, 0, 0, 11859, 32607, 194.66, 59 +2026-05-15T19:13:55+08:00 +2026/05/15 19:13:55.235, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.63, 64 +2026-05-15T19:14:00+08:00 +2026/05/15 19:14:00.261, NVIDIA GeForce RTX 5090, 88, 41, 11859, 32607, 365.99, 66 +2026-05-15T19:14:05+08:00 +2026/05/15 19:14:05.287, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.84, 66 +2026-05-15T19:14:10+08:00 +2026/05/15 19:14:10.309, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.80, 66 +2026-05-15T19:14:15+08:00 +2026/05/15 19:14:15.333, NVIDIA GeForce RTX 5090, 85, 37, 11859, 32607, 289.45, 65 +2026-05-15T19:14:20+08:00 +2026/05/15 19:14:20.357, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.19, 66 +2026-05-15T19:14:25+08:00 +2026/05/15 19:14:25.380, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.62, 67 +2026-05-15T19:14:30+08:00 +2026/05/15 19:14:30.402, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 367.11, 66 +2026-05-15T19:14:35+08:00 +2026/05/15 19:14:35.447, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.77, 65 +2026-05-15T19:14:40+08:00 +2026/05/15 19:14:40.477, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 363.45, 65 +2026-05-15T19:14:45+08:00 +2026/05/15 19:14:45.506, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 364.09, 66 +2026-05-15T19:14:50+08:00 +2026/05/15 19:14:50.529, NVIDIA GeForce RTX 5090, 88, 40, 11859, 32607, 367.34, 66 +2026-05-15T19:14:55+08:00 +2026/05/15 19:14:55.574, NVIDIA GeForce RTX 5090, 88, 37, 11859, 32607, 367.39, 67 +2026-05-15T19:15:00+08:00 +2026/05/15 19:15:00.616, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.27, 65 +2026-05-15T19:15:05+08:00 +2026/05/15 19:15:05.661, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 366.10, 66 +2026-05-15T19:15:10+08:00 +2026/05/15 19:15:10.684, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.86, 66 +2026-05-15T19:15:15+08:00 +2026/05/15 19:15:15.708, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.69, 65 +2026-05-15T19:15:20+08:00 +2026/05/15 19:15:20.730, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.21, 66 +2026-05-15T19:15:25+08:00 +2026/05/15 19:15:25.753, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 365.84, 66 +2026-05-15T19:15:30+08:00 +2026/05/15 19:15:30.782, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.86, 65 +2026-05-15T19:15:35+08:00 +2026/05/15 19:15:35.810, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 364.04, 66 +2026-05-15T19:15:40+08:00 +2026/05/15 19:15:40.833, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.58, 66 +2026-05-15T19:15:45+08:00 +2026/05/15 19:15:45.857, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 364.06, 66 +2026-05-15T19:15:50+08:00 +2026/05/15 19:15:50.880, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.09, 66 +2026-05-15T19:15:55+08:00 +2026/05/15 19:15:55.901, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.99, 64 +2026-05-15T19:16:00+08:00 +2026/05/15 19:16:00.924, NVIDIA GeForce RTX 5090, 85, 36, 11859, 32607, 365.27, 66 +2026-05-15T19:16:05+08:00 +2026/05/15 19:16:05.952, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.95, 65 +2026-05-15T19:16:10+08:00 +2026/05/15 19:16:10.976, NVIDIA GeForce RTX 5090, 0, 0, 11859, 32607, 255.98, 59 +2026-05-15T19:16:15+08:00 +2026/05/15 19:16:16.000, NVIDIA GeForce RTX 5090, 0, 0, 11859, 32607, 329.05, 61 +2026-05-15T19:16:21+08:00 +2026/05/15 19:16:21.024, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 364.81, 66 +2026-05-15T19:16:26+08:00 +2026/05/15 19:16:26.047, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.61, 66 +2026-05-15T19:16:31+08:00 +2026/05/15 19:16:31.072, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.54, 66 +2026-05-15T19:16:36+08:00 +2026/05/15 19:16:36.096, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.23, 64 +2026-05-15T19:16:41+08:00 +2026/05/15 19:16:41.122, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.22, 65 +2026-05-15T19:16:46+08:00 +2026/05/15 19:16:46.148, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.92, 66 +2026-05-15T19:16:51+08:00 +2026/05/15 19:16:51.173, NVIDIA GeForce RTX 5090, 87, 38, 11859, 32607, 364.90, 65 +2026-05-15T19:16:56+08:00 +2026/05/15 19:16:56.197, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.21, 66 +2026-05-15T19:17:01+08:00 +2026/05/15 19:17:01.220, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.15, 66 +2026-05-15T19:17:06+08:00 +2026/05/15 19:17:06.243, NVIDIA GeForce RTX 5090, 84, 36, 11859, 32607, 363.73, 66 +2026-05-15T19:17:11+08:00 +2026/05/15 19:17:11.269, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.30, 66 +2026-05-15T19:17:16+08:00 +2026/05/15 19:17:16.294, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.59, 65 +2026-05-15T19:17:21+08:00 +2026/05/15 19:17:21.321, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.28, 66 +2026-05-15T19:17:26+08:00 +2026/05/15 19:17:26.344, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 365.33, 64 +2026-05-15T19:17:31+08:00 +2026/05/15 19:17:31.369, NVIDIA GeForce RTX 5090, 0, 0, 11859, 32607, 239.15, 63 +2026-05-15T19:17:36+08:00 +2026/05/15 19:17:36.395, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.60, 66 +2026-05-15T19:17:41+08:00 +2026/05/15 19:17:41.419, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.45, 66 +2026-05-15T19:17:46+08:00 +2026/05/15 19:17:46.442, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 365.39, 65 +2026-05-15T19:17:51+08:00 +2026/05/15 19:17:51.466, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.19, 66 +2026-05-15T19:17:56+08:00 +2026/05/15 19:17:56.491, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.73, 66 +2026-05-15T19:18:01+08:00 +2026/05/15 19:18:01.517, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.23, 65 +2026-05-15T19:18:06+08:00 +2026/05/15 19:18:06.541, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 364.80, 66 +2026-05-15T19:18:11+08:00 +2026/05/15 19:18:11.565, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.39, 66 +2026-05-15T19:18:16+08:00 +2026/05/15 19:18:16.587, NVIDIA GeForce RTX 5090, 77, 34, 11859, 32607, 363.39, 66 +2026-05-15T19:18:21+08:00 +2026/05/15 19:18:21.615, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.92, 66 +2026-05-15T19:18:26+08:00 +2026/05/15 19:18:26.639, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 365.90, 65 +2026-05-15T19:18:31+08:00 +2026/05/15 19:18:31.663, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.57, 65 +2026-05-15T19:18:36+08:00 +2026/05/15 19:18:36.689, NVIDIA GeForce RTX 5090, 84, 36, 11859, 32607, 364.48, 66 +2026-05-15T19:18:41+08:00 +2026/05/15 19:18:41.716, NVIDIA GeForce RTX 5090, 17, 6, 11859, 32607, 143.46, 59 +2026-05-15T19:18:46+08:00 +2026/05/15 19:18:46.738, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 362.32, 64 +2026-05-15T19:18:51+08:00 +2026/05/15 19:18:51.769, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 359.85, 65 +2026-05-15T19:18:56+08:00 +2026/05/15 19:18:56.793, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 361.45, 65 +2026-05-15T19:19:01+08:00 +2026/05/15 19:19:01.835, NVIDIA GeForce RTX 5090, 87, 38, 11859, 32607, 364.99, 66 +2026-05-15T19:19:06+08:00 +2026/05/15 19:19:06.879, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 278.10, 65 +2026-05-15T19:19:11+08:00 +2026/05/15 19:19:11.920, NVIDIA GeForce RTX 5090, 86, 39, 11859, 32607, 365.12, 66 +2026-05-15T19:19:16+08:00 +2026/05/15 19:19:16.944, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.65, 65 +2026-05-15T19:19:21+08:00 +2026/05/15 19:19:21.968, NVIDIA GeForce RTX 5090, 84, 36, 11859, 32607, 364.89, 66 +2026-05-15T19:19:26+08:00 +2026/05/15 19:19:26.991, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.44, 65 +2026-05-15T19:19:32+08:00 +2026/05/15 19:19:32.017, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.08, 64 +2026-05-15T19:19:37+08:00 +2026/05/15 19:19:37.040, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.18, 65 +2026-05-15T19:19:42+08:00 +2026/05/15 19:19:42.064, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.84, 64 +2026-05-15T19:19:47+08:00 +2026/05/15 19:19:47.087, NVIDIA GeForce RTX 5090, 86, 38, 11859, 32607, 364.27, 65 +2026-05-15T19:19:52+08:00 +2026/05/15 19:19:52.111, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.60, 65 +2026-05-15T19:19:57+08:00 +2026/05/15 19:19:57.137, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.07, 66 +2026-05-15T19:20:02+08:00 +2026/05/15 19:20:02.160, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.63, 65 +2026-05-15T19:20:07+08:00 +2026/05/15 19:20:07.183, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.58, 64 +2026-05-15T19:20:12+08:00 +2026/05/15 19:20:12.207, NVIDIA GeForce RTX 5090, 84, 36, 11859, 32607, 364.67, 65 +2026-05-15T19:20:17+08:00 +2026/05/15 19:20:17.232, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.42, 65 +2026-05-15T19:20:22+08:00 +2026/05/15 19:20:22.261, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.27, 65 +2026-05-15T19:20:27+08:00 +2026/05/15 19:20:27.285, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 366.02, 66 +2026-05-15T19:20:32+08:00 +2026/05/15 19:20:32.310, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.90, 65 +2026-05-15T19:20:37+08:00 +2026/05/15 19:20:37.335, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 364.95, 64 +2026-05-15T19:20:42+08:00 +2026/05/15 19:20:42.359, NVIDIA GeForce RTX 5090, 87, 39, 11859, 32607, 364.06, 65 +2026-05-15T19:20:47+08:00 +2026/05/15 19:20:47.400, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.07, 66 +2026-05-15T19:20:52+08:00 +2026/05/15 19:20:52.443, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 365.64, 66 +2026-05-15T19:20:57+08:00 +2026/05/15 19:20:57.493, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 363.83, 64 +2026-05-15T19:21:02+08:00 +2026/05/15 19:21:02.523, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 245.42, 58 +2026-05-15T19:21:07+08:00 +2026/05/15 19:21:07.568, NVIDIA GeForce RTX 5090, 87, 38, 11859, 32607, 269.66, 64 +2026-05-15T19:21:12+08:00 +2026/05/15 19:21:12.595, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.76, 64 +2026-05-15T19:21:17+08:00 +2026/05/15 19:21:17.618, NVIDIA GeForce RTX 5090, 87, 40, 11859, 32607, 362.97, 65 +2026-05-15T19:21:22+08:00 +2026/05/15 19:21:22.661, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 362.88, 64 +2026-05-15T19:21:27+08:00 +2026/05/15 19:21:27.701, NVIDIA GeForce RTX 5090, 84, 37, 11859, 32607, 363.02, 64 +2026-05-15T19:21:32+08:00 +2026/05/15 19:21:32.744, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 361.99, 65 +2026-05-15T19:21:37+08:00 +2026/05/15 19:21:37.768, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 362.15, 65 +2026-05-15T19:21:42+08:00 +2026/05/15 19:21:42.795, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.59, 66 +2026-05-15T19:21:47+08:00 +2026/05/15 19:21:47.821, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.34, 65 +2026-05-15T19:21:52+08:00 +2026/05/15 19:21:52.845, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 364.21, 65 +2026-05-15T19:21:57+08:00 +2026/05/15 19:21:57.869, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 362.14, 64 +2026-05-15T19:22:02+08:00 +2026/05/15 19:22:02.894, NVIDIA GeForce RTX 5090, 86, 37, 11859, 32607, 363.19, 65 +2026-05-15T19:22:07+08:00 +2026/05/15 19:22:07.918, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.02, 65 +2026-05-15T19:22:12+08:00 +2026/05/15 19:22:12.942, NVIDIA GeForce RTX 5090, 87, 39, 11859, 32607, 363.00, 64 +2026-05-15T19:22:17+08:00 +2026/05/15 19:22:17.969, NVIDIA GeForce RTX 5090, 87, 37, 11859, 32607, 363.38, 64 +2026-05-15T19:22:22+08:00 +2026/05/15 19:22:22.993, NVIDIA GeForce RTX 5090, 8, 0, 11859, 32607, 78.05, 55 +2026-05-15T19:22:28+08:00 +2026/05/15 19:22:28.015, NVIDIA GeForce RTX 5090, 10, 0, 2739, 32607, 75.75, 53 +2026-05-15T19:22:33+08:00 +2026/05/15 19:22:33.038, NVIDIA GeForce RTX 5090, 45, 12, 5605, 32607, 196.56, 57 +2026-05-15T19:22:38+08:00 +2026/05/15 19:22:38.061, NVIDIA GeForce RTX 5090, 45, 12, 5605, 32607, 196.54, 57 +2026-05-15T19:22:43+08:00 +2026/05/15 19:22:43.102, NVIDIA GeForce RTX 5090, 45, 12, 5605, 32607, 192.11, 56 diff --git a/artifacts/loss_curve_summary.json b/artifacts/loss_curve_summary.json new file mode 100644 index 0000000000000000000000000000000000000000..7a1d7c90c15fe6a8a549d5a11c95d88906afd7f0 --- /dev/null +++ b/artifacts/loss_curve_summary.json @@ -0,0 +1,26 @@ +{ + "pretrain": { + "points": 961817, + "first_loss": 9.26, + "last_loss": 2.64, + "min_loss": 0.577, + "max_loss": 9.28, + "tail20_mean": 2.367, + "tail100_mean": 2.3350999999999997, + "tail200_mean": 2.3415500000000002, + "tail1000_mean": 2.373460000000001, + "csv_path": "/home/student/YouZheng/jobs/taotern/taotern-200m-branch-only-chat-20260514/outputs/analysis/pretrain_loss_curve.csv" + }, + "sft": { + "points": 49238, + "first_loss": 3.2, + "last_loss": 1.08, + "min_loss": 0.386, + "max_loss": 3.38, + "tail20_mean": 0.9390999999999998, + "tail100_mean": 0.9585200000000004, + "tail200_mean": 0.965355, + "tail1000_mean": 0.9520289999999981, + "csv_path": "/home/student/YouZheng/jobs/taotern/taotern-200m-branch-only-chat-20260514/outputs/analysis/sft_loss_curve.csv" + } +} \ No newline at end of file diff --git a/artifacts/model_card.json b/artifacts/model_card.json new file mode 100644 index 0000000000000000000000000000000000000000..9e72f02459d216e3d2ca21edc9bb3175ab7aea1d --- /dev/null +++ b/artifacts/model_card.json @@ -0,0 +1,13 @@ +{ + "state": "completed", + "architecture": "taonet_ssm", + "candidate": "pure_ssm_196m_branch_rms_only", + "pretrain_checkpoint": "/home/student/YouZheng/jobs/taotern/taotern-200m-branch-only-chat-20260514/checkpoints/pretrain/final_model.pt", + "sft_checkpoint": "/home/student/YouZheng/jobs/taotern/taotern-200m-branch-only-chat-20260514/checkpoints/sft/final_model.pt", + "tokenizer_path": "/home/student/YouZheng/tokenizers/taodata_pilot_8k/tokenizer.model", + "pretrain_config": "/home/student/YouZheng/jobs/taotern/taotern-200m-branch-only-chat-20260514/outputs/configs/pretrain.yaml", + "sft_config": "/home/student/YouZheng/jobs/taotern/taotern-200m-branch-only-chat-20260514/outputs/configs/sft.yaml", + "activation_probe": "/home/student/YouZheng/jobs/taotern/taotern-200m-branch-only-chat-20260514/outputs/diagnostics/activation_probe_pretrain_final.json", + "pretrain_samples": "/home/student/YouZheng/jobs/taotern/taotern-200m-branch-only-chat-20260514/outputs/diagnostics/generation_samples_pretrain_final.json", + "sft_samples": "/home/student/YouZheng/jobs/taotern/taotern-200m-branch-only-chat-20260514/outputs/diagnostics/generation_samples_sft_final.json" +} diff --git a/artifacts/run.sh b/artifacts/run.sh new file mode 100644 index 0000000000000000000000000000000000000000..1fcbc83ca9304ff1dd39b31fa4e72f9dfa834f16 --- /dev/null +++ b/artifacts/run.sh @@ -0,0 +1,55 @@ +#!/usr/bin/env bash +set -Eeuo pipefail + +job_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +status_json="$job_dir/status.json" +log_path="$job_dir/train.log" +telemetry_path="$job_dir/gpu_telemetry_nvidia_smi.csv" + +write_status() { + local state="$1" + local extra="${2:-}" + local now + now="$(date -Iseconds)" + cat > "$status_json" </dev/null 2>&1; then + ( + while true; do + date -Iseconds + nvidia-smi --query-gpu=timestamp,name,utilization.gpu,utilization.memory,memory.used,memory.total,power.draw,temperature.gpu --format=csv,noheader,nounits + sleep 5 + done + ) > "$telemetry_path" 2>&1 & + monitor_pid="$!" +fi + +cleanup() { + if [[ -n "$monitor_pid" ]]; then + kill "$monitor_pid" 2>/dev/null || true + wait "$monitor_pid" 2>/dev/null || true + fi +} +trap cleanup EXIT + +set +e +"$job_dir/command.sh" > "$log_path" 2>&1 +exit_code="$?" +set -e + +if [[ "$exit_code" -eq 0 ]]; then + touch "$job_dir/DONE" + write_status "completed" ",\"exit_code\":0,\"end_time\":\"$(date -Iseconds)\"" +else + echo "$exit_code" > "$job_dir/FAILED" + write_status "failed" ",\"exit_code\":$exit_code,\"end_time\":\"$(date -Iseconds)\"" +fi + +exit "$exit_code" diff --git a/artifacts/run_plan.json b/artifacts/run_plan.json new file mode 100644 index 0000000000000000000000000000000000000000..2f7f4556f8c81689a12b19e8bd840646c0e27e07 --- /dev/null +++ b/artifacts/run_plan.json @@ -0,0 +1,19 @@ +{ + "purpose": "200m_branch_only_pure_ssm_4b_pretrain_plus_sft_chatbot_attempt", + "candidate": "pure_ssm_196m_branch_rms_only", + "pretrain_token_positions": 4000000000, + "pretrain_steps": 976563, + "batch_size": 8, + "seq_len": 512, + "sft_steps": 50000, + "pretrain_lr": 0.0008, + "sft_lr": 0.00005, + "save_every_steps": 100000, + "block_residual_rms_cap": "null", + "notes": [ + "Uses streaming JSONL training through TaoTrain CLI.", + "Counts token positions as batch_size * seq_len * max_steps.", + "Keeps SSM branch RMS normalization enabled and block residual RMS normalization disabled.", + "Runs corrected response-only SFT after pretraining." + ] +} diff --git a/artifacts/status.json b/artifacts/status.json new file mode 100644 index 0000000000000000000000000000000000000000..b78b7769bc5e9be2e80409fea1276d62913e76b0 --- /dev/null +++ b/artifacts/status.json @@ -0,0 +1 @@ +{"state":"completed","updated_at":"2026-05-15T19:22:45+08:00","job_dir":"/home/student/YouZheng/jobs/taotern/taotern-200m-branch-only-chat-20260514","exit_code":0,"end_time":"2026-05-15T19:22:45+08:00"} diff --git a/code/TaoTrain/.gitignore b/code/TaoTrain/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..6f4aa6f88a1bc524e547c2440fc524a6787bdf75 --- /dev/null +++ b/code/TaoTrain/.gitignore @@ -0,0 +1,150 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +pip-wheel-metadata/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +.python-version + +# pipenv +Pipfile.lock + +# PEP 582 +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# IDEs +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# OS +.DS_Store +Thumbs.db + +# Project-specific +checkpoints/ +runs/ +results/ +*.pt +*.pth +*.safetensors +aim_logs/ +.aim/ +wandb/ +lightning_logs/ + +# Dataset cache +.cache/ +datasets_cache/ diff --git a/code/TaoTrain/README.md b/code/TaoTrain/README.md new file mode 100644 index 0000000000000000000000000000000000000000..347e596067f0dc4b34f5e3ec43b45fdfcb6c1aa5 --- /dev/null +++ b/code/TaoTrain/README.md @@ -0,0 +1,423 @@ +# TaoTrain: Production-Grade LLM Training Framework + +**TaoTrain** is a sophisticated PyTorch framework for training large language models at every scale—from experimental pretraining through supervised fine-tuning to reinforcement learning. Unlike fragmented training scripts or heavyweight frameworks, TaoTrain unifies the **entire training pipeline** in a clean, modular codebase that appeals to both ML engineers and software engineers. + +## Current Taotern Work + +TaoTrain now includes the Taotern comparison architectures used by the current SSM LLM work: + +- `taonet`: the attention/MLA baseline. +- `taonet_ssm`: the TaoNet shell with the attention mixer replaced by the Gamma Space Model DPLR SSM. +- `taonet_hybrid`: an alternating attention/SSM TaoNet used for the current best 200M-class candidate. + +The current selected deployment-oriented run is `hybrid_ssm_first_199m`, a `199,480,928` parameter model with 16 layers: SSM layers at `0,2,4,6,8,10,12,14` and attention layers at `1,3,5,7,9,11,13,15`. It uses the DPLR SSM core with split two-lane mixing, channel gates, per-channel local shift, and the faster convolution path for long-sequence training. + +Remote run `taotern-200m-hybrid-chat-20260512` trains this model on TaoData for a 4B-token base stage and then runs SFT so the final artifact can be loaded as a chat model. The trainable fixes added for this run are: + +- Async JSONL iteration keeps polling while tokenization workers are alive instead of ending early after a temporary empty queue. +- Cached JSONL scan metadata is reused safely while recomputing chunk ranges for the active `samples_per_chunk` and `max_samples` settings. + +## Why TaoTrain? + +- **Complete Unified Pipeline**: Pretraining → SFT → RL in a single, consistent framework. No context switching between different codebases or architectures. +- **Production-Grade Engineering**: Type-safe Pydantic configs, comprehensive checkpointing, AimStack integration, and proper gradient handling—not research code, but a framework you can deploy. +- **Extensibility Without Modification**: Register custom models, optimizers, schedulers, and datasets via decorators. Experiment freely without forking the framework. +- **Developer Experience First**: Interactive TUI for inference, intuitive YAML configurations, async data loading that eliminates I/O bottlenecks, and clear abstractions that make the codebase a pleasure to work with. + +## Key Capabilities + +| Capability | Details | +|---|---| +| **Multi-Stage Training** | Unified infrastructure for pretraining, SFT, and RL. Share model checkpoints, logging, and evaluation across stages. | +| **Advanced Optimization** | Hybrid Muon + AdamW optimizer: efficient 2D weight updates via SVD-based methods + adaptive learning for 1D parameters. | +| **Modern Architectures** | DeepSeek MLA with grouped query attention (GQA), YaRN context extension, and factorized embeddings—all configurable via YAML. | +| **Production Features** | BF16 mixed precision training, gradient accumulation, proper gradient clipping, checkpoint resumption, and validation loops. | +| **Async Data Pipeline** | Background tokenization with multi-threaded workers. Stream billion-token datasets from JSONL without loading into memory. | +| **Interactive Inference** | TUI chat interface with real-time generation speed metrics and multi-model comparison. | +| **Logging & Monitoring** | AimStack integration tracks loss, metrics, hyperparameters, and git hashes for reproducibility. Visualize training runs in your browser. | + +## Getting Started + +### Installation + +```bash +git clone https://github.com/lobakkang/taoTrain.git +cd taoTrain +pip install -e . +``` + +### Training Examples + +**Pretraining on a custom dataset:** +```bash +train pretrain --config configs/pretrain.yaml +``` +Starts from scratch, learns representations from raw text via next-token prediction. + +**Supervised Fine-tuning:** +```bash +train sft --config configs/sft.yaml +``` +Fine-tune a pretrained model on instruction-response pairs for improved task performance. + +**Reinforcement Learning (DPO):** +```bash +train rl --config configs/rl_dpo.yaml +``` +Align models with human preferences using Direct Preference Optimization. + +**Interactive Chat:** +```bash +tui-chat --model checkpoints/model.pt +``` +Launch an interactive TUI to chat with your model and monitor generation metrics in real-time. + +### Configuration + +All training is configured via YAML with Pydantic validation. Configs are type-safe and automatically validated: + +```yaml +# configs/sft.yaml +model: + architecture_type: "mla" # DeepSeek MLA with GQA + hidden_dim: 2048 + num_layers: 24 + num_heads: 32 + d_latent_kv: 1536 # KV compression factor + +training: + num_epochs: 3 + batch_size: 32 + learning_rate: 1e-4 + warmup_ratio: 0.1 + max_grad_norm: 1.0 + +optimizer: + optimizer_type: "muon_adamw" # Hybrid Muon + AdamW + muon_momentum: 0.95 + +data: + dataset_type: "sft_jsonl" # or "sft_hf" for HuggingFace + path: "data/sft_training.jsonl" + +logging: + log_to_aim: true + aim_repo: "/tmp/aim_logs" +``` + +See `configs/` for complete examples. + +## Project Architecture + +``` +src/taoTrain/ +├── cli.py # Main CLI entry point +├── config.py # Pydantic configuration schemas +│ +├── core/ # Base abstractions +│ └── base.py # BaseModel, BaseDataset, BaseTrainer +│ +├── models/ # Pluggable architecture system +│ ├── registry.py # Architecture factory with @register_architecture +│ ├── taonet.py # SimpleLLM with DeepSeek MLA +│ ├── mla_components.py # KV compression, GQA, YaRN +│ ├── embeddings.py # Factorized embeddings +│ └── transformer.py # Standard Transformer reference +│ +├── data/ # Advanced data pipeline +│ ├── factory.py # Dataset factory (HF + JSONL backends) +│ ├── async_loader.py # Async batch iteration (no I/O bottleneck) +│ ├── tokenization_queue.py # Background multi-threaded tokenization +│ ├── chunk_manager.py # Stream billion-token JSONL files +│ ├── hf_pretrain.py # HuggingFace pretraining datasets +│ ├── hf_sft.py # HuggingFace SFT datasets +│ ├── hf_rl.py # HuggingFace RL datasets +│ ├── pretrain_jsonl.py # JSONL pretraining +│ ├── sft_jsonl.py # JSONL SFT with instructions +│ └── rl_jsonl.py # JSONL RL with preferences +│ +├── training/ # Unified training infrastructure +│ └── trainer.py # Trainer + PretrainTrainer, SFTTrainer, RLTrainer +│ +├── optimizers/ # Pluggable optimizer system +│ ├── registry.py # Optimizer factory with @register_optimizer +│ ├── hybrid_muon_adamw.py # Composite: Muon (2D) + AdamW (1D) +│ ├── adamw.py # AdamW with weight decay +│ ├── adam.py # Standard Adam +│ └── sgd.py # SGD variants +│ +├── schedulers/ # Learning rate schedules +│ ├── registry.py # LR scheduler factory +│ ├── cosine_warmup.py # 3-phase: linear warmup → plateau → cosine decay +│ ├── linear_warmup.py # Linear warmup + constant +│ └── constant.py # Constant learning rate +│ +├── inference/ # Inference & interaction +│ ├── inferencer.py # Load & run inference from checkpoints +│ └── tui.py # Interactive chat with metrics display +│ +├── checkpointing/ # State management +│ └── checkpoint.py # Save/load model + optimizer + config + metrics +│ +├── logging/ # Experiment tracking +│ └── aim_logger.py # AimStack integration (loss, metrics, hyperparams) +│ +├── benchmarks/ # Evaluation tools +│ └── runner.py # Perplexity, speed, and task-specific benchmarks +│ +└── utils/ + └── helpers.py # Utility functions + +configs/ # Example YAML configurations +├── pretrain.yaml # Pretraining config +├── sft.yaml # SFT config +├── rl_dpo.yaml # RL/DPO config +└── tokenizer.yaml # Tokenizer config + +tests/ # Unit & integration tests +└── test_dataset.py +``` + +## Extensible Architecture: The Registry Pattern + +TaoTrain's power lies in its **pluggable design**. Add custom models, optimizers, schedulers, and datasets without modifying the framework. + +### Custom Model Architecture + +```python +from taoTrain.models import register_architecture, BaseModel +import torch.nn as nn + +@register_architecture("custom_moe") +class MixtureOfExperts(BaseModel): + """Your custom MoE architecture""" + def __init__(self, config): + super().__init__(config) + self.experts = nn.ModuleList([ + nn.Linear(config.hidden_dim, config.hidden_dim) + for _ in range(config.num_experts) + ]) + self.router = nn.Linear(config.hidden_dim, config.num_experts) + + def forward(self, input_ids, attention_mask=None): + # Your implementation + logits = self.compute_logits(input_ids) + loss = self.compute_loss(logits, labels) if labels is not None else None + return {"logits": logits, "loss": loss} +``` + +Then use it in your config: + +```yaml +model: + architecture_type: "custom_moe" + hidden_dim: 2048 + num_experts: 8 +``` + +### Custom Optimizers & Schedulers + +The same pattern works for optimizers and learning rate schedules: + +```python +from taoTrain.optimizers import register_optimizer +from torch.optim import Optimizer + +@register_optimizer("my_adaptive_optimizer") +class MyAdaptiveOptimizer(Optimizer): + def step(self, closure=None): + # Your optimization logic + pass +``` + +```python +from taoTrain.schedulers import register_scheduler + +@register_scheduler("my_schedule") +def my_schedule(initial_lr, step, total_steps, **kwargs): + return initial_lr * (1.0 - step / total_steps) # Linear decay +``` + +**The key principle**: No framework code needs to change. You register once, it's available everywhere. + +### Dataset Backend Flexibility + +Define custom datasets (JSONL, HF, streaming, etc.) and let the factory route to them: + +```python +from taoTrain.data import register_dataset + +@register_dataset("pretrain", "my_backend") +class MyPretrainDataset(BaseDataset): + def __init__(self, config): + # Load from your custom backend + pass + + def __getitem__(self, idx): + return {"input_ids": ..., "attention_mask": ...} +``` + +Use in config: + +```yaml +data: + dataset_type: "pretrain" + backend_type: "my_backend" # Routes to MyPretrainDataset +``` + +## Why TaoTrain Framework? + +### Async Data Loading: No I/O Bottleneck + +Most training frameworks load and tokenize data on the main training thread, blocking compute. TaoTrain's **multi-threaded tokenization pipeline**: + +- Tokenizes data in background workers while your GPU trains +- Supports streaming billion-token JSONL files without loading into memory +- Intelligent chunking (by file size or sample count) +- Metadata caching to avoid rescanning + +**Result**: 10-100x faster data iteration on large datasets. + +### Type-Safe Configuration + +Forget YAML parsing errors or mysterious config bugs. TaoTrain uses **Pydantic dataclasses** for configuration: + +- Automatic type validation: mistyped `learning_rate: "1e-4"` becomes an error, not silent failure +- Serialization: configs are part of checkpoints, ensuring reproducibility +- IDE support: autocomplete and type hints for all config fields +- Defaults: sensible defaults for all parameters + +### Benchmarking & Metrics + +Track what matters: + +- **Perplexity**: Language modeling quality on held-out data +- **Generation Speed**: Tokens-per-second (useful for TUI or deployment) +- **Task-Specific Accuracy**: Evaluate on downstream tasks +- **Training Metrics**: Loss curves, gradient norms, effective batch size + +All logged to AimStack with git hashes for reproducibility. + +## Logging with AimStack + +Automatically track and visualize experiments: + +```bash +aim up --host 0.0.0.0 +``` + +Then open `http://localhost:43800` to see: + +- **Loss curves** per training step +- **Hyperparameters** (learning rate, batch size, model architecture) +- **Git hashes** for reproducibility +- **Custom metrics** (perplexity, validation accuracy, generation speed) +- **Compare runs**: Side-by-side experiment comparison + +## Advanced Features + +### Checkpointing with Resumption + +TaoTrain saves complete training state: + +```python +checkpoint = { + "step": 12500, + "model_state": model.state_dict(), + "optimizer_state": optimizer.state_dict(), + "config": config, # Full config as Pydantic object + "metrics": metrics_tracker.to_dict(), +} +``` + +Resume training from any checkpoint without loss of state. Keep last N checkpoints automatically. + +### Mixed Precision Training (BF16) + +```yaml +training: + use_bfloat16: true + gradient_accumulation_steps: 4 +``` + +- BF16 via `torch.autocast` for ~2x speedup with minimal accuracy loss +- Proper gradient scaling and clipping +- Compatible with all optimizers and architectures + +### 3-Phase Learning Rate Schedule + +```yaml +scheduler: + scheduler_type: "cosine_warmup" + warmup_ratio: 0.1 # 10% of training steps + steady_ratio: 0.5 # 50% at steady rate + min_lr_ratio: 0.1 # Final LR = 0.1 × initial_lr + num_cycles: 1 +``` + +This schedule: +1. **Linear warmup** (0 → 1) over 10% of steps +2. **Steady plateau** at full LR over 50% of steps +3. **Cosine decay** (1 → 0.1) over remaining 40% of steps + +Better convergence than simple cosine or linear decay. + +### Gradient Accumulation & Clipping + +Simulate larger batch sizes with gradient accumulation: + +```yaml +training: + batch_size: 32 + gradient_accumulation_steps: 4 # Effective batch = 128 + max_grad_norm: 1.0 # Gradient clipping +``` + +## Contributing + +Contributions are welcome! TaoTrain is designed to make contributions easy: + +1. **Add a model**: Implement `BaseModel` and `@register_architecture("name")` +2. **Add an optimizer**: Implement `torch.optim.Optimizer` and `@register_optimizer("name")` +3. **Add a dataset**: Implement `BaseDataset` and `@register_dataset(mode, backend_type)` +4. **Improve the core**: Submit PRs to `training/`, `data/`, `logging/`, etc. + +Ensure new code includes: +- Type hints throughout +- Pydantic configs for new parameters +- Unit tests in `tests/` +- Documentation in docstrings and README + +## Current Scope & Roadmap + +### ✅ Currently Supported + +- **Single GPU / single node** training +- **Pretraining, SFT, and RL training** stages +- **HuggingFace and JSONL** data backends +- **BF16 mixed precision** training +- **Checkpoint saving/loading** with resumption +- **Interactive inference** via TUI +- **Benchmarking** (perplexity, speed) +- **Pluggable architectures, optimizers, schedulers, datasets** + +### 🚀 Roadmap (Future) + +- **Distributed training** (DDP, FSDP) for multi-GPU/multi-node scaling +- **Quantization** support (INT8, QLoRA) +- **Advanced evaluation** (BLEU, ROUGE, custom tasks) +- **Streaming inference** with KV cache +- **Speculative decoding** for faster generation +- **Integration with popular model hubs** (Hugging Face Hub upload/download) + +--- + +## Getting Help + +- **Questions?** Open an issue on GitHub +- **Want to contribute?** See `CONTRIBUTING.md` (coming soon) +- **Found a bug?** Report it with a minimal reproduction script + +## License + +MIT diff --git a/code/TaoTrain/configs/pretrain.yaml b/code/TaoTrain/configs/pretrain.yaml new file mode 100644 index 0000000000000000000000000000000000000000..7c217ce51ff03e86d959674cd64d96fe106350fa --- /dev/null +++ b/code/TaoTrain/configs/pretrain.yaml @@ -0,0 +1,138 @@ +# TaoNet T2 Configuration for Pretraining +# DeepSeek MLA + RoPE with Hybrid Muon+AdamW Optimizer +# Full BF16 precision (no quantization) + +# ============================================================================ +# Model Architecture - TaoNet (DeepSeek MLA + RoPE) +# ============================================================================ +model: + architecture_type: taonet + vocab_size: 8192 + hidden_dim: 768 + num_layers: 12 + num_heads: 8 + max_seq_length: 1024 + + # TaoNet-specific: Multi-head Latent Attention (MLA) compression + d_latent_kv: 512 + + # RoPE (Rotary Position Embedding) dimension per head + # Default would be 512 / 8 = 64 + d_rope: 64 + + # Feed-forward intermediate dimension + hidden_dim_ff: 2048 + + # Dropout rate (low for stability with large models) + dropout: 0.02 + + # Grouped Query Attention (1 = standard MLA, >1 = GQA) + gqa_groups: 1 + + # Optional: Use factorized embedding for parameter efficiency + # vocab (8192) → rank (96) → hidden (512) + use_factorized_embedding: false + d_embed_rank: 96 + + # Weight initialization standard deviation + init_std: 0.02 + +# ============================================================================ +# Dataset Configuration - Local JSONL +# ============================================================================ +dataset: + local: true + jsonl_path: /home/student/Data/TaoData/output.jsonl + text_field: text + max_samples: 1000000 + samples_per_chunk: 1000 + + # Tokenizer configuration + tokenizer_type: sentencepiece + tokenizer_path: tokenizer/tokenizer.model + tokenizer_threads: 4 + +# ============================================================================ +# Training Hyperparameters +# ============================================================================ +batch_size: 32 +num_epochs: 2 # Set to 10 for full training +gradient_accumulation_steps: 8 # Effective batch: 32 × 8 = 256 + +# Maximum gradient norm for clipping (prevents ternary instability) +max_grad_norm: 1.0 + +# ============================================================================ +# Optimizer - Hybrid Muon + AdamW +# ============================================================================ +# Strategy: +# - Muon: For 2D Linear weight matrices (orthogonal/SVD-based optimization) +# - 2D weights: learning_rate (5e-3) +# - AdamW: For 1D parameters (biases, norms, embeddings) +# - 1D params: adamw_lr (5e-4) = 1/10 × learning_rate + +optimizer: + optimizer_type: hybrid_muon_adamw + + # Learning rate for Muon (2D weight matrices) + learning_rate: 5e-3 + + # Learning rate for AdamW (1D parameters) + # Typically 1/10 of learning_rate to prevent over-updating 1D params + adamw_lr: 5e-4 + + # L2 regularization (weight decay) + weight_decay: 0.01 + + # Adam betas + betas: [0.9, 0.999] + + # Epsilon for numerical stability + eps: 1e-8 + +# ============================================================================ +# Learning Rate Scheduler - 3-Phase Cosine with Warmup +# ============================================================================ +# Phases: +# 1. Warmup: 0 → 1.0 (300 steps, ~1.4% of training) +# 2. Steady: 1.0 (constant for 5% of training) +# 3. Decay: 1.0 → 0.1 (cosine decay for remaining 95%) + +scheduler: + scheduler_type: cosineWarmup + warmup_steps: 300 + warmup_ratio: 0.0 # Ignored if warmup_steps > 0 + steady_ratio: 0.05 # 5% of total training steps at peak LR + min_lr_ratio: 0.1 # Decay to 10% of peak LR + num_cycles: 0.5 # For compatibility (not used in 3-phase schedule) + +# ============================================================================ +# Data Type and Device +# ============================================================================ +dtype: bfloat16 # Use BF16 for better convergence with large models +device: cuda # Use GPU for training + +# ============================================================================ +# Checkpointing and Validation +# ============================================================================ +checkpoint_dir: checkpoints/test +save_every_steps: 81920 +save_best_model: true +keep_last_n_checkpoints: 3 + +# Validation +eval_every_steps: 8192 +eval_samples: 8000 + +# ============================================================================ +# Logging +# ============================================================================ +log_every_steps: 50 +aim_repo: .aim + +# ============================================================================ +# Miscellaneous +# ============================================================================ +seed: 42 +num_workers: 0 +pin_memory: true diff --git a/code/TaoTrain/configs/rl_dpo.yaml b/code/TaoTrain/configs/rl_dpo.yaml new file mode 100644 index 0000000000000000000000000000000000000000..bf9522760c8f9efcf2a298b5325a2c950a848761 --- /dev/null +++ b/code/TaoTrain/configs/rl_dpo.yaml @@ -0,0 +1,60 @@ +# Example configuration for RL training (RL stage assumes you have a reward model) + +model: + architecture_type: transformer + vocab_size: 50257 + hidden_dim: 256 + num_layers: 8 + num_heads: 8 + dropout: 0.1 + max_seq_length: 512 + init_std: 0.02 + +dataset: + dataset_name: allenai/real_toxicity_prompts + split: train + prompt_column: text + max_samples: 2000 + cache_dir: .cache/datasets + tokenizer_threads: 1 # Number of background threads for tokenization (1-32 recommended) + +batch_size: 4 +num_epochs: 1 +gradient_accumulation_steps: 8 +max_grad_norm: 0.5 + +optimizer: + optimizer_type: adamw + learning_rate: 1e-5 + weight_decay: 0.0 + +scheduler: + scheduler_type: linearWarmup + warmup_steps: 50 + +dtype: bfloat16 +device: cuda + +checkpoint_dir: checkpoints/rl +save_every_steps: 100 +save_best_model: false +keep_last_n_checkpoints: 2 + +eval_every_steps: 100 +eval_samples: 100 + +log_every_steps: 10 +aim_repo: .aim + +# RL-specific settings +rl_method: ppo # or "dpo" +reward_model_path: checkpoints/reward_model.pt # Path to your reward model +ppo_epochs: 4 +ppo_clip_ratio: 0.2 +entropy_coeff: 0.01 +value_loss_coeff: 1.0 +generation_max_length: 256 + +seed: 42 +num_workers: 0 +pin_memory: true diff --git a/code/TaoTrain/configs/sft.yaml b/code/TaoTrain/configs/sft.yaml new file mode 100644 index 0000000000000000000000000000000000000000..9817104de8b5163392192ee2155a669897b00cb0 --- /dev/null +++ b/code/TaoTrain/configs/sft.yaml @@ -0,0 +1,93 @@ +# Example configuration for supervised fine-tuning +# Uses TaoNet (MLA+RoPE) architecture loaded from pretrained checkpoint + +# ============================================================================ +# Model Architecture - TaoNet (DeepSeek MLA + RoPE) +# ============================================================================ +model: + architecture_type: taonet + vocab_size: 8192 + hidden_dim: 768 + num_layers: 12 + num_heads: 8 + max_seq_length: 1024 + + # TaoNet-specific: Multi-head Latent Attention (MLA) compression + d_latent_kv: 512 + + # RoPE (Rotary Position Embedding) dimension per head + # Default would be 512 / 8 = 64 + d_rope: 64 + + # Feed-forward intermediate dimension + hidden_dim_ff: 2048 + + # Dropout rate (low for stability with large models) + dropout: 0.02 + + # Grouped Query Attention (1 = standard MLA, >1 = GQA) + gqa_groups: 1 + + # Optional: Use factorized embedding for parameter efficiency + # vocab (8192) → rank (96) → hidden (512) + use_factorized_embedding: false + d_embed_rank: 96 + + # Weight initialization standard deviation + init_std: 0.02 + +dataset: + split: train + instruction_column: input + response_column: output + + local: true + jsonl_path: /home/student/Data/TaoData/sft.jsonl + samples_per_chunk: 1000 + #max_samples: 2000000 + max_samples: 1000000 + cache_dir: .cache/datasets + instruction_template: "{instruction}\n{response}" + + # Tokenizer configuration + tokenizer_type: sentencepiece + tokenizer_path: tokenizer/tokenizer.model + tokenizer_threads: 4 + +# SFT-specific configuration (these fields are in SFTConfig) +checkpoint_path: "checkpoints/pretrain/final_model.pt" +user_token: "" +assistant_token: "" +response_loss_only: true + +batch_size: 8 +num_epochs: 1 +gradient_accumulation_steps: 4 +max_grad_norm: 1.0 + +optimizer: + optimizer_type: adamw + learning_rate: 5e-5 # Lower LR for fine-tuning (vs 5e-4 pretrain base, 5e-3 Muon) + weight_decay: 0.01 + +scheduler: + scheduler_type: linearWarmup + warmup_steps: 500 # Less aggressive warmup for fine-tuning + +dtype: bfloat16 +device: cuda + +checkpoint_dir: checkpoints/sft +save_every_steps: 81920 +save_best_model: true +keep_last_n_checkpoints: 2 + +eval_every_steps: 8192 +eval_samples: 200 + +log_every_steps: 10 +aim_repo: .aim + +seed: 42 +num_workers: 0 +pin_memory: true diff --git a/code/TaoTrain/configs/ssm_pretrain.yaml b/code/TaoTrain/configs/ssm_pretrain.yaml new file mode 100644 index 0000000000000000000000000000000000000000..05be229c1d7aeca7bca2734dcd256e53edd34bb9 --- /dev/null +++ b/code/TaoTrain/configs/ssm_pretrain.yaml @@ -0,0 +1,87 @@ +# TaoNet-SSM T2 Configuration for Pretraining +# TaoNet shell with Gamma SSM replacing the MLA attention mixer. + +model: + architecture_type: taonet_ssm + vocab_size: 8192 + hidden_dim: 768 + num_layers: 12 + num_heads: 8 + max_seq_length: 1024 + + d_latent_kv: 512 + d_rope: 64 + hidden_dim_ff: 2048 + dropout: 0.02 + gqa_groups: 1 + use_factorized_embedding: false + d_embed_rank: 96 + init_std: 0.02 + + ssm_core: dplr + ssm_hidden_dim: 512 + ssm_mixer_dim: 256 + ssm_rank: 1 + ssm_max_low_rank_scale: 0.1 + ssm_discretization: bilinear + ssm_kernel_mode: auto + ssm_kernel_threshold: 64 + ssm_dt_min: 1e-3 + ssm_dt_max: 1e-1 + ssm_dt_init: 1e-2 + ssm_use_d: true + ssm_activation: gelu + ssm_gate: true + ssm_input_gate: true + ssm_use_padding_mask: false + ssm_layer_scale_init: 0.1 + +dataset: + local: true + jsonl_path: /home/student/Data/TaoData/output.jsonl + text_field: text + max_samples: 1000000 + samples_per_chunk: 1000 + + tokenizer_type: sentencepiece + tokenizer_path: tokenizer/tokenizer.model + tokenizer_threads: 4 + +batch_size: 32 +num_epochs: 2 +gradient_accumulation_steps: 8 +max_grad_norm: 1.0 + +optimizer: + optimizer_type: hybrid_muon_adamw + learning_rate: 5e-3 + adamw_lr: 5e-4 + weight_decay: 0.01 + betas: [0.9, 0.999] + eps: 1e-8 + +scheduler: + scheduler_type: cosineWarmup + warmup_steps: 300 + warmup_ratio: 0.0 + steady_ratio: 0.05 + min_lr_ratio: 0.1 + num_cycles: 0.5 + +dtype: bfloat16 +device: cuda + +checkpoint_dir: checkpoints/ssm_test +save_every_steps: 81920 +save_best_model: true +keep_last_n_checkpoints: 3 + +eval_every_steps: 8192 +eval_samples: 8000 + +log_every_steps: 50 +aim_repo: .aim + +seed: 42 +num_workers: 0 +pin_memory: true diff --git a/code/TaoTrain/configs/tokenizer.yaml b/code/TaoTrain/configs/tokenizer.yaml new file mode 100644 index 0000000000000000000000000000000000000000..6fef6a437f5dfbd55086c8edf27b82a9a854d33c --- /dev/null +++ b/code/TaoTrain/configs/tokenizer.yaml @@ -0,0 +1,44 @@ +# Example configuration for training a SentencePiece tokenizer from JSONL data + +# Dataset source - JSONL file +jsonl_path: /home/student/Data/TaoData/output.jsonl +text_field: text # Field name in JSON for text data + +# Tokenizer training parameters +vocab_size: 8192 +model_type: unigram # SentencePiece model type: unigram, bpe, char, word +character_coverage: 0.9995 + +# Output configuration +output_dir: tokenizer +tokenizer_prefix: tokenizer + +# Token ID configuration +unk_id: 0 # Unknown token ID +bos_id: 1 # Beginning of sentence token ID +eos_id: 2 # End of sentence token ID +pad_id: 3 # Padding token ID + +# Custom special tokens +# These will be added to the vocabulary with explicit IDs +# Useful for control tokens like , , , etc. +# Note: Use \n for newline token, \t for tab, etc. +special_tokens: + : 3 # Padding (typically same as pad_id above) + : 2 # End of sentence (typically same as eos_id above) + : 1 # Beginning of sentence (typically same as bos_id above) + : 0 # Unknown (typically same as unk_id above) + "\n": 4 # Newline token - quoted to preserve literal \n in YAML + : 8 # Special token for chain-of-thought reasoning + : 9 # User message token + : 10 # Assistant message token + : 11 # Image token for multimodal models + +# Data sampling (optional) +# Set to a number to train on only the first N samples from the JSONL file +# Useful for quick testing or sub-sampling large datasets +# Omit or set to null to use entire file +max_samples: 1000000 + +# Optional metadata +tokenizer_name: tokenizer diff --git a/code/TaoTrain/configs/tokenizer_taodata_pilot.yaml b/code/TaoTrain/configs/tokenizer_taodata_pilot.yaml new file mode 100644 index 0000000000000000000000000000000000000000..8d7cecb9c4753ce5ae561ea18a066a9dfaf9018c --- /dev/null +++ b/code/TaoTrain/configs/tokenizer_taodata_pilot.yaml @@ -0,0 +1,22 @@ +# Pilot SentencePiece tokenizer for remote TaoData benchmarks. +# +# This is intentionally smaller than full production tokenizer training so the +# model-comparison loop can validate attention vs SSM on realistic tokenization. + +jsonl_path: /home/student/Data/TaoData/pretrain.jsonl.fineweb.jsonl +text_field: text + +vocab_size: 8192 +model_type: unigram +character_coverage: 0.9995 + +output_dir: /home/student/YouZheng/tokenizers/taodata_pilot_8k +tokenizer_prefix: tokenizer + +unk_id: 0 +bos_id: 1 +eos_id: 2 +pad_id: 3 + +max_samples: 20000 +tokenizer_name: taodata_pilot_8k diff --git a/code/TaoTrain/configs/yarn_pretrain.yaml b/code/TaoTrain/configs/yarn_pretrain.yaml new file mode 100644 index 0000000000000000000000000000000000000000..bf0e4a59c997b460faeacb115d4b7665a5f5b055 --- /dev/null +++ b/code/TaoTrain/configs/yarn_pretrain.yaml @@ -0,0 +1,181 @@ +# TaoNet T2 Configuration for YaRN Continued Pretraining +# Extended Context: 1024 → 8192 tokens with frequency interpolation +# Built on DeepSeek MLA + RoPE with Hybrid Muon+AdamW Optimizer +# Full BF16 precision (no quantization) + +# ============================================================================ +# Model Architecture - TaoNet (DeepSeek MLA + RoPE) with YaRN Extension +# ============================================================================ +model: + architecture_type: taonet + vocab_size: 8192 + hidden_dim: 512 + num_layers: 12 + num_heads: 8 + max_seq_length: 8192 # Extended from 1024 → 8192 (8x longer context) + + # TaoNet-specific: Multi-head Latent Attention (MLA) compression + # KV dimension reduced from 512 to 384 (25% memory savings) + d_latent_kv: 384 + + # RoPE (Rotary Position Embedding) dimension per head + # Default would be 512 / 8 = 64 + d_rope: 64 + + # Feed-forward intermediate dimension + # Default would be 4 * 512 = 2048 + hidden_dim_ff: 1024 + + # Dropout rate (low for stability) + dropout: 0.02 + + # Grouped Query Attention (1 = standard MLA, >1 = GQA) + gqa_groups: 1 + + # Optional: Use factorized embedding for parameter efficiency + use_factorized_embedding: false + d_embed_rank: 96 + + # Weight initialization standard deviation + init_std: 0.02 + + # ======================================================================== + # YaRN (Yet another RoPE eXtension) Configuration + # ======================================================================== + # Enables frequency interpolation to extend context length from 1024 → 8192 + # The model learns to "pack" RoPE frequencies into the new longer context during training. + + # RoPE base scale factor (explicit, previously hardcoded to 40) + rope_scale: 40.0 + + # Enable YaRN frequency interpolation + yarn_enabled: true + + # Interpolation smoothness parameter + # - 1.0 (default): Smooth, gradual interpolation—safer for learning extended context + # - 0.5: Aggressive interpolation—faster context expansion, higher risk + # - 2.0: Conservative interpolation—safer but slower adaptation + # Recommendation: Start with 1.0; tune in follow-up runs if convergence issues + yarn_alpha: 1.0 + +# ============================================================================ +# Dataset Configuration - Local JSONL (Same as Pretrain) +# ============================================================================ +dataset: + local: true + jsonl_path: /home/student/Data/TaoData/output.jsonl + text_field: text + max_samples: 50000 # Reduced from 1M → 50k for quick YaRN adaptation + samples_per_chunk: 1000 + + # Tokenizer configuration (unchanged) + tokenizer_type: sentencepiece + tokenizer_path: tokenizer/tokenizer.model + tokenizer_threads: 4 + +# ============================================================================ +# Training Hyperparameters - Conservative for Context Extension +# ============================================================================ +# Strategy: Lower learning rates + smaller batch to prevent catastrophic forgetting +# while the model learns to use 8x longer context. + +batch_size: 16 # Reduced from 32 (8192 tokens/seq is memory-intensive) +num_epochs: 1 # 50k samples / effective_batch=256 ≈ 200 updates (1 epoch sufficient for warm-start) + +# Gradient accumulation to maintain effective batch size of ~256 +# Effective batch = batch_size × gradient_accumulation_steps = 16 × 16 = 256 +gradient_accumulation_steps: 16 + +# Maximum gradient norm for clipping +max_grad_norm: 1.0 + +# ============================================================================ +# Optimizer - Hybrid Muon + AdamW (Conservative LR for Stability) +# ============================================================================ +# Strategy: Use 1/2 of pretrain learning rates to: +# 1. Avoid catastrophic forgetting of learned features +# 2. Allow smooth adaptation to YaRN-scaled RoPE frequencies +# 3. Give the model time to learn how to use extended context + +optimizer: + optimizer_type: hybrid_muon_adamw + + # Learning rate for Muon (2D weight matrices) + # Reduced: 5e-3 → 2.5e-3 (50% of pretrain) + learning_rate: 2.5e-3 + + # Learning rate for AdamW (1D parameters) + # Reduced: 5e-4 → 1.25e-4 (25% of pretrain, maintains 1/10 ratio) + adamw_lr: 1.25e-4 + + # L2 regularization (weight decay) + weight_decay: 0.01 + + # Adam betas (unchanged) + betas: [0.9, 0.999] + + # Epsilon for numerical stability + eps: 1e-8 + +# ============================================================================ +# Learning Rate Scheduler - 3-Phase Cosine with Warmup (Same as Pretrain) +# ============================================================================ +# Phases: +# 1. Warmup: 0 → 1.0 (300 steps, ~1.4% of training) +# 2. Steady: 1.0 (constant for 5% of training steps at peak LR) +# 3. Decay: 1.0 → 0.1 (cosine decay for remaining ~95%) + +scheduler: + scheduler_type: cosineWarmup + warmup_steps: 300 + warmup_ratio: 0.0 # Ignored if warmup_steps > 0 + steady_ratio: 0.05 # 5% of total training steps at peak LR + min_lr_ratio: 0.1 # Decay to 10% of peak LR + num_cycles: 0.5 # For compatibility (not used in 3-phase schedule) + +# ============================================================================ +# Data Type and Device +# ============================================================================ +dtype: bfloat16 # Use BF16 for better convergence with extended context +device: cuda # Use GPU for training + +# ============================================================================ +# Checkpointing and Validation +# ============================================================================ +# Load pretrained checkpoint and continue training +checkpoint_path: checkpoints/pretrain_taonet/best_model.pt +checkpoint_dir: checkpoints/yarn_taonet +save_every_steps: 512 # More frequent saves for 50k samples (200 updates total) +save_best_model: true +keep_last_n_checkpoints: 3 + +# Validation every 512 steps (10% of 50k samples) +eval_every_steps: 512 +eval_samples: 2500 # Reduced from 8000 + +# ============================================================================ +# Logging +# ============================================================================ +log_every_steps: 50 # Log every 50 updates +aim_repo: .aim + +# ============================================================================ +# Miscellaneous +# ============================================================================ +seed: 42 +num_workers: 0 +pin_memory: true + +# ============================================================================ +# YaRN Performance Notes +# ============================================================================ +# Expected memory usage: ~1.5x of pretrain (8x longer seq, half batch) +# Expected training time: ~50-100 steps/min on H100 (depends on setup) +# Expected convergence: Loss should decrease over 50k samples; monitor perplexity on 8192-length sequences +# +# Tuning recommendations for iterative improvements: +# 1. If loss is unstable: Reduce learning_rate further (1.25e-3) +# 2. If loss plateaus quickly: Increase max_samples (100k-200k) +# 3. If memory OOM: Reduce batch_size to 8 (maintain grad_accum at 16) +# 4. To speed context expansion: Reduce yarn_alpha to 0.5 (more aggressive) +# 5. For safer training: Increase yarn_alpha to 2.0 (more conservative) diff --git a/code/TaoTrain/data/sample_data.jsonl b/code/TaoTrain/data/sample_data.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..935a27eb7ba098d09fff8119139dc150841db1e8 --- /dev/null +++ b/code/TaoTrain/data/sample_data.jsonl @@ -0,0 +1,10 @@ +{"text": "The quick brown fox jumps over the lazy dog."} +{"text": "Python is a powerful programming language used for data science, machine learning, and web development."} +{"text": "Artificial intelligence and machine learning are transforming industries and creating new opportunities."} +{"text": "Natural language processing enables computers to understand and generate human language."} +{"text": "Deep learning models like transformers have revolutionized the field of artificial intelligence."} +{"text": "Transfer learning allows us to leverage pre-trained models to solve new tasks more efficiently."} +{"text": "The transformer architecture introduced attention mechanisms that became fundamental to modern NLP."} +{"text": "Language models trained on large corpora can perform impressive few-shot learning tasks."} +{"text": "Tokenization is a crucial preprocessing step in natural language processing pipelines."} +{"text": "SentencePiece is a language-independent tokenization algorithm that handles subword segmentation."} diff --git a/code/TaoTrain/data/sample_sft_multi.jsonl b/code/TaoTrain/data/sample_sft_multi.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..a4241a22baa9f36ec318fe088ac79ed726401ec5 --- /dev/null +++ b/code/TaoTrain/data/sample_sft_multi.jsonl @@ -0,0 +1,4 @@ +{"turns": [{"user": "What is machine learning?", "assistant": "Machine learning is a subset of artificial intelligence that enables systems to learn and improve from experience without being explicitly programmed. It uses algorithms to identify patterns in data."}, {"user": "Can you give me some examples?", "assistant": "Sure! Examples include: 1) Email spam detection - learns to identify spam patterns, 2) Image recognition - learns to identify objects in images, 3) Recommendation systems - learns user preferences to suggest content, 4) Natural language processing - learns language patterns for tasks like translation."}]} +{"turns": [{"user": "Explain neural networks", "assistant": "Neural networks are computing systems inspired by biological neural networks. They consist of interconnected nodes (neurons) organized in layers. Each connection has a weight that gets adjusted during training to learn patterns from data."}, {"user": "What layers do they have?", "assistant": "Neural networks typically have three types of layers: 1) Input layer - receives raw data, 2) Hidden layers - process data through weighted connections and activation functions, 3) Output layer - produces the final prediction or classification. Deep networks have multiple hidden layers."}]} +{"turns": [{"user": "What is a transformer model?", "assistant": "A transformer is a neural network architecture that uses self-attention mechanisms to weigh the importance of different input elements. It processes all input tokens in parallel (unlike RNNs) and captures long-range dependencies effectively. Transformers form the basis of modern large language models like GPT and BERT."}, {"user": "How does attention work?", "assistant": "Attention computes relevance scores between query tokens and all other tokens (keys and values). It learns which tokens to focus on when processing each position. Multi-head attention applies this in parallel with multiple learned representations. This allows the model to attend to different types of relationships simultaneously."}, {"user": "Why is it better than RNNs?", "assistant": "Transformers are better than RNNs because: 1) Parallel processing - all tokens processed simultaneously instead of sequentially, 2) Better long-range dependencies - attention can directly connect distant tokens, 3) Easier to train - no vanishing gradient problems, 4) Scalability - transformers scale better to large datasets and models."}]} +{"turns": [{"user": "What is the difference between supervised and unsupervised learning?", "assistant": "Supervised learning uses labeled data (input-output pairs) to train models, like predicting house prices from features. Unsupervised learning finds patterns in unlabeled data, like clustering similar customers. Supervised learning is more accurate but requires labeled data; unsupervised is useful for exploration."}, {"user": "What about semi-supervised learning?", "assistant": "Semi-supervised learning uses both labeled and unlabeled data. It's useful when labeling is expensive. The unlabeled data helps improve performance by providing additional patterns. Common techniques include pseudo-labeling (labeling unlabeled data with the current model) and consistency regularization."}]} diff --git a/code/TaoTrain/data/sample_sft_single.jsonl b/code/TaoTrain/data/sample_sft_single.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..0cf2b07deca3cca65c65cf6b1e5f4ffc8e815c7b --- /dev/null +++ b/code/TaoTrain/data/sample_sft_single.jsonl @@ -0,0 +1,5 @@ +{"input": "What is Python?", "output": "Python is a high-level, interpreted programming language known for its simplicity and readability. It supports multiple programming paradigms including procedural, object-oriented, and functional programming."} +{"input": "Explain recursion", "output": "Recursion is a programming technique where a function calls itself to solve a problem by breaking it down into smaller subproblems. Base cases prevent infinite recursion. Example: factorial(n) = n * factorial(n-1) for n > 1, else 1."} +{"input": "What are decorators in Python?", "output": "Decorators are functions that modify or wrap other functions or classes without permanently changing their source code. They use the @ symbol and are executed when the function is defined. Example: @staticmethod, @property, or custom decorators."} +{"input": "How do you handle exceptions in Python?", "output": "Exceptions are handled using try-except-else-finally blocks. The try block contains code that might raise an exception, except catches specific exceptions, else runs if no exception occurred, and finally runs regardless. Custom exceptions can be created by inheriting from Exception."} +{"input": "What is the difference between lists and tuples?", "output": "Lists are mutable (can be changed after creation) while tuples are immutable (cannot be changed). Lists use square brackets [] and tuples use parentheses (). Both can contain mixed data types. Tuples are faster and can be used as dictionary keys."} diff --git a/code/TaoTrain/pyproject.toml b/code/TaoTrain/pyproject.toml new file mode 100644 index 0000000000000000000000000000000000000000..27c86ca4421efe29042dac61dfacd01ce6c839f3 --- /dev/null +++ b/code/TaoTrain/pyproject.toml @@ -0,0 +1,65 @@ +[build-system] +requires = ["setuptools>=68.0", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "taoTrain" +version = "0.1.0" +description = "Clean, modular PyTorch LLM training framework with pluggable architectures, AimStack logging, and TUI inference" +readme = "README.md" +requires-python = ">=3.10" +license = { text = "MIT" } +authors = [ + { name = "Felix", email = "felix@example.com" } +] + +dependencies = [ + "torch>=2.0.0", + "transformers>=4.30.0", + "datasets>=2.10.0", + "pydantic>=2.0.0", + "pydantic-settings>=2.0.0", + "aim>=3.15.0", + "click>=8.1.0", + "rich>=13.0.0", + "textual>=0.30.0", + "numpy>=1.24.0", + "tqdm>=4.65.0", + "sentencepiece>=0.1.99", +] + +[project.optional-dependencies] +dev = [ + "pytest>=7.4.0", + "pytest-cov>=4.1.0", + "pytest-xdist>=3.3.0", + "black>=23.7.0", + "ruff>=0.0.280", + "typing-extensions>=4.7.0", +] + +[project.scripts] +train = "taoTrain.cli:main" +train-tokenizer = "taoTrain.cli:train_tokenizer_command" +tui-chat = "taoTrain.inference.tui:main" + +[tool.setuptools.packages.find] +where = ["src"] + +[tool.setuptools.package-data] +taoTrain = ["configs/**/*.yaml"] + +[tool.black] +line-length = 100 +target-version = ["py310"] + +[tool.ruff] +line-length = 100 +target-version = "py310" +select = ["E", "F", "W", "I", "N", "UP", "RUF"] +ignore = ["E501"] + +[tool.pytest.ini_options] +testpaths = ["tests"] +python_files = "test_*.py" +addopts = "--verbose" diff --git a/code/TaoTrain/scripts/benchmark_taonet_real_tokens.py b/code/TaoTrain/scripts/benchmark_taonet_real_tokens.py new file mode 100644 index 0000000000000000000000000000000000000000..aa671abcb15c1e2263ac7e1ca76790c2df5eff66 --- /dev/null +++ b/code/TaoTrain/scripts/benchmark_taonet_real_tokens.py @@ -0,0 +1,1034 @@ +"""Real-text token benchmark for TaoNet attention vs TaoNet-SSM. + +This script consumes a JSONL or plain-text corpus, tokenizes it into one long +stream, samples contiguous next-token batches, and compares TaoNet variants +with identical outer dimensions. It is intentionally lighter than the full +trainer so it can be used in the RepoBridge iteration loop. +""" + +from __future__ import annotations + +import argparse +import hashlib +from contextlib import nullcontext +from contextlib import redirect_stdout +import csv +import io +import json +import math +import os +from pathlib import Path +import platform +import random +import sys +import time +from typing import Any, Iterable + +import torch + +REPO_ROOT = Path(__file__).resolve().parents[1] +SRC_ROOT = REPO_ROOT / "src" +if str(SRC_ROOT) not in sys.path: + sys.path.insert(0, str(SRC_ROOT)) + +from taoTrain.config import ModelConfig +from taoTrain.models import get_model + + +DTYPES = { + "float32": torch.float32, + "fp32": torch.float32, + "float16": torch.float16, + "fp16": torch.float16, + "bfloat16": torch.bfloat16, + "bf16": torch.bfloat16, +} + +BYTE_PAD_ID = 0 +BYTE_EOS_ID = 1 +BYTE_UNK_ID = 2 +BYTE_OFFSET = 3 +BYTE_VOCAB_SIZE = 259 + + +def parse_int_list(value: str) -> list[int]: + return [int(item.strip()) for item in value.split(",") if item.strip()] + + +def parse_float_list(value: str) -> list[float]: + return [float(item.strip()) for item in value.split(",") if item.strip()] + + +def parse_str_list(value: str) -> list[str]: + return [item.strip() for item in value.split(",") if item.strip()] + + +def stable_case_id(parts: dict[str, Any]) -> str: + payload = json.dumps(parts, sort_keys=True, separators=(",", ":")) + return hashlib.sha1(payload.encode("utf-8")).hexdigest()[:16] + + +def make_case_parts( + args: argparse.Namespace, + *, + architecture: str, + ssm_hidden_dim: int | None, + ssm_mixer_dim: int | None, + ssm_num_lanes: int | None, + hybrid_pattern: str | None, + ssm_gate_type: str | None, + learning_rate: float, + weight_decay: float, + batch_size: int, +) -> dict[str, Any]: + uses_ssm = architecture in {"taonet_ssm", "taonet_hybrid"} + return { + "architecture": architecture, + "batch_size": batch_size, + "seq_len": args.seq_len, + "hidden_dim": args.hidden_dim, + "num_layers": args.num_layers, + "num_heads": args.num_heads, + "hidden_dim_ff": args.hidden_dim_ff, + "d_latent_kv": args.d_latent_kv, + "learning_rate": learning_rate, + "weight_decay": weight_decay, + "train_steps": args.train_steps, + "eval_batches": args.eval_batches, + "ssm_core": args.ssm_core if uses_ssm else None, + "ssm_hidden_dim": ssm_hidden_dim if uses_ssm else None, + "ssm_mixer_dim": ssm_mixer_dim if uses_ssm else None, + "ssm_num_lanes": ssm_num_lanes if uses_ssm else None, + "ssm_lane_mode": args.ssm_lane_mode if uses_ssm else None, + "ssm_split_mix": args.ssm_split_mix if uses_ssm else None, + "ssm_gate_type": ssm_gate_type if uses_ssm else None, + "ssm_branch_rms_norm": args.ssm_branch_rms_norm if uses_ssm else None, + "ssm_branch_clip_value": args.ssm_branch_clip_value if uses_ssm else None, + "block_residual_rms_norm": args.block_residual_rms_norm if uses_ssm else None, + "block_residual_rms_target": args.block_residual_rms_target if uses_ssm else None, + "block_residual_rms_cap": args.block_residual_rms_cap if uses_ssm else None, + "hybrid_pattern": hybrid_pattern if architecture == "taonet_hybrid" else None, + "hybrid_ssm_layers": args.hybrid_ssm_layers if architecture == "taonet_hybrid" else None, + } + + +def synchronize(device: torch.device) -> None: + if device.type == "cuda": + torch.cuda.synchronize(device) + + +def reset_memory(device: torch.device) -> None: + if device.type == "cuda": + torch.cuda.reset_peak_memory_stats(device) + + +def memory_stats(device: torch.device) -> dict[str, float | None]: + if device.type != "cuda": + return {"peak_allocated_mb": None, "peak_reserved_mb": None} + return { + "peak_allocated_mb": torch.cuda.max_memory_allocated(device) / (1024**2), + "peak_reserved_mb": torch.cuda.max_memory_reserved(device) / (1024**2), + } + + +def iter_texts(path: Path, *, text_field: str, max_records: int | None) -> Iterable[str]: + suffix = path.suffix.lower() + count = 0 + with path.open("r", encoding="utf-8", errors="replace") as handle: + if suffix in {".jsonl", ".json"}: + for line in handle: + if max_records is not None and count >= max_records: + break + line = line.strip() + if not line: + continue + try: + record = json.loads(line) + except json.JSONDecodeError: + continue + text = record.get(text_field) + if isinstance(text, str) and text: + count += 1 + yield text + else: + for line in handle: + if max_records is not None and count >= max_records: + break + line = line.rstrip("\n") + if line: + count += 1 + yield line + + +def load_sentencepiece(path: Path): + import sentencepiece as spm + + processor = spm.SentencePieceProcessor() + processor.load(str(path)) + return processor + + +def encode_text(text: str, *, tokenizer_type: str, sentencepiece_processor=None) -> list[int]: + if tokenizer_type == "byte": + return [byte + BYTE_OFFSET for byte in text.encode("utf-8", errors="replace")] + [BYTE_EOS_ID] + if tokenizer_type == "sentencepiece": + if sentencepiece_processor is None: + raise ValueError("sentencepiece tokenizer requested without a processor.") + ids = list(sentencepiece_processor.encode(text, out_type=int)) + eos_id = sentencepiece_processor.eos_id() + if eos_id >= 0: + ids.append(eos_id) + return ids + raise ValueError(f"Unsupported tokenizer type '{tokenizer_type}'.") + + +def load_token_stream(args: argparse.Namespace) -> tuple[torch.Tensor, int]: + path = Path(args.data_path) + if not path.exists(): + raise FileNotFoundError(f"Data path not found: {path}") + + sp = None + if args.tokenizer_type == "sentencepiece": + if not args.tokenizer_path: + raise ValueError("--tokenizer-path is required for sentencepiece tokenization.") + sp = load_sentencepiece(Path(args.tokenizer_path)) + vocab_size = int(sp.vocab_size()) + else: + vocab_size = BYTE_VOCAB_SIZE + + tokens: list[int] = [] + for text in iter_texts(path, text_field=args.text_field, max_records=args.max_records): + tokens.extend(encode_text(text, tokenizer_type=args.tokenizer_type, sentencepiece_processor=sp)) + if args.max_tokens is not None and len(tokens) >= args.max_tokens: + tokens = tokens[: args.max_tokens] + break + + if len(tokens) < args.seq_len + 2: + raise ValueError( + f"Need at least {args.seq_len + 2} tokens, found {len(tokens)} from {path}." + ) + return torch.tensor(tokens, dtype=torch.long), vocab_size + + +def split_stream(tokens: torch.Tensor, eval_fraction: float) -> tuple[torch.Tensor, torch.Tensor]: + split = int(tokens.numel() * (1.0 - eval_fraction)) + split = max(2, min(split, tokens.numel() - 2)) + return tokens[:split].contiguous(), tokens[split:].contiguous() + + +def sample_batch( + stream: torch.Tensor, + *, + batch_size: int, + seq_len: int, + device: torch.device, + generator: torch.Generator, +) -> tuple[torch.Tensor, torch.Tensor, torch.Tensor]: + max_start = stream.numel() - seq_len - 1 + if max_start <= 0: + raise ValueError(f"Token stream too short for seq_len={seq_len}.") + starts = torch.randint(0, max_start, (batch_size,), generator=generator) + rows = [stream[int(start) : int(start) + seq_len + 1] for start in starts] + batch = torch.stack(rows, dim=0).to(device=device) + input_ids = batch[:, :-1].contiguous() + labels = batch[:, 1:].contiguous() + attention_mask = torch.ones_like(input_ids) + return input_ids, labels, attention_mask + + +def token_accuracy(logits: torch.Tensor, labels: torch.Tensor) -> float: + predictions = torch.argmax(logits, dim=-1) + correct = predictions == labels + return float(correct.sum().detach().cpu() / correct.numel()) + + +def build_config( + args: argparse.Namespace, + *, + architecture: str, + vocab_size: int, + ssm_hidden_dim: int | None, + ssm_mixer_dim: int | None, + ssm_num_lanes: int | None, + hybrid_pattern: str | None, + ssm_gate_type: str | None, +) -> ModelConfig: + uses_ssm = architecture in {"taonet_ssm", "taonet_hybrid"} + d_latent_kv = args.d_latent_kv if args.d_latent_kv is not None else int(args.hidden_dim * 0.75) + d_rope = args.d_rope if args.d_rope is not None else args.hidden_dim // args.num_heads + hidden_dim_ff = args.hidden_dim_ff if args.hidden_dim_ff is not None else args.hidden_dim * 4 + return ModelConfig( + architecture_type=architecture, + vocab_size=vocab_size, + hidden_dim=args.hidden_dim, + num_layers=args.num_layers, + num_heads=args.num_heads, + max_seq_length=args.seq_len, + d_latent_kv=d_latent_kv, + d_rope=d_rope, + hidden_dim_ff=hidden_dim_ff, + dropout=args.dropout, + gqa_groups=args.gqa_groups, + rope_scale=args.rope_scale, + yarn_alpha=args.yarn_alpha, + init_std=args.init_std, + ssm_core=args.ssm_core, + ssm_hidden_dim=ssm_hidden_dim, + ssm_mixer_dim=ssm_mixer_dim, + ssm_num_lanes=ssm_num_lanes or args.ssm_num_lanes, + ssm_lane_combine=args.ssm_lane_combine, + ssm_lane_mode=args.ssm_lane_mode, + ssm_split_mix=args.ssm_split_mix, + ssm_rank=args.ssm_rank, + ssm_max_low_rank_scale=args.ssm_max_low_rank_scale, + ssm_finite_tail_correction=args.ssm_finite_tail_correction, + ssm_kernel_mode=args.ssm_kernel_mode, + ssm_kernel_threshold=args.ssm_kernel_threshold, + ssm_dt_min=args.ssm_dt_min, + ssm_dt_max=args.ssm_dt_max, + ssm_dt_init=args.ssm_dt_init, + ssm_use_padding_mask=False, + ssm_activation=args.ssm_activation, + ssm_gate=args.ssm_gate, + ssm_input_gate=args.ssm_input_gate, + ssm_gate_type=ssm_gate_type or args.ssm_gate_type, + ssm_layer_scale_init=args.ssm_layer_scale_init, + ssm_branch_rms_norm=args.ssm_branch_rms_norm if uses_ssm else False, + ssm_branch_clip_value=args.ssm_branch_clip_value if uses_ssm else None, + block_residual_rms_norm=args.block_residual_rms_norm if uses_ssm else False, + block_residual_rms_target=args.block_residual_rms_target, + block_residual_rms_cap=args.block_residual_rms_cap if uses_ssm else None, + ssm_local_shift=args.ssm_local_shift, + ssm_local_shift_init=args.ssm_local_shift_init, + ssm_local_shift_per_channel=args.ssm_local_shift_per_channel, + hybrid_pattern=hybrid_pattern or args.hybrid_pattern, + hybrid_ssm_layers=args.hybrid_ssm_layers or None, + ) + + +def time_repeats(fn, *, device: torch.device, warmup: int, repeats: int) -> tuple[float, float, float]: + last_loss = float("nan") + for _ in range(warmup): + last_loss = fn() + synchronize(device) + + latencies = [] + for _ in range(repeats): + reset_memory(device) + synchronize(device) + start = time.perf_counter() + last_loss = fn() + synchronize(device) + latencies.append(time.perf_counter() - start) + return sum(latencies) / len(latencies), min(latencies), last_loss + + +def evaluate_model( + model: torch.nn.Module, + *, + eval_stream: torch.Tensor, + args: argparse.Namespace, + batch_size: int, + device: torch.device, + generator: torch.Generator, + autocast_context, +) -> tuple[float, float]: + model.eval() + losses = [] + accuracies = [] + with torch.no_grad(): + for _ in range(args.eval_batches): + input_ids, labels, attention_mask = sample_batch( + eval_stream, + batch_size=batch_size, + seq_len=args.seq_len, + device=device, + generator=generator, + ) + with autocast_context(): + outputs = model(input_ids=input_ids, attention_mask=attention_mask, labels=labels) + losses.append(float(outputs["loss"].detach().cpu())) + accuracies.append(token_accuracy(outputs["logits"], labels)) + model.train() + return sum(losses) / len(losses), sum(accuracies) / len(accuracies) + + +def train_model( + model: torch.nn.Module, + *, + train_stream: torch.Tensor, + args: argparse.Namespace, + learning_rate: float, + weight_decay: float, + batch_size: int, + device: torch.device, + generator: torch.Generator, + autocast_context, +) -> tuple[float | None, float | None, float | None, float | None, list[dict[str, float | int]]]: + if args.train_steps <= 0: + return None, None, None, None, [] + + model.train() + optimizer = torch.optim.AdamW( + model.parameters(), + lr=learning_rate, + weight_decay=weight_decay, + ) + last_loss = float("nan") + last_grad_norm: float | None = None + max_grad_norm_seen: float | None = None + history: list[dict[str, float | int]] = [] + start = time.perf_counter() + trainable_params = [param for param in model.parameters() if param.requires_grad] + log_every = max(0, int(args.train_log_every)) + for step in range(1, args.train_steps + 1): + input_ids, labels, attention_mask = sample_batch( + train_stream, + batch_size=batch_size, + seq_len=args.seq_len, + device=device, + generator=generator, + ) + optimizer.zero_grad(set_to_none=True) + with autocast_context(): + outputs = model(input_ids=input_ids, attention_mask=attention_mask, labels=labels) + loss = outputs["loss"] + loss.backward() + if args.max_grad_norm and args.max_grad_norm > 0: + grad_norm_tensor = torch.nn.utils.clip_grad_norm_(trainable_params, args.max_grad_norm) + last_grad_norm = float(grad_norm_tensor.detach().cpu()) + max_grad_norm_seen = ( + last_grad_norm + if max_grad_norm_seen is None + else max(max_grad_norm_seen, last_grad_norm) + ) + optimizer.step() + last_loss = float(loss.detach().cpu()) + if log_every and (step == 1 or step % log_every == 0 or step == args.train_steps): + history.append( + { + "step": step, + "loss": last_loss, + "grad_norm": last_grad_norm if last_grad_norm is not None else float("nan"), + } + ) + synchronize(device) + return last_loss, time.perf_counter() - start, last_grad_norm, max_grad_norm_seen, history + + +def save_case_checkpoint( + *, + args: argparse.Namespace, + model: torch.nn.Module, + config: ModelConfig, + case_id: str, + case_parts: dict[str, Any], + train_final_loss: float | None, + train_seconds: float | None, + train_history: list[dict[str, float | int]], + eval_loss: float, + eval_accuracy: float, +) -> str | None: + if not args.save_case_checkpoints: + return None + checkpoint_dir = Path(args.checkpoint_dir) if args.checkpoint_dir else Path(args.output_dir) / "checkpoints" + checkpoint_dir.mkdir(parents=True, exist_ok=True) + path = checkpoint_dir / f"{case_id}.pt" + checkpoint = { + "step": args.train_steps, + "model_state": model.state_dict(), + "optimizer_state": None, + "config": {"model": config.to_dict(), "benchmark_args": vars(args)}, + "metrics": { + "train_final_loss": train_final_loss, + "train_seconds": train_seconds, + "train_history": train_history, + "eval_loss": eval_loss, + "eval_accuracy": eval_accuracy, + }, + "case_id": case_id, + "case_parts": case_parts, + } + torch.save(checkpoint, path) + latest_path = checkpoint_dir / "latest.pt" + try: + torch.save(checkpoint, latest_path) + except Exception: + pass + return str(path) + + +def benchmark_case( + *, + args: argparse.Namespace, + architecture: str, + ssm_hidden_dim: int | None, + ssm_mixer_dim: int | None, + ssm_num_lanes: int | None, + hybrid_pattern: str | None, + ssm_gate_type: str | None, + learning_rate: float, + weight_decay: float, + vocab_size: int, + train_stream: torch.Tensor, + eval_stream: torch.Tensor, + batch_size: int, + dtype: torch.dtype, + device: torch.device, +) -> list[dict[str, Any]]: + seed_offset = 0 if architecture == "taonet" else int(ssm_hidden_dim or 0) + int(ssm_mixer_dim or 0) + seed_offset += int(ssm_num_lanes or 0) * 31 + if hybrid_pattern: + seed_offset += sum(ord(char) for char in hybrid_pattern) + if ssm_gate_type: + seed_offset += sum(ord(char) for char in ssm_gate_type) + case_seed = args.seed + seed_offset + batch_size + torch.manual_seed(case_seed) + if device.type == "cuda": + torch.cuda.manual_seed_all(case_seed) + cpu_generator = torch.Generator().manual_seed(case_seed) + case_parts = make_case_parts( + args, + architecture=architecture, + ssm_hidden_dim=ssm_hidden_dim, + ssm_mixer_dim=ssm_mixer_dim, + ssm_num_lanes=ssm_num_lanes, + hybrid_pattern=hybrid_pattern, + ssm_gate_type=ssm_gate_type, + learning_rate=learning_rate, + weight_decay=weight_decay, + batch_size=batch_size, + ) + case_id = stable_case_id(case_parts) + config = build_config( + args, + architecture=architecture, + vocab_size=vocab_size, + ssm_hidden_dim=ssm_hidden_dim, + ssm_mixer_dim=ssm_mixer_dim, + ssm_num_lanes=ssm_num_lanes, + hybrid_pattern=hybrid_pattern, + ssm_gate_type=ssm_gate_type, + ) + with redirect_stdout(io.StringIO()): + model = get_model(config, device=device) + model.train() + + if device.type == "cuda" and dtype in {torch.float16, torch.bfloat16}: + def autocast_context(): + return torch.autocast(device_type="cuda", dtype=dtype, enabled=True) + else: + def autocast_context(): + return nullcontext() + + ( + train_final_loss, + train_seconds, + train_last_grad_norm, + train_max_grad_norm, + train_history, + ) = train_model( + model, + train_stream=train_stream, + args=args, + learning_rate=learning_rate, + weight_decay=weight_decay, + batch_size=batch_size, + device=device, + generator=cpu_generator, + autocast_context=autocast_context, + ) + eval_loss, eval_accuracy = evaluate_model( + model, + eval_stream=eval_stream, + args=args, + batch_size=batch_size, + device=device, + generator=cpu_generator, + autocast_context=autocast_context, + ) + checkpoint_path = save_case_checkpoint( + args=args, + model=model, + config=config, + case_id=case_id, + case_parts=case_parts, + train_final_loss=train_final_loss, + train_seconds=train_seconds, + train_history=train_history, + eval_loss=eval_loss, + eval_accuracy=eval_accuracy, + ) + + input_ids, labels, attention_mask = sample_batch( + eval_stream, + batch_size=batch_size, + seq_len=args.seq_len, + device=device, + generator=cpu_generator, + ) + tokens = batch_size * args.seq_len + total_params = sum(param.numel() for param in model.parameters()) + trainable_params = sum(param.numel() for param in model.parameters() if param.requires_grad) + rows: list[dict[str, Any]] = [] + uses_ssm = architecture in {"taonet_ssm", "taonet_hybrid"} + + def add_row(mode: str, mean_s: float, min_s: float, loss: float) -> None: + perplexity = math.exp(min(eval_loss, 20.0)) + rows.append( + { + "architecture": architecture, + "case_id": case_id, + "checkpoint_path": checkpoint_path, + "ssm_core": args.ssm_core if uses_ssm else None, + "ssm_hidden_dim": ssm_hidden_dim if uses_ssm else None, + "ssm_mixer_dim": ssm_mixer_dim if uses_ssm else None, + "ssm_num_lanes": ssm_num_lanes if uses_ssm else None, + "ssm_lane_combine": args.ssm_lane_combine if uses_ssm else None, + "ssm_lane_mode": args.ssm_lane_mode if uses_ssm else None, + "ssm_split_mix": args.ssm_split_mix if uses_ssm else None, + "ssm_finite_tail_correction": args.ssm_finite_tail_correction if uses_ssm else None, + "ssm_gate_type": ssm_gate_type if uses_ssm else None, + "ssm_local_shift": args.ssm_local_shift if uses_ssm else None, + "ssm_local_shift_per_channel": args.ssm_local_shift_per_channel if uses_ssm else None, + "ssm_branch_rms_norm": args.ssm_branch_rms_norm if uses_ssm else None, + "ssm_branch_clip_value": args.ssm_branch_clip_value if uses_ssm else None, + "block_residual_rms_norm": args.block_residual_rms_norm if uses_ssm else None, + "block_residual_rms_target": args.block_residual_rms_target if uses_ssm else None, + "block_residual_rms_cap": args.block_residual_rms_cap if uses_ssm else None, + "hybrid_pattern": hybrid_pattern if architecture == "taonet_hybrid" else None, + "hybrid_ssm_layers": args.hybrid_ssm_layers if architecture == "taonet_hybrid" else None, + "mode": mode, + "batch_size": batch_size, + "seq_len": args.seq_len, + "tokens": tokens, + "vocab_size": vocab_size, + "tokenizer_type": args.tokenizer_type, + "hidden_dim": args.hidden_dim, + "num_layers": args.num_layers, + "num_heads": args.num_heads, + "dtype": str(dtype).replace("torch.", ""), + "device": str(device), + "learning_rate": learning_rate, + "weight_decay": weight_decay, + "total_params": total_params, + "trainable_params": trainable_params, + "mean_ms": mean_s * 1000.0, + "min_ms": min_s * 1000.0, + "tokens_per_s_mean": tokens / max(mean_s, 1e-12), + "tokens_per_s_best": tokens / max(min_s, 1e-12), + "loss": loss, + "eval_loss": eval_loss, + "eval_perplexity": perplexity, + "eval_accuracy": eval_accuracy, + "train_final_loss": train_final_loss, + "train_seconds": train_seconds, + "train_history": json.dumps(train_history, separators=(",", ":")), + "train_last_grad_norm": train_last_grad_norm, + "train_max_grad_norm": train_max_grad_norm, + "max_grad_norm": args.max_grad_norm, + **memory_stats(device), + } + ) + + def forward_only() -> float: + with torch.no_grad(): + with autocast_context(): + outputs = model(input_ids=input_ids, attention_mask=attention_mask, labels=labels) + return float(outputs["loss"].detach().cpu()) + + mean_s, min_s, loss = time_repeats( + forward_only, + device=device, + warmup=args.warmup, + repeats=args.repeats, + ) + add_row("forward", mean_s, min_s, loss) + + if args.backward: + def forward_backward() -> float: + model.zero_grad(set_to_none=True) + with autocast_context(): + outputs = model(input_ids=input_ids, attention_mask=attention_mask, labels=labels) + loss = outputs["loss"] + loss.backward() + return float(loss.detach().cpu()) + + mean_s, min_s, loss = time_repeats( + forward_backward, + device=device, + warmup=args.warmup, + repeats=args.repeats, + ) + add_row("forward_backward", mean_s, min_s, loss) + + return rows + + +def print_table(rows: list[dict[str, Any]]) -> None: + columns = [ + "architecture", + "hybrid_pattern", + "ssm_hidden_dim", + "ssm_mixer_dim", + "ssm_num_lanes", + "ssm_lane_combine", + "ssm_lane_mode", + "ssm_split_mix", + "ssm_gate_type", + "ssm_branch_rms_norm", + "block_residual_rms_norm", + "block_residual_rms_cap", + "learning_rate", + "mode", + "batch_size", + "seq_len", + "mean_ms", + "tokens_per_s_mean", + "peak_allocated_mb", + "eval_loss", + "eval_perplexity", + "eval_accuracy", + "train_max_grad_norm", + ] + print("\t".join(columns)) + for row in rows: + values = [] + for column in columns: + value = row[column] + if isinstance(value, float): + values.append(f"{value:.3f}") + else: + values.append(str(value)) + print("\t".join(values)) + + +def write_outputs(rows: list[dict[str, Any]], output_dir: Path, metadata: dict[str, Any]) -> None: + output_dir.mkdir(parents=True, exist_ok=True) + json_path = output_dir / "taonet_real_token_benchmark.json" + csv_path = output_dir / "taonet_real_token_benchmark.csv" + json_path.write_text(json.dumps({"metadata": metadata, "results": rows}, indent=2), encoding="utf-8") + + fieldnames = list(rows[0].keys()) if rows else [] + with csv_path.open("w", newline="", encoding="utf-8") as handle: + writer = csv.DictWriter(handle, fieldnames=fieldnames) + writer.writeheader() + writer.writerows(rows) + + print(f"Wrote {json_path}") + print(f"Wrote {csv_path}") + + +def load_existing_rows(output_dir: Path) -> list[dict[str, Any]]: + csv_path = output_dir / "taonet_real_token_benchmark.csv" + if not csv_path.exists(): + return [] + with csv_path.open("r", newline="", encoding="utf-8") as handle: + return list(csv.DictReader(handle)) + + +def main() -> None: + parser = argparse.ArgumentParser(description="Benchmark TaoNet variants on a real text token stream.") + parser.add_argument("--data-path", required=True) + parser.add_argument("--text-field", default="text") + parser.add_argument("--tokenizer-type", choices=["byte", "sentencepiece"], default="byte") + parser.add_argument("--tokenizer-path", default="") + parser.add_argument("--max-records", type=int, default=None) + parser.add_argument("--max-tokens", type=int, default=1_000_000) + parser.add_argument("--eval-fraction", type=float, default=0.1) + parser.add_argument("--architectures", default="taonet,taonet_ssm") + parser.add_argument("--batch-sizes", default="8,16") + parser.add_argument("--seq-len", type=int, default=512) + parser.add_argument("--hidden-dim", type=int, default=256) + parser.add_argument("--num-layers", type=int, default=4) + parser.add_argument("--num-heads", type=int, default=4) + parser.add_argument("--d-latent-kv", type=int, default=None) + parser.add_argument("--d-rope", type=int, default=None) + parser.add_argument("--hidden-dim-ff", type=int, default=None) + parser.add_argument("--dropout", type=float, default=0.0) + parser.add_argument("--gqa-groups", type=int, default=1) + parser.add_argument("--rope-scale", type=float, default=40.0) + parser.add_argument("--yarn-alpha", type=float, default=1.0) + parser.add_argument("--init-std", type=float, default=0.02) + parser.add_argument("--ssm-core", choices=["gamma_s4", "dplr"], default="dplr") + parser.add_argument("--ssm-hidden-dims", default="16,64") + parser.add_argument("--ssm-mixer-dim", type=int, default=64) + parser.add_argument( + "--ssm-mixer-dims", + default="", + help="Comma-separated SSM mixer projection dimensions to sweep. Defaults to --ssm-mixer-dim.", + ) + parser.add_argument("--ssm-num-lanes", type=int, default=1) + parser.add_argument( + "--ssm-num-lanes-list", + default="", + help="Comma-separated SSM lane counts to sweep for SSM-bearing architectures.", + ) + parser.add_argument("--ssm-lane-combine", choices=["mean", "channel"], default="mean") + parser.add_argument("--ssm-lane-mode", choices=["full", "split"], default="full") + parser.add_argument( + "--ssm-lane-modes", + default="", + help="Comma-separated SSM lane modes to sweep for SSM-bearing architectures.", + ) + parser.add_argument("--ssm-split-mix", choices=["none", "hadamard"], default="none") + parser.add_argument( + "--ssm-split-mixes", + default="", + help="Comma-separated split-lane cross mixers to sweep for SSM-bearing architectures.", + ) + parser.add_argument("--ssm-rank", type=int, default=1) + parser.add_argument("--ssm-max-low-rank-scale", type=float, default=0.1) + parser.add_argument("--ssm-finite-tail-correction", action=argparse.BooleanOptionalAction, default=True) + parser.add_argument("--ssm-kernel-mode", choices=["auto", "conv", "conv_transfer", "recurrent"], default="conv") + parser.add_argument("--ssm-kernel-threshold", type=int, default=1) + parser.add_argument("--ssm-dt-min", type=float, default=1e-3) + parser.add_argument("--ssm-dt-max", type=float, default=1e-1) + parser.add_argument("--ssm-dt-init", type=float, default=1e-2) + parser.add_argument("--ssm-activation", choices=["gelu", "silu", "identity", "linear"], default="gelu") + parser.add_argument("--ssm-gate", action=argparse.BooleanOptionalAction, default=True) + parser.add_argument("--ssm-input-gate", action=argparse.BooleanOptionalAction, default=True) + parser.add_argument("--ssm-gate-type", choices=["dense", "channel"], default="dense") + parser.add_argument( + "--ssm-gate-types", + default="", + help="Comma-separated SSM gate implementations to sweep for SSM-bearing architectures.", + ) + parser.add_argument("--ssm-layer-scale-init", type=float, default=0.1) + parser.add_argument("--ssm-branch-rms-norm", action=argparse.BooleanOptionalAction, default=False) + parser.add_argument("--ssm-branch-clip-value", type=float, default=None) + parser.add_argument("--block-residual-rms-norm", action=argparse.BooleanOptionalAction, default=False) + parser.add_argument("--block-residual-rms-target", type=float, default=1.0) + parser.add_argument("--block-residual-rms-cap", type=float, default=None) + parser.add_argument("--ssm-local-shift", action=argparse.BooleanOptionalAction, default=True) + parser.add_argument("--ssm-local-shift-init", type=float, default=0.1) + parser.add_argument("--ssm-local-shift-per-channel", action=argparse.BooleanOptionalAction, default=False) + parser.add_argument( + "--hybrid-pattern", + choices=["attention_first", "ssm_first", "single_ssm_middle", "single_ssm_late"], + default="attention_first", + ) + parser.add_argument( + "--hybrid-patterns", + default="", + help="Comma-separated taonet_hybrid patterns to sweep. Ignored when --hybrid-ssm-layers is set.", + ) + parser.add_argument( + "--hybrid-ssm-layers", + default="", + help="Comma-separated 0-based SSM layer indices for taonet_hybrid. Overrides pattern selection.", + ) + parser.add_argument("--dtype", choices=sorted(DTYPES), default="bf16") + parser.add_argument("--device", default="auto") + parser.add_argument("--warmup", type=int, default=1) + parser.add_argument("--repeats", type=int, default=3) + parser.add_argument("--backward", action="store_true") + parser.add_argument("--train-steps", type=int, default=100) + parser.add_argument( + "--train-log-every", + type=int, + default=0, + help="Record train loss/grad history every N steps in CSV/JSON/checkpoints. 0 disables.", + ) + parser.add_argument("--learning-rate", type=float, default=8e-4) + parser.add_argument( + "--max-grad-norm", + type=float, + default=0.0, + help="Clip training gradients to this norm during the benchmark. Use <=0 to disable.", + ) + parser.add_argument( + "--learning-rates", + default="", + help="Comma-separated SSM learning rates to sweep. Attention uses --learning-rate once.", + ) + parser.add_argument("--weight-decay", type=float, default=0.01) + parser.add_argument( + "--weight-decays", + default="", + help="Comma-separated SSM weight decays to sweep. Attention uses --weight-decay once.", + ) + parser.add_argument("--eval-batches", type=int, default=8) + parser.add_argument("--seed", type=int, default=42) + parser.add_argument("--output-dir", default=os.environ.get("REPOBRIDGE_OUTPUT_DIR", "results/real-token-bench")) + parser.add_argument( + "--resume-completed", + action="store_true", + help="Skip benchmark cases whose case_id is already present in the output CSV.", + ) + parser.add_argument( + "--incremental-output", + action=argparse.BooleanOptionalAction, + default=True, + help="Rewrite CSV/JSON outputs after each completed case so detached jobs leave usable partial results.", + ) + parser.add_argument( + "--save-case-checkpoints", + action="store_true", + help="Save a model checkpoint after each trained benchmark case.", + ) + parser.add_argument( + "--checkpoint-dir", + default="", + help="Directory for per-case checkpoints. Defaults to /checkpoints.", + ) + args = parser.parse_args() + + random.seed(args.seed) + torch.manual_seed(args.seed) + if args.device == "auto": + device = torch.device("cuda" if torch.cuda.is_available() else "cpu") + else: + device = torch.device(args.device) + dtype = DTYPES[args.dtype] + if device.type == "cuda": + torch.backends.cuda.matmul.allow_tf32 = True + torch.backends.cudnn.allow_tf32 = True + + tokens, vocab_size = load_token_stream(args) + train_stream, eval_stream = split_stream(tokens, args.eval_fraction) + architectures = [item.strip() for item in args.architectures.split(",") if item.strip()] + ssm_hidden_dims = parse_int_list(args.ssm_hidden_dims) + ssm_mixer_dims = parse_int_list(args.ssm_mixer_dims) if args.ssm_mixer_dims else [args.ssm_mixer_dim] + ssm_num_lanes_options = parse_int_list(args.ssm_num_lanes_list) if args.ssm_num_lanes_list else [args.ssm_num_lanes] + ssm_lane_mode_options = parse_str_list(args.ssm_lane_modes) if args.ssm_lane_modes else [args.ssm_lane_mode] + ssm_split_mix_options = parse_str_list(args.ssm_split_mixes) if args.ssm_split_mixes else [args.ssm_split_mix] + ssm_learning_rates = parse_float_list(args.learning_rates) if args.learning_rates else [args.learning_rate] + ssm_weight_decays = parse_float_list(args.weight_decays) if args.weight_decays else [args.weight_decay] + hybrid_patterns = parse_str_list(args.hybrid_patterns) if args.hybrid_patterns else [args.hybrid_pattern] + ssm_gate_types = parse_str_list(args.ssm_gate_types) if args.ssm_gate_types else [args.ssm_gate_type] + + output_dir = Path(args.output_dir) + rows: list[dict[str, Any]] = load_existing_rows(output_dir) if args.resume_completed else [] + completed_case_ids = { + str(row.get("case_id")) + for row in rows + if row.get("mode") == "forward_backward" or not args.backward + } + for architecture in architectures: + hidden_options: list[int | None] = [None] + mixer_options: list[int | None] = [None] + learning_rate_options = [args.learning_rate] + weight_decay_options = [args.weight_decay] + hybrid_pattern_options: list[str | None] = [None] + gate_type_options: list[str | None] = [None] + lane_options: list[int | None] = [None] + lane_mode_options: list[str | None] = [None] + split_mix_options: list[str | None] = ["none"] + if architecture in {"taonet_ssm", "taonet_hybrid"}: + hidden_options = ssm_hidden_dims + mixer_options = ssm_mixer_dims + learning_rate_options = ssm_learning_rates + weight_decay_options = ssm_weight_decays + gate_type_options = ssm_gate_types + lane_options = ssm_num_lanes_options + lane_mode_options = ssm_lane_mode_options + split_mix_options = ssm_split_mix_options + if architecture == "taonet_hybrid": + hybrid_pattern_options = [args.hybrid_pattern] if args.hybrid_ssm_layers else hybrid_patterns + for ssm_hidden_dim in hidden_options: + for ssm_mixer_dim in mixer_options: + for ssm_num_lanes in lane_options: + for ssm_lane_mode in lane_mode_options: + for ssm_split_mix in split_mix_options: + if ( + architecture in {"taonet_ssm", "taonet_hybrid"} + and ssm_lane_mode == "split" + and (ssm_num_lanes is None or ssm_num_lanes <= 1) + ): + continue + if ( + architecture in {"taonet_ssm", "taonet_hybrid"} + and ssm_lane_mode == "split" + and ssm_mixer_dim is not None + and ssm_num_lanes is not None + and ssm_mixer_dim % ssm_num_lanes != 0 + ): + print( + "Skipping split-lane case because ssm_mixer_dim is not divisible by " + f"ssm_num_lanes: mixer={ssm_mixer_dim} lanes={ssm_num_lanes}" + ) + continue + if ( + architecture in {"taonet_ssm", "taonet_hybrid"} + and ssm_lane_mode != "split" + and ssm_split_mix != "none" + ): + continue + if ( + architecture in {"taonet_ssm", "taonet_hybrid"} + and ssm_split_mix == "hadamard" + and ssm_num_lanes != 2 + ): + continue + args.ssm_lane_mode = ssm_lane_mode or args.ssm_lane_mode + args.ssm_split_mix = ssm_split_mix or args.ssm_split_mix + for hybrid_pattern in hybrid_pattern_options: + for ssm_gate_type in gate_type_options: + for learning_rate in learning_rate_options: + for weight_decay in weight_decay_options: + for batch_size in parse_int_list(args.batch_sizes): + print( + "Benchmarking " + f"architecture={architecture} ssm_hidden_dim={ssm_hidden_dim} " + f"ssm_mixer_dim={ssm_mixer_dim} ssm_num_lanes={ssm_num_lanes} " + f"ssm_lane_mode={args.ssm_lane_mode} ssm_split_mix={args.ssm_split_mix} " + f"hybrid_pattern={hybrid_pattern} ssm_gate_type={ssm_gate_type} " + f"lr={learning_rate} wd={weight_decay} batch={batch_size} seq={args.seq_len}" + ) + case_parts = make_case_parts( + args, + architecture=architecture, + ssm_hidden_dim=ssm_hidden_dim, + ssm_mixer_dim=ssm_mixer_dim, + ssm_num_lanes=ssm_num_lanes, + hybrid_pattern=hybrid_pattern, + ssm_gate_type=ssm_gate_type, + learning_rate=learning_rate, + weight_decay=weight_decay, + batch_size=batch_size, + ) + case_id = stable_case_id(case_parts) + if args.resume_completed and case_id in completed_case_ids: + print(f"Skipping completed case_id={case_id}") + continue + case_rows = benchmark_case( + args=args, + architecture=architecture, + ssm_hidden_dim=ssm_hidden_dim, + ssm_mixer_dim=ssm_mixer_dim, + ssm_num_lanes=ssm_num_lanes, + hybrid_pattern=hybrid_pattern, + ssm_gate_type=ssm_gate_type, + learning_rate=learning_rate, + weight_decay=weight_decay, + vocab_size=vocab_size, + train_stream=train_stream, + eval_stream=eval_stream, + batch_size=batch_size, + dtype=dtype, + device=device, + ) + rows.extend(case_rows) + completed_case_ids.add(case_id) + if args.incremental_output: + write_outputs(rows, output_dir, {}) + + metadata = { + "python": platform.python_version(), + "platform": platform.platform(), + "torch": torch.__version__, + "cuda_available": torch.cuda.is_available(), + "cuda_device": torch.cuda.get_device_name(device) if device.type == "cuda" else None, + "args": vars(args), + "vocab_size": vocab_size, + "num_tokens": int(tokens.numel()), + "train_tokens": int(train_stream.numel()), + "eval_tokens": int(eval_stream.numel()), + } + print_table(rows) + write_outputs(rows, output_dir, metadata) + + +if __name__ == "__main__": + main() diff --git a/code/TaoTrain/scripts/benchmark_taonet_token_variants.py b/code/TaoTrain/scripts/benchmark_taonet_token_variants.py new file mode 100644 index 0000000000000000000000000000000000000000..7822bb3268c580fb4785284f3453fa3c7f6118fc --- /dev/null +++ b/code/TaoTrain/scripts/benchmark_taonet_token_variants.py @@ -0,0 +1,516 @@ +"""Token-level benchmark for TaoNet attention vs TaoNet-SSM. + +The goal is to compare the two LLM wrappers with the same outer dimensions: +original MLA attention TaoNet versus TaoNet with an SSM mixer. +""" + +from __future__ import annotations + +import argparse +from contextlib import nullcontext +from contextlib import redirect_stdout +import csv +import io +import json +import os +from pathlib import Path +import platform +import subprocess +import sys +import time +from typing import Any + +import torch + +REPO_ROOT = Path(__file__).resolve().parents[1] +SRC_ROOT = REPO_ROOT / "src" +if str(SRC_ROOT) not in sys.path: + sys.path.insert(0, str(SRC_ROOT)) + +from taoTrain.config import ModelConfig +from taoTrain.models import get_model + + +DTYPES = { + "float32": torch.float32, + "fp32": torch.float32, + "float16": torch.float16, + "fp16": torch.float16, + "bfloat16": torch.bfloat16, + "bf16": torch.bfloat16, +} + + +def parse_int_list(value: str) -> list[int]: + return [int(item.strip()) for item in value.split(",") if item.strip()] + + +def synchronize(device: torch.device) -> None: + if device.type == "cuda": + torch.cuda.synchronize(device) + + +def reset_memory(device: torch.device) -> None: + if device.type == "cuda": + torch.cuda.reset_peak_memory_stats(device) + + +def memory_stats(device: torch.device) -> dict[str, float | None]: + if device.type != "cuda": + return { + "peak_allocated_mb": None, + "peak_reserved_mb": None, + } + return { + "peak_allocated_mb": torch.cuda.max_memory_allocated(device) / (1024**2), + "peak_reserved_mb": torch.cuda.max_memory_reserved(device) / (1024**2), + } + + +def nvidia_smi_snapshot() -> str | None: + try: + completed = subprocess.run( + [ + "nvidia-smi", + "--query-gpu=name,memory.used,memory.total,utilization.gpu,utilization.memory,power.draw,temperature.gpu", + "--format=csv,noheader,nounits", + ], + check=False, + capture_output=True, + text=True, + timeout=5, + ) + except (OSError, subprocess.TimeoutExpired): + return None + if completed.returncode != 0: + return None + return completed.stdout.strip() + + +def make_token_batch( + *, + batch_size: int, + seq_len: int, + vocab_size: int, + device: torch.device, + task: str = "random", +) -> tuple[torch.Tensor, torch.Tensor, torch.Tensor]: + if task == "random": + input_ids = torch.randint(0, vocab_size, (batch_size, seq_len), device=device) + labels = torch.empty_like(input_ids) + labels[:, :-1] = input_ids[:, 1:] + labels[:, -1] = torch.randint(0, vocab_size, (batch_size,), device=device) + elif task == "increment": + starts = torch.randint(0, vocab_size, (batch_size, 1), device=device) + offsets = torch.arange(seq_len, device=device).view(1, seq_len) + input_ids = (starts + offsets) % vocab_size + labels = (input_ids + 1) % vocab_size + elif task == "previous": + input_ids = torch.randint(0, vocab_size, (batch_size, seq_len), device=device) + labels = torch.empty_like(input_ids) + labels[:, 0] = -100 + labels[:, 1:] = input_ids[:, :-1] + else: + raise ValueError(f"Unsupported token task '{task}'.") + attention_mask = torch.ones_like(input_ids) + return input_ids, labels, attention_mask + + +def token_accuracy(logits: torch.Tensor, labels: torch.Tensor) -> float: + valid = labels != -100 + if not torch.any(valid): + return float("nan") + predictions = torch.argmax(logits, dim=-1) + correct = (predictions == labels) & valid + return float(correct.sum().detach().cpu() / valid.sum().detach().cpu()) + + +def build_config(args: argparse.Namespace, architecture: str) -> ModelConfig: + d_latent_kv = args.d_latent_kv if args.d_latent_kv is not None else int(args.hidden_dim * 0.75) + d_rope = args.d_rope if args.d_rope is not None else args.hidden_dim // args.num_heads + hidden_dim_ff = args.hidden_dim_ff if args.hidden_dim_ff is not None else args.hidden_dim * 4 + return ModelConfig( + architecture_type=architecture, + vocab_size=args.vocab_size, + hidden_dim=args.hidden_dim, + num_layers=args.num_layers, + num_heads=args.num_heads, + max_seq_length=max(parse_int_list(args.seq_lens)), + d_latent_kv=d_latent_kv, + d_rope=d_rope, + hidden_dim_ff=hidden_dim_ff, + dropout=args.dropout, + gqa_groups=args.gqa_groups, + rope_scale=args.rope_scale, + yarn_alpha=args.yarn_alpha, + init_std=args.init_std, + ssm_core=args.ssm_core, + ssm_hidden_dim=args.ssm_hidden_dim or d_latent_kv, + ssm_mixer_dim=args.ssm_mixer_dim, + ssm_rank=args.ssm_rank, + ssm_max_low_rank_scale=args.ssm_max_low_rank_scale, + ssm_kernel_mode=args.ssm_kernel_mode, + ssm_kernel_threshold=args.ssm_kernel_threshold, + ssm_dt_min=args.ssm_dt_min, + ssm_dt_max=args.ssm_dt_max, + ssm_dt_init=args.ssm_dt_init, + ssm_use_padding_mask=args.ssm_use_padding_mask, + ssm_activation=args.ssm_activation, + ssm_gate=args.ssm_gate, + ssm_input_gate=args.ssm_input_gate, + ssm_layer_scale_init=args.ssm_layer_scale_init, + ssm_local_shift=args.ssm_local_shift, + ssm_local_shift_init=args.ssm_local_shift_init, + ssm_local_shift_per_channel=args.ssm_local_shift_per_channel, + ) + + +def count_params(model: torch.nn.Module) -> tuple[int, int]: + total = sum(param.numel() for param in model.parameters()) + trainable = sum(param.numel() for param in model.parameters() if param.requires_grad) + return total, trainable + + +def time_repeats(fn, *, device: torch.device, warmup: int, repeats: int) -> tuple[float, float, float]: + last_loss = float("nan") + for _ in range(warmup): + last_loss = fn() + synchronize(device) + + latencies = [] + for _ in range(repeats): + reset_memory(device) + synchronize(device) + start = time.perf_counter() + last_loss = fn() + synchronize(device) + latencies.append(time.perf_counter() - start) + return sum(latencies) / len(latencies), min(latencies), last_loss + + +def evaluate_model( + model: torch.nn.Module, + *, + args: argparse.Namespace, + batch_size: int, + seq_len: int, + device: torch.device, + autocast_context, +) -> tuple[float, float]: + model.eval() + losses = [] + accuracies = [] + with torch.no_grad(): + for _ in range(args.eval_batches): + input_ids, labels, attention_mask = make_token_batch( + batch_size=batch_size, + seq_len=seq_len, + vocab_size=args.vocab_size, + device=device, + task=args.token_task, + ) + with autocast_context(): + outputs = model(input_ids=input_ids, attention_mask=attention_mask, labels=labels) + losses.append(float(outputs["loss"].detach().cpu())) + accuracies.append(token_accuracy(outputs["logits"], labels)) + model.train() + return sum(losses) / len(losses), sum(accuracies) / len(accuracies) + + +def train_model( + model: torch.nn.Module, + *, + args: argparse.Namespace, + batch_size: int, + seq_len: int, + device: torch.device, + autocast_context, +) -> tuple[float | None, float | None]: + if args.train_steps <= 0: + return None, None + + model.train() + optimizer = torch.optim.AdamW( + model.parameters(), + lr=args.learning_rate, + weight_decay=args.weight_decay, + ) + last_loss = float("nan") + start = time.perf_counter() + for _ in range(args.train_steps): + input_ids, labels, attention_mask = make_token_batch( + batch_size=batch_size, + seq_len=seq_len, + vocab_size=args.vocab_size, + device=device, + task=args.token_task, + ) + optimizer.zero_grad(set_to_none=True) + with autocast_context(): + outputs = model(input_ids=input_ids, attention_mask=attention_mask, labels=labels) + loss = outputs["loss"] + loss.backward() + optimizer.step() + last_loss = float(loss.detach().cpu()) + synchronize(device) + return last_loss, time.perf_counter() - start + + +def benchmark_case( + *, + args: argparse.Namespace, + architecture: str, + batch_size: int, + seq_len: int, + dtype: torch.dtype, + device: torch.device, +) -> list[dict[str, Any]]: + config = build_config(args, architecture) + with redirect_stdout(io.StringIO()): + model = get_model(config, device=device) + model.train() + total_params, trainable_params = count_params(model) + tokens = batch_size * seq_len + input_ids, labels, attention_mask = make_token_batch( + batch_size=batch_size, + seq_len=seq_len, + vocab_size=args.vocab_size, + device=device, + task=args.token_task, + ) + autocast_enabled = device.type == "cuda" and dtype in {torch.float16, torch.bfloat16} + + def autocast_context(): + if not autocast_enabled: + return nullcontext() + return torch.autocast(device_type=device.type, dtype=dtype, enabled=True) + + train_final_loss, train_seconds = train_model( + model, + args=args, + batch_size=batch_size, + seq_len=seq_len, + device=device, + autocast_context=autocast_context, + ) + eval_loss, eval_accuracy = evaluate_model( + model, + args=args, + batch_size=batch_size, + seq_len=seq_len, + device=device, + autocast_context=autocast_context, + ) + + rows: list[dict[str, Any]] = [] + + def add_row(mode: str, mean_s: float, min_s: float, loss: float) -> None: + rows.append( + { + "architecture": architecture, + "ssm_core": args.ssm_core if architecture == "taonet_ssm" else None, + "token_task": args.token_task, + "train_steps": args.train_steps, + "mode": mode, + "batch_size": batch_size, + "seq_len": seq_len, + "tokens": tokens, + "vocab_size": args.vocab_size, + "hidden_dim": args.hidden_dim, + "num_layers": args.num_layers, + "num_heads": args.num_heads, + "d_latent_kv": config.d_latent_kv, + "ssm_hidden_dim": config.ssm_hidden_dim if architecture == "taonet_ssm" else None, + "ssm_mixer_dim": config.ssm_mixer_dim if architecture == "taonet_ssm" else None, + "ssm_rank": config.ssm_rank if architecture == "taonet_ssm" else None, + "ssm_local_shift": config.ssm_local_shift if architecture == "taonet_ssm" else None, + "ssm_local_shift_init": config.ssm_local_shift_init if architecture == "taonet_ssm" else None, + "ssm_local_shift_per_channel": config.ssm_local_shift_per_channel if architecture == "taonet_ssm" else None, + "dtype": str(dtype).replace("torch.", ""), + "device": str(device), + "total_params": total_params, + "trainable_params": trainable_params, + "mean_ms": mean_s * 1000.0, + "min_ms": min_s * 1000.0, + "tokens_per_s_mean": tokens / max(mean_s, 1e-12), + "tokens_per_s_best": tokens / max(min_s, 1e-12), + "loss": loss, + "eval_loss": eval_loss, + "eval_accuracy": eval_accuracy, + "train_final_loss": train_final_loss, + "train_seconds": train_seconds, + **memory_stats(device), + } + ) + + def forward_only() -> float: + with torch.no_grad(): + with autocast_context(): + outputs = model(input_ids=input_ids, attention_mask=attention_mask, labels=labels) + loss = outputs["loss"] + return float(loss.detach().cpu()) + + mean_s, min_s, loss = time_repeats( + forward_only, + device=device, + warmup=args.warmup, + repeats=args.repeats, + ) + add_row("forward", mean_s, min_s, loss) + + if args.backward: + def forward_backward() -> float: + model.zero_grad(set_to_none=True) + with autocast_context(): + outputs = model(input_ids=input_ids, attention_mask=attention_mask, labels=labels) + loss = outputs["loss"] + loss.backward() + return float(loss.detach().cpu()) + + mean_s, min_s, loss = time_repeats( + forward_backward, + device=device, + warmup=args.warmup, + repeats=args.repeats, + ) + add_row("forward_backward", mean_s, min_s, loss) + + return rows + + +def print_table(rows: list[dict[str, Any]]) -> None: + columns = [ + "architecture", + "ssm_core", + "token_task", + "mode", + "batch_size", + "seq_len", + "mean_ms", + "tokens_per_s_mean", + "peak_allocated_mb", + "loss", + "eval_loss", + "eval_accuracy", + ] + print("\t".join(columns)) + for row in rows: + values = [] + for column in columns: + value = row[column] + if isinstance(value, float): + values.append(f"{value:.3f}") + else: + values.append(str(value)) + print("\t".join(values)) + + +def write_outputs(rows: list[dict[str, Any]], output_dir: Path, metadata: dict[str, Any]) -> None: + output_dir.mkdir(parents=True, exist_ok=True) + json_path = output_dir / "taonet_token_benchmark.json" + csv_path = output_dir / "taonet_token_benchmark.csv" + json_path.write_text(json.dumps({"metadata": metadata, "results": rows}, indent=2), encoding="utf-8") + + fieldnames = list(rows[0].keys()) if rows else [] + with csv_path.open("w", newline="", encoding="utf-8") as handle: + writer = csv.DictWriter(handle, fieldnames=fieldnames) + writer.writeheader() + writer.writerows(rows) + + print(f"Wrote {json_path}") + print(f"Wrote {csv_path}") + + +def main() -> None: + parser = argparse.ArgumentParser(description="Benchmark TaoNet attention vs TaoNet-SSM on token batches.") + parser.add_argument("--architectures", default="taonet,taonet_ssm") + parser.add_argument("--batch-sizes", default="1,4") + parser.add_argument("--seq-lens", default="128,512") + parser.add_argument("--vocab-size", type=int, default=8192) + parser.add_argument("--hidden-dim", type=int, default=256) + parser.add_argument("--num-layers", type=int, default=4) + parser.add_argument("--num-heads", type=int, default=4) + parser.add_argument("--d-latent-kv", type=int, default=None) + parser.add_argument("--d-rope", type=int, default=None) + parser.add_argument("--hidden-dim-ff", type=int, default=None) + parser.add_argument("--dropout", type=float, default=0.0) + parser.add_argument("--gqa-groups", type=int, default=1) + parser.add_argument("--rope-scale", type=float, default=40.0) + parser.add_argument("--yarn-alpha", type=float, default=1.0) + parser.add_argument("--init-std", type=float, default=0.02) + parser.add_argument("--ssm-core", choices=["gamma_s4", "dplr"], default="dplr") + parser.add_argument("--ssm-hidden-dim", type=int, default=None) + parser.add_argument("--ssm-mixer-dim", type=int, default=None) + parser.add_argument("--ssm-rank", type=int, default=1) + parser.add_argument("--ssm-max-low-rank-scale", type=float, default=0.1) + parser.add_argument("--ssm-kernel-mode", choices=["auto", "conv", "conv_transfer", "recurrent"], default="conv") + parser.add_argument("--ssm-kernel-threshold", type=int, default=1) + parser.add_argument("--ssm-dt-min", type=float, default=1e-3) + parser.add_argument("--ssm-dt-max", type=float, default=1e-1) + parser.add_argument("--ssm-dt-init", type=float, default=1e-2) + parser.add_argument("--ssm-use-padding-mask", action="store_true") + parser.add_argument("--ssm-activation", choices=["gelu", "silu", "identity", "linear"], default="gelu") + parser.add_argument("--ssm-gate", action=argparse.BooleanOptionalAction, default=True) + parser.add_argument("--ssm-input-gate", action=argparse.BooleanOptionalAction, default=True) + parser.add_argument("--ssm-layer-scale-init", type=float, default=0.1) + parser.add_argument("--ssm-local-shift", action=argparse.BooleanOptionalAction, default=False) + parser.add_argument("--ssm-local-shift-init", type=float, default=0.1) + parser.add_argument("--ssm-local-shift-per-channel", action=argparse.BooleanOptionalAction, default=False) + parser.add_argument("--dtype", choices=sorted(DTYPES), default="bf16") + parser.add_argument("--device", default="auto") + parser.add_argument("--warmup", type=int, default=2) + parser.add_argument("--repeats", type=int, default=5) + parser.add_argument("--backward", action="store_true") + parser.add_argument("--token-task", choices=["random", "increment", "previous"], default="random") + parser.add_argument("--train-steps", type=int, default=0) + parser.add_argument("--learning-rate", type=float, default=3e-4) + parser.add_argument("--weight-decay", type=float, default=0.01) + parser.add_argument("--eval-batches", type=int, default=1) + parser.add_argument("--output-dir", default=os.environ.get("REPOBRIDGE_OUTPUT_DIR", "results/token-bench")) + args = parser.parse_args() + + if args.device == "auto": + device = torch.device("cuda" if torch.cuda.is_available() else "cpu") + else: + device = torch.device(args.device) + dtype = DTYPES[args.dtype] + if device.type != "cuda" and dtype == torch.float16: + raise ValueError("float16 benchmark requires CUDA.") + if device.type == "cuda": + torch.backends.cuda.matmul.allow_tf32 = True + torch.backends.cudnn.allow_tf32 = True + + architectures = [item.strip() for item in args.architectures.split(",") if item.strip()] + rows: list[dict[str, Any]] = [] + metadata = { + "python": platform.python_version(), + "platform": platform.platform(), + "torch": torch.__version__, + "cuda_available": torch.cuda.is_available(), + "cuda_device": torch.cuda.get_device_name(device) if device.type == "cuda" else None, + "nvidia_smi_before": nvidia_smi_snapshot(), + "args": vars(args), + } + + for architecture in architectures: + for batch_size in parse_int_list(args.batch_sizes): + for seq_len in parse_int_list(args.seq_lens): + print(f"Benchmarking architecture={architecture} batch={batch_size} seq={seq_len}") + rows.extend( + benchmark_case( + args=args, + architecture=architecture, + batch_size=batch_size, + seq_len=seq_len, + dtype=dtype, + device=device, + ) + ) + + metadata["nvidia_smi_after"] = nvidia_smi_snapshot() + print_table(rows) + write_outputs(rows, Path(args.output_dir), metadata) + + +if __name__ == "__main__": + main() diff --git a/code/TaoTrain/scripts/diagnostics/activation_probe.py b/code/TaoTrain/scripts/diagnostics/activation_probe.py new file mode 100644 index 0000000000000000000000000000000000000000..9115b94cab3d9077323bf05bb67dfe8174c4b575 --- /dev/null +++ b/code/TaoTrain/scripts/diagnostics/activation_probe.py @@ -0,0 +1,160 @@ +"""Probe residual activation scale for a saved TaoTrain checkpoint.""" + +from __future__ import annotations + +import argparse +import json +import re +import sys +from pathlib import Path +from typing import Any + +import torch + +REPO_ROOT = Path(__file__).resolve().parents[2] +SRC_ROOT = REPO_ROOT / "src" +if str(SRC_ROOT) not in sys.path: + sys.path.insert(0, str(SRC_ROOT)) + +from taoTrain.checkpointing.checkpoint import CheckpointManager +from taoTrain.config import ModelConfig +from taoTrain.models import get_model + + +def load_sentencepiece(path: Path): + import sentencepiece as spm + + processor = spm.SentencePieceProcessor() + processor.load(str(path)) + return processor + + +def load_tokens(args: argparse.Namespace) -> tuple[torch.Tensor, int]: + tokenizer = load_sentencepiece(Path(args.tokenizer_path)) + tokens: list[int] = [] + with Path(args.data_path).open("r", encoding="utf-8", errors="replace") as handle: + for line in handle: + if len(tokens) >= args.max_tokens: + break + line = line.strip() + if not line: + continue + try: + record = json.loads(line) + except json.JSONDecodeError: + continue + text = record.get(args.text_field) + if not isinstance(text, str) or not text: + continue + ids = list(tokenizer.encode(text, out_type=int)) + eos_id = tokenizer.eos_id() + if eos_id >= 0: + ids.append(eos_id) + tokens.extend(ids) + if len(tokens) < args.seq_len + 2: + raise ValueError(f"Need at least {args.seq_len + 2} tokens, got {len(tokens)}") + return torch.tensor(tokens[: args.max_tokens], dtype=torch.long), int(tokenizer.vocab_size()) + + +def sample_batch(tokens: torch.Tensor, *, batch_size: int, seq_len: int, device: torch.device) -> tuple[torch.Tensor, torch.Tensor]: + max_start = tokens.numel() - seq_len - 1 + starts = torch.linspace(0, max_start - 1, steps=batch_size).long() + rows = [tokens[int(start) : int(start) + seq_len + 1] for start in starts] + batch = torch.stack(rows, dim=0).to(device=device) + return batch[:, :-1].contiguous(), batch[:, 1:].contiguous() + + +def tensor_stats(value: torch.Tensor) -> dict[str, float | int]: + data = value.detach().float() + finite = torch.isfinite(data) + finite_count = int(finite.sum().cpu()) + numel = data.numel() + if finite_count: + finite_data = data[finite] + rms = float(torch.sqrt(torch.mean(finite_data * finite_data)).cpu()) + max_abs = float(finite_data.abs().max().cpu()) + else: + rms = float("inf") + max_abs = float("inf") + return { + "numel": numel, + "finite": finite_count, + "rms": rms, + "max_abs": max_abs, + } + + +def main() -> None: + parser = argparse.ArgumentParser() + parser.add_argument("--checkpoint", required=True) + parser.add_argument("--tokenizer-path", required=True) + parser.add_argument("--data-path", required=True) + parser.add_argument("--text-field", default="text") + parser.add_argument("--output", required=True) + parser.add_argument("--batch-size", type=int, default=2) + parser.add_argument("--seq-len", type=int, default=512) + parser.add_argument("--max-tokens", type=int, default=200_000) + parser.add_argument("--device", default="cuda") + parser.add_argument("--dtype", choices=["float32", "bfloat16", "float16"], default="bfloat16") + args = parser.parse_args() + + device = torch.device(args.device if args.device == "cpu" or torch.cuda.is_available() else "cpu") + dtype = { + "float32": torch.float32, + "bfloat16": torch.bfloat16, + "float16": torch.float16, + }[args.dtype] + + tokens, _ = load_tokens(args) + input_ids, labels = sample_batch(tokens, batch_size=args.batch_size, seq_len=args.seq_len, device=device) + attention_mask = torch.ones_like(input_ids) + + checkpoint_path = Path(args.checkpoint) + checkpoint = CheckpointManager(checkpoint_path.parent).load(checkpoint_path, device=device) + config_dict = checkpoint.get("config", {}) + model_config = ModelConfig(**config_dict.get("model", {})) + model = get_model(model_config, device=device) + model.load_state_dict(checkpoint["model_state"], strict=False) + model.eval() + + layer_stats: dict[str, dict[str, float | int]] = {} + handles = [] + layer_pattern = re.compile(r"^(?:model\.)?(?:layers|blocks)\.\d+$") + + def make_hook(name: str): + def hook(_module, _inputs, output): + value = output[0] if isinstance(output, tuple) else output + if torch.is_tensor(value): + layer_stats[name] = tensor_stats(value) + + return hook + + for name, module in model.named_modules(): + if layer_pattern.match(name): + handles.append(module.register_forward_hook(make_hook(name))) + + device_type = "cuda" if device.type == "cuda" else "cpu" + autocast_enabled = device.type == "cuda" and dtype in {torch.float16, torch.bfloat16} + with torch.no_grad(), torch.autocast(device_type=device_type, dtype=dtype, enabled=autocast_enabled): + outputs = model(input_ids=input_ids, attention_mask=attention_mask, labels=labels) + + for handle in handles: + handle.remove() + + result: dict[str, Any] = { + "checkpoint": str(checkpoint_path), + "loss": float(outputs["loss"].detach().cpu()), + "batch_size": args.batch_size, + "seq_len": args.seq_len, + "device": str(device), + "dtype": str(dtype), + "layers": layer_stats, + } + output_path = Path(args.output) + output_path.parent.mkdir(parents=True, exist_ok=True) + output_path.write_text(json.dumps(result, indent=2), encoding="utf-8") + print(json.dumps(result, indent=2)) + + +if __name__ == "__main__": + main() diff --git a/code/TaoTrain/scripts/diagnostics/generate_checkpoint_samples.py b/code/TaoTrain/scripts/diagnostics/generate_checkpoint_samples.py new file mode 100644 index 0000000000000000000000000000000000000000..462d0994733a96f083865b35a9305c8f48d7867c --- /dev/null +++ b/code/TaoTrain/scripts/diagnostics/generate_checkpoint_samples.py @@ -0,0 +1,134 @@ +"""Generate a few text samples from a saved checkpoint.""" + +from __future__ import annotations + +import argparse +import json +import sys +from pathlib import Path + +import torch + +REPO_ROOT = Path(__file__).resolve().parents[2] +SRC_ROOT = REPO_ROOT / "src" +if str(SRC_ROOT) not in sys.path: + sys.path.insert(0, str(SRC_ROOT)) + +from taoTrain.checkpointing.checkpoint import CheckpointManager +from taoTrain.config import ModelConfig +from taoTrain.inference.inferencer import Inferencer +from taoTrain.models import get_model + + +def clear_kernel_caches(model) -> None: + for module in model.modules(): + clear = getattr(module, "clear_kernel_cache", None) + if callable(clear): + clear() + + +def generate_once( + model, + tokenizer, + prompt: str, + *, + device: torch.device, + max_new_tokens: int, + temperature: float, + top_p: float, + dtype: torch.dtype, +) -> str: + input_ids = tokenizer.encode(prompt, return_tensors="pt").to(device) + generated = [] + eos_token_id = getattr(tokenizer, "eos_token_id", None) + model.eval() + device_type = "cuda" if device.type == "cuda" else "cpu" + autocast_enabled = device.type == "cuda" and dtype in {torch.float16, torch.bfloat16} + with torch.inference_mode(), torch.autocast(device_type=device_type, dtype=dtype, enabled=autocast_enabled): + for _ in range(max_new_tokens): + clear_kernel_caches(model) + outputs = model(input_ids=input_ids, attention_mask=torch.ones_like(input_ids), labels=None) + logits = outputs["logits"][:, -1, :] / max(temperature, 1e-6) + if top_p < 1.0: + sorted_logits, sorted_indices = torch.sort(logits, descending=True) + sorted_probs = torch.softmax(sorted_logits, dim=-1) + cumulative = torch.cumsum(sorted_probs, dim=-1) + remove = cumulative > top_p + remove[..., 1:] = remove[..., :-1].clone() + remove[..., 0] = False + indices_to_remove = sorted_indices[remove] + logits[0, indices_to_remove] = float("-inf") + probs = torch.softmax(logits, dim=-1) + next_token = torch.multinomial(probs, num_samples=1) + token_id = int(next_token.item()) + if eos_token_id is not None and token_id == eos_token_id: + break + generated.append(token_id) + input_ids = torch.cat([input_ids, next_token], dim=-1) + clear_kernel_caches(model) + return tokenizer.decode(generated, skip_special_tokens=True) + + +def main() -> None: + parser = argparse.ArgumentParser() + parser.add_argument("--checkpoint", required=True) + parser.add_argument("--tokenizer-path", required=True) + parser.add_argument("--output", required=True) + parser.add_argument("--prompt", action="append", default=[]) + parser.add_argument("--max-new-tokens", type=int, default=80) + parser.add_argument("--temperature", type=float, default=0.8) + parser.add_argument("--top-p", type=float, default=0.9) + parser.add_argument("--device", default="cuda") + parser.add_argument("--dtype", choices=["float32", "bfloat16", "float16"], default="bfloat16") + args = parser.parse_args() + + prompts = args.prompt or [ + "The purpose of artificial intelligence is", + "In a small village,", + "Hello, who are you?", + ] + device = torch.device(args.device if args.device == "cpu" or torch.cuda.is_available() else "cpu") + dtype = { + "float32": torch.float32, + "bfloat16": torch.bfloat16, + "float16": torch.float16, + }[args.dtype] + tokenizer = Inferencer._load_tokenizer(args.tokenizer_path) + checkpoint_path = Path(args.checkpoint) + checkpoint = CheckpointManager(checkpoint_path.parent).load(checkpoint_path, device=device) + model_config = ModelConfig(**checkpoint.get("config", {}).get("model", {})) + model = get_model(model_config, device=device) + model.load_state_dict(checkpoint["model_state"], strict=False) + + samples = [] + for prompt in prompts: + text = generate_once( + model, + tokenizer, + prompt, + device=device, + max_new_tokens=args.max_new_tokens, + temperature=args.temperature, + top_p=args.top_p, + dtype=dtype, + ) + samples.append({"prompt": prompt, "completion": text}) + + result = { + "checkpoint": args.checkpoint, + "tokenizer_path": args.tokenizer_path, + "device": str(device), + "dtype": str(dtype), + "max_new_tokens": args.max_new_tokens, + "temperature": args.temperature, + "top_p": args.top_p, + "samples": samples, + } + output = Path(args.output) + output.parent.mkdir(parents=True, exist_ok=True) + output.write_text(json.dumps(result, indent=2, ensure_ascii=False), encoding="utf-8") + print(json.dumps(result, indent=2, ensure_ascii=False)) + + +if __name__ == "__main__": + main() diff --git a/code/TaoTrain/scripts/diagnostics/sft_sanity_check.py b/code/TaoTrain/scripts/diagnostics/sft_sanity_check.py new file mode 100644 index 0000000000000000000000000000000000000000..7b2fd70de30a96b006b4cb97efeee3f6e697737a --- /dev/null +++ b/code/TaoTrain/scripts/diagnostics/sft_sanity_check.py @@ -0,0 +1,300 @@ +"""Small SFT diagnostics for checkpoint quality and trainability. + +This script intentionally bypasses the full trainer so it can answer one narrow +question quickly: can the checkpoint reduce response-only SFT loss on a tiny, +fixed batch? +""" + +from __future__ import annotations + +import argparse +import json +import math +from pathlib import Path +from typing import Any + +import torch + +from taoTrain.checkpointing.checkpoint import CheckpointManager +from taoTrain.config import TrainingModeEnum, load_config +from taoTrain.core import create_model +from taoTrain.data.sft_utils import build_sft_sequence_tokens, parse_sft_record +try: + from taoTrain.data.sft_utils import build_response_only_next_token_labels +except ImportError: + def build_response_only_next_token_labels(input_ids: list[int], mask: list[int]) -> list[int]: + labels = [token_id if mask_value else -100 for token_id, mask_value in zip(input_ids, mask)] + return labels[1:] + [-100] +from taoTrain.data.tokenizer import SentencePieceTokenizerWrapper +from taoTrain.utils import set_seed + + +def load_tokenizer(tokenizer_path: str): + path = Path(tokenizer_path) + if path.suffix == ".model": + import sentencepiece as spm + + sp = spm.SentencePieceProcessor() + sp.Load(str(path)) + return SentencePieceTokenizerWrapper(sp) + + from transformers import AutoTokenizer + + tokenizer = AutoTokenizer.from_pretrained(tokenizer_path) + if getattr(tokenizer, "pad_token", None) is None and getattr(tokenizer, "eos_token", None): + tokenizer.pad_token = tokenizer.eos_token + return tokenizer + + +def read_jsonl_records(path: str, limit: int) -> list[dict[str, Any]]: + records = [] + with open(path, "r", encoding="utf-8") as handle: + for line in handle: + line = line.strip() + if not line: + continue + records.append(json.loads(line)) + if len(records) >= limit: + break + return records + + +def build_batch(config, tokenizer, records: list[dict[str, Any]], device: torch.device) -> dict[str, torch.Tensor]: + input_rows = [] + attention_rows = [] + label_rows = [] + train_tokens = [] + + for record in records: + turns, _ = parse_sft_record(record, config) + if not turns: + continue + input_ids, attention_mask, mask = build_sft_sequence_tokens( + turns=turns, + tokenizer=tokenizer, + user_token=getattr(config, "user_token", ""), + assistant_token=getattr(config, "assistant_token", ""), + max_seq_length=config.model.max_seq_length, + ) + labels = build_response_only_next_token_labels(input_ids, mask) + input_rows.append(input_ids) + attention_rows.append(attention_mask) + label_rows.append(labels) + train_tokens.append(sum(1 for value in labels if value != -100)) + + if not input_rows: + raise ValueError("No valid SFT records found for the diagnostic batch") + + return { + "input_ids": torch.tensor(input_rows, dtype=torch.long, device=device), + "attention_mask": torch.tensor(attention_rows, dtype=torch.long, device=device), + "labels": torch.tensor(label_rows, dtype=torch.long, device=device), + "train_tokens": torch.tensor(train_tokens, dtype=torch.long), + } + + +@torch.no_grad() +def score_batch(model, batch: dict[str, torch.Tensor], dtype: torch.dtype) -> float: + model.eval() + device_type = "cuda" if batch["input_ids"].is_cuda else "cpu" + enabled = device_type == "cuda" and dtype in (torch.float16, torch.bfloat16) + with torch.autocast(device_type=device_type, dtype=dtype, enabled=enabled): + outputs = model( + input_ids=batch["input_ids"], + attention_mask=batch["attention_mask"], + labels=batch["labels"], + ) + return float(outputs["loss"].detach().cpu()) + + +def grad_l2_norm(parameters) -> float: + total = 0.0 + for parameter in parameters: + if parameter.grad is None: + continue + grad = parameter.grad.detach() + total += float(torch.sum(grad.float() * grad.float()).cpu()) + return math.sqrt(total) + + +def grad_summary(named_parameters, max_items: int = 12) -> dict[str, Any]: + groups: dict[str, dict[str, Any]] = {} + worst = [] + nonfinite = [] + + for name, parameter in named_parameters: + if parameter.grad is None: + continue + grad = parameter.grad.detach().float() + finite = torch.isfinite(grad) + finite_count = int(finite.sum().cpu()) + numel = grad.numel() + finite_abs_max = float(grad[finite].abs().max().cpu()) if finite_count else float("inf") + has_nonfinite = finite_count != numel + if has_nonfinite: + nonfinite.append(name) + + if ".layers." in name: + parts = name.split(".") + try: + idx = parts.index("layers") + group = "layer_" + parts[idx + 1] + except (ValueError, IndexError): + group = "layers" + else: + group = name.split(".", 1)[0] + + entry = groups.setdefault(group, { + "numel": 0, + "finite": 0, + "nonfinite_tensors": 0, + "max_abs_grad": 0.0, + }) + entry["numel"] += numel + entry["finite"] += finite_count + entry["nonfinite_tensors"] += int(has_nonfinite) + entry["max_abs_grad"] = max(entry["max_abs_grad"], finite_abs_max) + worst.append((finite_abs_max, name)) + + worst.sort(reverse=True, key=lambda item: item[0]) + return { + "groups": groups, + "worst_tensors": [{"name": name, "max_abs_grad": value} for value, name in worst[:max_items]], + "nonfinite_tensors": nonfinite[:max_items], + "nonfinite_tensor_count": len(nonfinite), + } + + +def freeze_ssm_core_parameters(model) -> int: + frozen = 0 + markers = ( + ".ssm_lanes.", + ".ssm.", + ) + for name, parameter in model.named_parameters(): + if any(marker in name for marker in markers): + parameter.requires_grad_(False) + frozen += parameter.numel() + return frozen + + +def main() -> None: + parser = argparse.ArgumentParser() + parser.add_argument("--config", required=True) + parser.add_argument("--checkpoint", required=True) + parser.add_argument("--output", required=True) + parser.add_argument("--samples", type=int, default=2) + parser.add_argument("--steps", type=int, default=80) + parser.add_argument("--lr", type=float, default=3e-4) + parser.add_argument("--log-every", type=int, default=10) + parser.add_argument("--device", default="cuda") + parser.add_argument("--dtype", choices=["config", "float32", "float16", "bfloat16"], default="config") + parser.add_argument("--no-clip", action="store_true") + parser.add_argument("--freeze-ssm-core", action="store_true") + parser.add_argument("--ssm-branch-rms-norm", action="store_true") + parser.add_argument("--ssm-branch-clip-value", type=float, default=None) + parser.add_argument("--block-residual-rms-norm", action="store_true") + parser.add_argument("--block-residual-rms-target", type=float, default=None) + parser.add_argument("--seed", type=int, default=123) + args = parser.parse_args() + + set_seed(args.seed) + config = load_config(args.config, TrainingModeEnum.SFT) + if args.ssm_branch_rms_norm: + config.model.ssm_branch_rms_norm = True + if args.ssm_branch_clip_value is not None: + config.model.ssm_branch_clip_value = args.ssm_branch_clip_value + if args.block_residual_rms_norm: + config.model.block_residual_rms_norm = True + if args.block_residual_rms_target is not None: + config.model.block_residual_rms_target = args.block_residual_rms_target + device = torch.device(args.device if args.device == "cpu" or torch.cuda.is_available() else "cpu") + if args.dtype == "float32": + dtype = torch.float32 + elif args.dtype == "float16": + dtype = torch.float16 + elif args.dtype == "bfloat16": + dtype = torch.bfloat16 + else: + dtype = torch.bfloat16 if str(config.dtype) == "DataTypeEnum.BFLOAT16" or str(config.dtype) == "bfloat16" else torch.float32 + + tokenizer = load_tokenizer(config.dataset.tokenizer_path) + records = read_jsonl_records(config.dataset.jsonl_path, args.samples) + batch = build_batch(config, tokenizer, records, device) + + model = create_model(config, device) + checkpoint = CheckpointManager(config.checkpoint_dir).load(args.checkpoint, device=device) + model.load_state_dict(checkpoint["model_state"], strict=False) + frozen_params = freeze_ssm_core_parameters(model) if args.freeze_ssm_core else 0 + + initial_loss = score_batch(model, batch, dtype) + + trainable_params = [parameter for parameter in model.parameters() if parameter.requires_grad] + optimizer = torch.optim.AdamW(trainable_params, lr=args.lr, weight_decay=0.0) + history = [] + device_type = "cuda" if device.type == "cuda" else "cpu" + autocast_enabled = device_type == "cuda" and dtype in (torch.float16, torch.bfloat16) + + model.train() + for step in range(1, args.steps + 1): + optimizer.zero_grad(set_to_none=True) + with torch.autocast(device_type=device_type, dtype=dtype, enabled=autocast_enabled): + outputs = model( + input_ids=batch["input_ids"], + attention_mask=batch["attention_mask"], + labels=batch["labels"], + ) + loss = outputs["loss"] + loss.backward() + grad_norm = grad_l2_norm(trainable_params) + stats = None + if step == 1 or step % args.log_every == 0 or step == args.steps: + stats = grad_summary(model.named_parameters()) + if not args.no_clip: + torch.nn.utils.clip_grad_norm_(trainable_params, 1.0) + optimizer.step() + + if step == 1 or step % args.log_every == 0 or step == args.steps: + item = { + "step": step, + "loss": float(loss.detach().cpu()), + "grad_l2_norm": grad_norm, + } + if stats is not None: + item["grad_summary"] = stats + history.append(item) + + final_loss = score_batch(model, batch, dtype) + result = { + "checkpoint": str(Path(args.checkpoint)), + "config": str(Path(args.config)), + "dataset": config.dataset.jsonl_path, + "samples": len(records), + "sequence_length": config.model.max_seq_length, + "train_tokens_per_sample": batch["train_tokens"].tolist(), + "lr": args.lr, + "steps": args.steps, + "clip_grad_norm": not args.no_clip, + "freeze_ssm_core": args.freeze_ssm_core, + "ssm_branch_rms_norm": config.model.ssm_branch_rms_norm, + "ssm_branch_clip_value": config.model.ssm_branch_clip_value, + "block_residual_rms_norm": config.model.block_residual_rms_norm, + "block_residual_rms_target": config.model.block_residual_rms_target, + "frozen_params": frozen_params, + "trainable_params": sum(parameter.numel() for parameter in trainable_params), + "initial_loss": initial_loss, + "final_loss": final_loss, + "loss_delta": final_loss - initial_loss, + "history": history, + "device": str(device), + "dtype": str(dtype), + } + + output = Path(args.output) + output.parent.mkdir(parents=True, exist_ok=True) + output.write_text(json.dumps(result, indent=2), encoding="utf-8") + print(json.dumps(result, indent=2)) + + +if __name__ == "__main__": + main() diff --git a/code/TaoTrain/scripts/profile_taonet_components.py b/code/TaoTrain/scripts/profile_taonet_components.py new file mode 100644 index 0000000000000000000000000000000000000000..d6eb12417801d9c837361fcd95eb0ea349cc1d49 --- /dev/null +++ b/code/TaoTrain/scripts/profile_taonet_components.py @@ -0,0 +1,393 @@ +"""Profile TaoNet and TaoNet-SSM component costs on synthetic token batches. + +The real-token benchmark tells us end-to-end quality and throughput. This +script is the companion microscope: it times forward components such as the +SSM core, gates, projections, FFN, embeddings, and output head so hardware work +targets the largest measured costs. +""" + +from __future__ import annotations + +import argparse +from collections import defaultdict +from contextlib import nullcontext +from contextlib import redirect_stdout +import io +import json +import os +from pathlib import Path +import platform +import sys +import time +from typing import Any + +import torch + +REPO_ROOT = Path(__file__).resolve().parents[1] +SRC_ROOT = REPO_ROOT / "src" +if str(SRC_ROOT) not in sys.path: + sys.path.insert(0, str(SRC_ROOT)) + +from taoTrain.config import ModelConfig +from taoTrain.models import get_model + + +DTYPES = { + "float32": torch.float32, + "fp32": torch.float32, + "float16": torch.float16, + "fp16": torch.float16, + "bfloat16": torch.bfloat16, + "bf16": torch.bfloat16, +} + + +def synchronize(device: torch.device) -> None: + if device.type == "cuda": + torch.cuda.synchronize(device) + + +def reset_memory(device: torch.device) -> None: + if device.type == "cuda": + torch.cuda.reset_peak_memory_stats(device) + + +def memory_stats(device: torch.device) -> dict[str, float | None]: + if device.type != "cuda": + return {"peak_allocated_mb": None, "peak_reserved_mb": None} + return { + "peak_allocated_mb": torch.cuda.max_memory_allocated(device) / (1024**2), + "peak_reserved_mb": torch.cuda.max_memory_reserved(device) / (1024**2), + } + + +class ComponentTimer: + def __init__(self, device: torch.device) -> None: + self.device = device + self.records: dict[str, list[float]] = defaultdict(list) + self._starts: dict[int, Any] = {} + self._handles = [] + + def _record_ms(self, name: str, start: Any) -> None: + if self.device.type == "cuda": + end = torch.cuda.Event(enable_timing=True) + end.record() + end.synchronize() + self.records[name].append(float(start.elapsed_time(end))) + else: + self.records[name].append((time.perf_counter() - start) * 1000.0) + + def add(self, module: torch.nn.Module, name: str) -> None: + def pre_hook(mod, inputs): + del inputs + if self.device.type == "cuda": + start = torch.cuda.Event(enable_timing=True) + start.record() + else: + start = time.perf_counter() + self._starts[id(mod)] = start + + def post_hook(mod, inputs, output): + del inputs, output + start = self._starts.pop(id(mod), None) + if start is not None: + self._record_ms(name, start) + + self._handles.append(module.register_forward_pre_hook(pre_hook)) + self._handles.append(module.register_forward_hook(post_hook)) + + def close(self) -> None: + for handle in self._handles: + handle.remove() + self._handles.clear() + + def summary(self) -> list[dict[str, float | str | int]]: + rows = [] + for name, values in sorted(self.records.items()): + if not values: + continue + rows.append( + { + "component": name, + "calls": len(values), + "mean_ms": sum(values) / len(values), + "total_ms": sum(values), + "min_ms": min(values), + "max_ms": max(values), + } + ) + rows.sort(key=lambda row: float(row["total_ms"]), reverse=True) + return rows + + +def build_config(args: argparse.Namespace, architecture: str) -> ModelConfig: + d_latent_kv = args.d_latent_kv if args.d_latent_kv is not None else int(args.hidden_dim * 0.75) + d_rope = args.d_rope if args.d_rope is not None else args.hidden_dim // args.num_heads + hidden_dim_ff = args.hidden_dim_ff if args.hidden_dim_ff is not None else args.hidden_dim * 4 + return ModelConfig( + architecture_type=architecture, + vocab_size=args.vocab_size, + hidden_dim=args.hidden_dim, + num_layers=args.num_layers, + num_heads=args.num_heads, + max_seq_length=args.seq_len, + d_latent_kv=d_latent_kv, + d_rope=d_rope, + hidden_dim_ff=hidden_dim_ff, + dropout=args.dropout, + gqa_groups=args.gqa_groups, + rope_scale=args.rope_scale, + yarn_alpha=args.yarn_alpha, + init_std=args.init_std, + ssm_core=args.ssm_core, + ssm_hidden_dim=args.ssm_hidden_dim, + ssm_mixer_dim=args.ssm_mixer_dim, + ssm_rank=args.ssm_rank, + ssm_max_low_rank_scale=args.ssm_max_low_rank_scale, + ssm_kernel_mode=args.ssm_kernel_mode, + ssm_kernel_threshold=args.ssm_kernel_threshold, + ssm_dt_min=args.ssm_dt_min, + ssm_dt_max=args.ssm_dt_max, + ssm_dt_init=args.ssm_dt_init, + ssm_use_padding_mask=False, + ssm_activation=args.ssm_activation, + ssm_gate=args.ssm_gate, + ssm_input_gate=args.ssm_input_gate, + ssm_layer_scale_init=args.ssm_layer_scale_init, + ssm_local_shift=args.ssm_local_shift, + ssm_local_shift_init=args.ssm_local_shift_init, + ssm_local_shift_per_channel=args.ssm_local_shift_per_channel, + ) + + +def add_component_hooks(model: torch.nn.Module, architecture: str, timer: ComponentTimer) -> None: + timer.add(model.token_embedding, "embedding") + timer.add(model.final_norm, "final_norm") + timer.add(model.output_head, "output_head") + for layer_index, block in enumerate(model.blocks): + prefix = f"block{layer_index}" + if architecture == "taonet_ssm": + mixer = block.mixer + timer.add(mixer.norm, f"{prefix}.mixer.norm") + if mixer.input_gate is not None: + timer.add(mixer.input_gate, f"{prefix}.mixer.input_gate") + timer.add(mixer.input_proj, f"{prefix}.mixer.input_proj") + timer.add(mixer.ssm, f"{prefix}.mixer.ssm_core") + timer.add(mixer.activation, f"{prefix}.mixer.activation") + timer.add(mixer.out_proj, f"{prefix}.mixer.out_proj") + if mixer.output_gate is not None: + timer.add(mixer.output_gate, f"{prefix}.mixer.output_gate") + timer.add(mixer.proj_dropout, f"{prefix}.mixer.dropout") + else: + mla = block.mla + timer.add(mla.norm, f"{prefix}.attention.norm") + timer.add(mla.q_proj, f"{prefix}.attention.q_proj") + timer.add(mla.k_proj, f"{prefix}.attention.k_proj") + timer.add(mla.v_proj, f"{prefix}.attention.v_proj") + timer.add(mla.out_proj, f"{prefix}.attention.out_proj") + timer.add(mla.attn_dropout, f"{prefix}.attention.attn_dropout") + timer.add(mla.proj_dropout, f"{prefix}.attention.proj_dropout") + timer.add(block.ff_norm, f"{prefix}.ff.norm") + timer.add(block.ff_gate, f"{prefix}.ff.gate") + timer.add(block.ff_value, f"{prefix}.ff.value") + timer.add(block.ff_out, f"{prefix}.ff.out") + + +def time_repeats(fn, *, device: torch.device, warmup: int, repeats: int) -> dict[str, float]: + for _ in range(warmup): + fn() + synchronize(device) + + latencies = [] + for _ in range(repeats): + reset_memory(device) + synchronize(device) + start = time.perf_counter() + fn() + synchronize(device) + latencies.append(time.perf_counter() - start) + mean_s = sum(latencies) / len(latencies) + return { + "mean_ms": mean_s * 1000.0, + "min_ms": min(latencies) * 1000.0, + "max_ms": max(latencies) * 1000.0, + } + + +def profile_architecture( + args: argparse.Namespace, + *, + architecture: str, + device: torch.device, + dtype: torch.dtype, +) -> dict[str, Any]: + torch.manual_seed(args.seed) + if device.type == "cuda": + torch.cuda.manual_seed_all(args.seed) + + config = build_config(args, architecture) + with redirect_stdout(io.StringIO()): + model = get_model(config, device=device) + model.train() + + input_ids = torch.randint( + low=0, + high=args.vocab_size, + size=(args.batch_size, args.seq_len), + device=device, + ) + labels = torch.randint( + low=0, + high=args.vocab_size, + size=(args.batch_size, args.seq_len), + device=device, + ) + attention_mask = torch.ones_like(input_ids) + + autocast_enabled = device.type == "cuda" and dtype in {torch.float16, torch.bfloat16} + + def autocast_context(): + if not autocast_enabled: + return nullcontext() + return torch.autocast(device_type=device.type, dtype=dtype, enabled=True) + + def forward_only() -> torch.Tensor: + with torch.no_grad(): + with autocast_context(): + outputs = model(input_ids=input_ids, attention_mask=attention_mask, labels=labels) + return outputs["loss"] + + def forward_backward() -> torch.Tensor: + model.zero_grad(set_to_none=True) + with autocast_context(): + outputs = model(input_ids=input_ids, attention_mask=attention_mask, labels=labels) + loss = outputs["loss"] + loss.backward() + return loss + + no_timer_forward = time_repeats( + forward_only, + device=device, + warmup=args.warmup, + repeats=args.repeats, + ) + no_timer_backward = time_repeats( + forward_backward, + device=device, + warmup=args.warmup, + repeats=args.repeats, + ) + + timer = ComponentTimer(device) + add_component_hooks(model, architecture, timer) + try: + for _ in range(args.component_warmup): + forward_only() + synchronize(device) + for _ in range(args.component_repeats): + forward_only() + synchronize(device) + finally: + timer.close() + + tokens = args.batch_size * args.seq_len + component_rows = timer.summary() + return { + "architecture": architecture, + "total_params": sum(param.numel() for param in model.parameters()), + "trainable_params": sum(param.numel() for param in model.parameters() if param.requires_grad), + "forward": { + **no_timer_forward, + "tokens_per_s": tokens / max(no_timer_forward["mean_ms"] / 1000.0, 1e-12), + }, + "forward_backward": { + **no_timer_backward, + "tokens_per_s": tokens / max(no_timer_backward["mean_ms"] / 1000.0, 1e-12), + **memory_stats(device), + }, + "components_forward": component_rows, + } + + +def main() -> int: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("--architectures", default="taonet,taonet_ssm") + parser.add_argument("--vocab-size", type=int, default=8192) + parser.add_argument("--batch-size", type=int, default=32) + parser.add_argument("--seq-len", type=int, default=512) + parser.add_argument("--hidden-dim", type=int, default=256) + parser.add_argument("--num-layers", type=int, default=4) + parser.add_argument("--num-heads", type=int, default=4) + parser.add_argument("--d-latent-kv", type=int, default=None) + parser.add_argument("--d-rope", type=int, default=None) + parser.add_argument("--hidden-dim-ff", type=int, default=None) + parser.add_argument("--dropout", type=float, default=0.0) + parser.add_argument("--gqa-groups", type=int, default=1) + parser.add_argument("--rope-scale", type=float, default=40.0) + parser.add_argument("--yarn-alpha", type=float, default=1.0) + parser.add_argument("--init-std", type=float, default=0.02) + parser.add_argument("--ssm-core", choices=["gamma_s4", "dplr"], default="dplr") + parser.add_argument("--ssm-hidden-dim", type=int, default=16) + parser.add_argument("--ssm-mixer-dim", type=int, default=128) + parser.add_argument("--ssm-rank", type=int, default=1) + parser.add_argument("--ssm-max-low-rank-scale", type=float, default=0.1) + parser.add_argument("--ssm-kernel-mode", choices=["auto", "conv", "conv_transfer", "recurrent"], default="conv") + parser.add_argument("--ssm-kernel-threshold", type=int, default=1) + parser.add_argument("--ssm-dt-min", type=float, default=1e-3) + parser.add_argument("--ssm-dt-max", type=float, default=1e-1) + parser.add_argument("--ssm-dt-init", type=float, default=1e-2) + parser.add_argument("--ssm-activation", choices=["gelu", "silu", "identity", "linear"], default="gelu") + parser.add_argument("--ssm-gate", action=argparse.BooleanOptionalAction, default=True) + parser.add_argument("--ssm-input-gate", action=argparse.BooleanOptionalAction, default=True) + parser.add_argument("--ssm-layer-scale-init", type=float, default=0.1) + parser.add_argument("--ssm-local-shift", action=argparse.BooleanOptionalAction, default=True) + parser.add_argument("--ssm-local-shift-init", type=float, default=0.1) + parser.add_argument("--ssm-local-shift-per-channel", action=argparse.BooleanOptionalAction, default=True) + parser.add_argument("--dtype", choices=sorted(DTYPES), default="bf16") + parser.add_argument("--device", default="auto") + parser.add_argument("--warmup", type=int, default=2) + parser.add_argument("--repeats", type=int, default=5) + parser.add_argument("--component-warmup", type=int, default=1) + parser.add_argument("--component-repeats", type=int, default=3) + parser.add_argument("--seed", type=int, default=42) + parser.add_argument("--output", type=Path, default=None) + args = parser.parse_args() + + if args.device == "auto": + device = torch.device("cuda" if torch.cuda.is_available() else "cpu") + else: + device = torch.device(args.device) + dtype = DTYPES[args.dtype] + if device.type == "cuda": + torch.backends.cuda.matmul.allow_tf32 = True + torch.backends.cudnn.allow_tf32 = True + + results = [ + profile_architecture(args, architecture=architecture.strip(), device=device, dtype=dtype) + for architecture in args.architectures.split(",") + if architecture.strip() + ] + report = { + "metadata": { + "python": platform.python_version(), + "platform": platform.platform(), + "torch": torch.__version__, + "cuda_available": torch.cuda.is_available(), + "cuda_device": torch.cuda.get_device_name(device) if device.type == "cuda" else None, + "device": str(device), + "dtype": str(dtype).replace("torch.", ""), + "args": vars(args) | {"output": str(args.output) if args.output else None}, + }, + "results": results, + } + + text = json.dumps(report, indent=2, sort_keys=True, default=str) + print(text) + if args.output is not None: + args.output.parent.mkdir(parents=True, exist_ok=True) + args.output.write_text(text, encoding="utf-8") + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/code/TaoTrain/scripts/remote/job_status.sh b/code/TaoTrain/scripts/remote/job_status.sh new file mode 100644 index 0000000000000000000000000000000000000000..cb9cdaacf2f1c68cb8ea5ff5b92ba6a48e07359c --- /dev/null +++ b/code/TaoTrain/scripts/remote/job_status.sh @@ -0,0 +1,36 @@ +#!/usr/bin/env bash +set -euo pipefail + +RUN_ID="${RUN_ID:-}" +JOB_ROOT="${JOB_ROOT:-/home/student/YouZheng/jobs/taotern}" + +if [[ -z "$RUN_ID" ]]; then + echo "RUN_ID is required" >&2 + exit 2 +fi + +safe_run_id="$(printf '%s' "$RUN_ID" | tr -c 'A-Za-z0-9_.-' '_')" +job_dir="${JOB_ROOT%/}/${safe_run_id}" + +if [[ ! -d "$job_dir" ]]; then + echo "Job directory not found: $job_dir" >&2 + exit 1 +fi + +echo "== status.json ==" +cat "$job_dir/status.json" 2>/dev/null || true +echo +echo "== markers ==" +ls -1 "$job_dir"/DONE "$job_dir"/FAILED 2>/dev/null || true +echo +echo "== tmux ==" +tmux ls 2>/dev/null | grep -F "taotern_${safe_run_id}" || true +echo +echo "== recent log ==" +tail -n "${TAIL_LINES:-80}" "$job_dir/train.log" 2>/dev/null || true +echo +echo "== outputs ==" +find "$job_dir/outputs" -maxdepth 2 -type f 2>/dev/null | sort | tail -n 40 || true +echo +echo "== checkpoints ==" +find "$job_dir/checkpoints" -maxdepth 1 -type f 2>/dev/null | sort | tail -n 20 || true diff --git a/code/TaoTrain/scripts/remote/run_200m_base_suite.sh b/code/TaoTrain/scripts/remote/run_200m_base_suite.sh new file mode 100644 index 0000000000000000000000000000000000000000..3ccc457a43a243f0e2142f0f7e13284a976bf688 --- /dev/null +++ b/code/TaoTrain/scripts/remote/run_200m_base_suite.sh @@ -0,0 +1,149 @@ +#!/usr/bin/env bash +set -euo pipefail + +DATA_PATH="${DATA_PATH:-/home/student/Data/TaoData/pretrain.jsonl}" +TOKENIZER_PATH="${TOKENIZER_PATH:-/home/student/YouZheng/tokenizers/taodata_pilot_8k/tokenizer.model}" +SSM_REPO_PATH="${SSM_REPO_PATH:-/home/student/YouZheng/gamma_ssm_repo}" +PYTHON_BIN="${PYTHON_BIN:-/home/student/.venv/bin/python}" +REMOTE_REPO="${REMOTE_REPO:-$(pwd)}" +OUTPUT_BASE="${REPOBRIDGE_OUTPUT_DIR:-$REMOTE_REPO/results/200m-base-suite}" +CHECKPOINT_BASE="${TAOTERN_CHECKPOINT_DIR:-$OUTPUT_BASE/checkpoints}" + +# Stage-1 defaults are intentionally modest. Increase these through environment +# variables after the 200M shapes are stable on the RTX5090. +MAX_TOKENS="${MAX_TOKENS:-50000000}" +MAX_RECORDS="${MAX_RECORDS:-100000}" +TRAIN_STEPS="${TRAIN_STEPS:-200}" +EVAL_BATCHES="${EVAL_BATCHES:-16}" +BATCH_SIZES="${BATCH_SIZES:-4,8}" +SEQ_LEN="${SEQ_LEN:-512}" +LEARNING_RATE="${LEARNING_RATE:-0.0006}" +WEIGHT_DECAY="${WEIGHT_DECAY:-0.01}" +DRY_RUN="${DRY_RUN:-0}" + +export PYTHONPATH="$REMOTE_REPO/src:$SSM_REPO_PATH" +mkdir -p "$OUTPUT_BASE" "$CHECKPOINT_BASE" + +run_variant() { + local variant="$1" + shift + local output_dir="$OUTPUT_BASE/$variant" + local checkpoint_dir="$CHECKPOINT_BASE/$variant" + mkdir -p "$output_dir" "$checkpoint_dir" + + local cmd="$PYTHON_BIN scripts/benchmark_taonet_real_tokens.py \ + --data-path $DATA_PATH \ + --text-field text \ + --tokenizer-type sentencepiece \ + --tokenizer-path $TOKENIZER_PATH \ + --max-records $MAX_RECORDS \ + --max-tokens $MAX_TOKENS \ + --eval-fraction 0.1 \ + --batch-sizes $BATCH_SIZES \ + --seq-len $SEQ_LEN \ + --dtype bf16 \ + --device cuda \ + --warmup 1 \ + --repeats 2 \ + --backward \ + --train-steps $TRAIN_STEPS \ + --learning-rate $LEARNING_RATE \ + --weight-decay $WEIGHT_DECAY \ + --eval-batches $EVAL_BATCHES \ + --output-dir $output_dir \ + --resume-completed \ + --incremental-output \ + --save-case-checkpoints \ + --checkpoint-dir $checkpoint_dir \ + $*" + + printf '\n=== 200M variant: %s ===\n' "$variant" + printf '%s\n' "$cmd" + if [ "$DRY_RUN" = "1" ]; then + return 0 + fi + eval "$cmd" +} + +run_variant attention_196m \ + --architectures taonet \ + --hidden-dim 960 \ + --num-layers 16 \ + --num-heads 8 \ + --d-latent-kv 720 \ + --d-rope 120 \ + --hidden-dim-ff 2880 + +run_variant pure_ssm_196m_hadamard \ + --architectures taonet_ssm \ + --hidden-dim 1024 \ + --num-layers 18 \ + --num-heads 8 \ + --d-latent-kv 768 \ + --d-rope 128 \ + --hidden-dim-ff 3072 \ + --ssm-core dplr \ + --ssm-hidden-dims 16 \ + --ssm-mixer-dims 256 \ + --ssm-num-lanes-list 2 \ + --ssm-lane-combine channel \ + --ssm-lane-modes split \ + --ssm-split-mixes hadamard \ + --ssm-rank 1 \ + --ssm-kernel-mode conv \ + --no-ssm-finite-tail-correction \ + --ssm-gate-types channel \ + --ssm-local-shift \ + --ssm-local-shift-per-channel \ + --ssm-local-shift-init 0.1 + +run_variant pure_ssm_196m_nomix \ + --architectures taonet_ssm \ + --hidden-dim 1024 \ + --num-layers 18 \ + --num-heads 8 \ + --d-latent-kv 768 \ + --d-rope 128 \ + --hidden-dim-ff 3072 \ + --ssm-core dplr \ + --ssm-hidden-dims 16 \ + --ssm-mixer-dims 256 \ + --ssm-num-lanes-list 2 \ + --ssm-lane-combine channel \ + --ssm-lane-modes split \ + --ssm-split-mixes none \ + --ssm-rank 1 \ + --ssm-kernel-mode conv \ + --no-ssm-finite-tail-correction \ + --ssm-gate-types channel \ + --ssm-local-shift \ + --ssm-local-shift-per-channel \ + --ssm-local-shift-init 0.1 + +run_variant hybrid_ssm_first_199m \ + --architectures taonet_hybrid \ + --hidden-dim 1024 \ + --num-layers 16 \ + --num-heads 8 \ + --d-latent-kv 768 \ + --d-rope 128 \ + --hidden-dim-ff 3072 \ + --ssm-core dplr \ + --ssm-hidden-dims 32 \ + --ssm-mixer-dims 256 \ + --ssm-num-lanes-list 2 \ + --ssm-lane-combine channel \ + --ssm-lane-modes split \ + --ssm-split-mixes hadamard \ + --ssm-rank 1 \ + --ssm-kernel-mode conv \ + --no-ssm-finite-tail-correction \ + --ssm-gate-types channel \ + --hybrid-patterns ssm_first \ + --ssm-local-shift \ + --ssm-local-shift-per-channel \ + --ssm-local-shift-init 0.1 + +if [ "$DRY_RUN" != "1" ]; then + "$PYTHON_BIN" scripts/summarize_taonet_benchmark_suite.py --suite-dir "$OUTPUT_BASE" +fi diff --git a/code/TaoTrain/scripts/remote/run_200m_branch_only_chat.sh b/code/TaoTrain/scripts/remote/run_200m_branch_only_chat.sh new file mode 100644 index 0000000000000000000000000000000000000000..ee382fbdc77a9478c03e4093f3bd850a7cacdc7c --- /dev/null +++ b/code/TaoTrain/scripts/remote/run_200m_branch_only_chat.sh @@ -0,0 +1,329 @@ +#!/usr/bin/env bash +set -euo pipefail + +DATA_PATH="${DATA_PATH:-/home/student/Data/TaoData/pretrain.jsonl}" +SFT_DATA_PATH="${SFT_DATA_PATH:-/home/student/Data/TaoData/sft.jsonl}" +TOKENIZER_PATH="${TOKENIZER_PATH:-/home/student/YouZheng/tokenizers/taodata_pilot_8k/tokenizer.model}" +SSM_REPO_PATH="${SSM_REPO_PATH:-/home/student/YouZheng/gamma_ssm_repo}" +PYTHON_BIN="${PYTHON_BIN:-/home/student/.venv/bin/python}" +REMOTE_REPO="${REMOTE_REPO:-$(pwd)}" +OUTPUT_BASE="${REPOBRIDGE_OUTPUT_DIR:-$REMOTE_REPO/results/200m-branch-only-chat}" +CHECKPOINT_BASE="${TAOTERN_CHECKPOINT_DIR:-$OUTPUT_BASE/checkpoints}" + +SEQ_LEN="${SEQ_LEN:-512}" +BATCH_SIZE="${BATCH_SIZE:-8}" +PRETRAIN_TOKENS="${PRETRAIN_TOKENS:-4000000000}" +SFT_STEPS="${SFT_STEPS:-50000}" +PRETRAIN_LR="${PRETRAIN_LR:-0.0008}" +SFT_LR="${SFT_LR:-0.00005}" +WEIGHT_DECAY="${WEIGHT_DECAY:-0.01}" +LOG_EVERY="${LOG_EVERY:-100}" +SAVE_EVERY="${SAVE_EVERY:-100000}" +SFT_SAVE_EVERY="${SFT_SAVE_EVERY:-10000}" +TOKENIZER_THREADS="${TOKENIZER_THREADS:-8}" +SAMPLES_PER_CHUNK="${SAMPLES_PER_CHUNK:-2000}" +BLOCK_RESIDUAL_RMS_CAP="${BLOCK_RESIDUAL_RMS_CAP:-}" + +ceil_div() { + local numerator="$1" + local denominator="$2" + echo $(( (numerator + denominator - 1) / denominator )) +} + +PRETRAIN_STEPS="${PRETRAIN_STEPS:-$(ceil_div "$PRETRAIN_TOKENS" $((BATCH_SIZE * SEQ_LEN)))}" + +export PYTHONPATH="$REMOTE_REPO/src:$SSM_REPO_PATH" +mkdir -p "$OUTPUT_BASE/configs" "$OUTPUT_BASE/diagnostics" "$CHECKPOINT_BASE/pretrain" "$CHECKPOINT_BASE/sft" + +cap_yaml="" +if [[ -n "$BLOCK_RESIDUAL_RMS_CAP" ]]; then + cap_yaml=" block_residual_rms_cap: $BLOCK_RESIDUAL_RMS_CAP" +fi + +cat > "$OUTPUT_BASE/run_plan.json" < "$PRETRAIN_CONFIG" <&2 + exit 2 +fi + +"$PYTHON_BIN" scripts/diagnostics/activation_probe.py \ + --checkpoint "$PRETRAIN_CKPT" \ + --tokenizer-path "$TOKENIZER_PATH" \ + --data-path "$DATA_PATH" \ + --text-field text \ + --output "$OUTPUT_BASE/diagnostics/activation_probe_pretrain_final.json" \ + --batch-size 2 \ + --seq-len "$SEQ_LEN" \ + --device cuda \ + --dtype bfloat16 + +"$PYTHON_BIN" scripts/diagnostics/generate_checkpoint_samples.py \ + --checkpoint "$PRETRAIN_CKPT" \ + --tokenizer-path "$TOKENIZER_PATH" \ + --output "$OUTPUT_BASE/diagnostics/generation_samples_pretrain_final.json" \ + --max-new-tokens 160 \ + --temperature 0.8 \ + --top-p 0.9 \ + --prompt "The purpose of artificial intelligence is" \ + --prompt "In a small village," \ + --prompt "Hello, who are you?" + +SFT_CONFIG="$OUTPUT_BASE/configs/sft.yaml" +cat > "$SFT_CONFIG" <" +assistant_token: "" +response_loss_only: true + +batch_size: $BATCH_SIZE +num_epochs: 100000 +max_steps: $SFT_STEPS +gradient_accumulation_steps: 1 +max_grad_norm: 1.0 + +optimizer: + optimizer_type: adamw + learning_rate: $SFT_LR + weight_decay: 0.0 + betas: [0.9, 0.999] + eps: 1e-8 + +scheduler: + scheduler_type: constant + warmup_steps: 100 + warmup_ratio: 0.0 + +dtype: bfloat16 +device: cuda +checkpoint_dir: $CHECKPOINT_BASE/sft +save_every_steps: $SFT_SAVE_EVERY +save_best_model: false +keep_last_n_checkpoints: 3 +eval_every_steps: $SFT_SAVE_EVERY +eval_samples: 32 +log_every_steps: 20 +aim_repo: $OUTPUT_BASE/.aim-sft +seed: 44 +num_workers: 0 +pin_memory: true +YAML + +printf '\n============================================================\n' +printf '200M branch-only pure SSM response-only SFT\n' +printf 'steps=%s batch=%s seq_len=%s save_every=%s\n' \ + "$SFT_STEPS" "$BATCH_SIZE" "$SEQ_LEN" "$SFT_SAVE_EVERY" +printf '============================================================\n' + +"$PYTHON_BIN" -m taoTrain.cli sft --config "$SFT_CONFIG" + +SFT_CKPT="$CHECKPOINT_BASE/sft/final_model.pt" +if [[ ! -f "$SFT_CKPT" ]]; then + echo "Expected SFT checkpoint missing: $SFT_CKPT" >&2 + exit 2 +fi + +"$PYTHON_BIN" scripts/diagnostics/generate_checkpoint_samples.py \ + --checkpoint "$SFT_CKPT" \ + --tokenizer-path "$TOKENIZER_PATH" \ + --output "$OUTPUT_BASE/diagnostics/generation_samples_sft_final.json" \ + --max-new-tokens 220 \ + --temperature 0.7 \ + --top-p 0.9 \ + --prompt "Hello, who are you?" \ + --prompt "Explain what artificial intelligence is in simple words." \ + --prompt "Give me three practical study tips." + +cat > "$OUTPUT_BASE/model_card.json" < "$ROOT_OUTPUT_DIR/run_plan.json" < "$OUTPUT_BASE/run_plan.json" <&2 + exit 2 +fi + +"$PYTHON_BIN" scripts/diagnostics/activation_probe.py \ + --checkpoint "$PRETRAIN_CKPT" \ + --tokenizer-path "$TOKENIZER_PATH" \ + --data-path "$DATA_PATH" \ + --text-field text \ + --output "$OUTPUT_BASE/diagnostics/activation_probe_pretrain_latest.json" \ + --batch-size 2 \ + --seq-len "$SEQ_LEN" \ + --device cuda \ + --dtype bfloat16 + +"$PYTHON_BIN" scripts/diagnostics/generate_checkpoint_samples.py \ + --checkpoint "$PRETRAIN_CKPT" \ + --tokenizer-path "$TOKENIZER_PATH" \ + --output "$OUTPUT_BASE/diagnostics/generation_samples_pretrain_latest.json" \ + --max-new-tokens 120 \ + --temperature 0.8 \ + --top-p 0.9 \ + --prompt "The purpose of artificial intelligence is" \ + --prompt "In a small village," \ + --prompt "Hello, who are you?" + +SFT_CONFIG="$OUTPUT_BASE/configs/sft_sanity.yaml" +cat > "$SFT_CONFIG" <" +assistant_token: "" +response_loss_only: true + +batch_size: $BATCH_SIZE +num_epochs: 100000 +max_steps: $SFT_SANITY_STEPS +gradient_accumulation_steps: 1 +max_grad_norm: 1.0 + +optimizer: + optimizer_type: adamw + learning_rate: $SFT_SANITY_LR + weight_decay: 0.0 + betas: [0.9, 0.999] + eps: 1e-8 + +scheduler: + scheduler_type: linearWarmup + warmup_steps: 0 + +dtype: bfloat16 +device: cuda +checkpoint_dir: $CHECKPOINT_BASE/sft_sanity +save_every_steps: 5000 +save_best_model: false +keep_last_n_checkpoints: 1 +eval_every_steps: 5000 +eval_samples: 32 +log_every_steps: 10 +aim_repo: $OUTPUT_BASE/.aim-sft-sanity +seed: 43 +num_workers: 0 +pin_memory: true +YAML + +"$PYTHON_BIN" scripts/diagnostics/sft_sanity_check.py \ + --config "$SFT_CONFIG" \ + --checkpoint "$PRETRAIN_CKPT" \ + --output "$OUTPUT_BASE/diagnostics/sft_sanity_pretrain_latest.json" \ + --samples "$SFT_SANITY_SAMPLES" \ + --steps "$SFT_SANITY_STEPS" \ + --lr "$SFT_SANITY_LR" \ + --log-every 20 \ + --device cuda \ + --dtype bfloat16 \ + --ssm-branch-rms-norm + +cat > "$OUTPUT_BASE/gate_summary.json" < "$OUTPUT_BASE/run_plan.json" <&2 + exit 2 +fi + +"$PYTHON_BIN" scripts/diagnostics/activation_probe.py \ + --checkpoint "$PRETRAIN_CKPT" \ + --tokenizer-path "$TOKENIZER_PATH" \ + --data-path "$DATA_PATH" \ + --text-field text \ + --output "$OUTPUT_BASE/diagnostics/activation_probe_pretrain_latest.json" \ + --batch-size 2 \ + --seq-len "$SEQ_LEN" \ + --device cuda \ + --dtype bfloat16 + +"$PYTHON_BIN" scripts/diagnostics/generate_checkpoint_samples.py \ + --checkpoint "$PRETRAIN_CKPT" \ + --tokenizer-path "$TOKENIZER_PATH" \ + --output "$OUTPUT_BASE/diagnostics/generation_samples_pretrain_latest.json" \ + --max-new-tokens 80 \ + --temperature 0.8 \ + --top-p 0.9 \ + --prompt "The purpose of artificial intelligence is" \ + --prompt "In a small village," \ + --prompt "Hello, who are you?" + +SFT_CONFIG="$OUTPUT_BASE/configs/sft_sanity.yaml" +cat > "$SFT_CONFIG" <" +assistant_token: "" +response_loss_only: true + +batch_size: $BATCH_SIZE +num_epochs: 100000 +max_steps: $SFT_SANITY_STEPS +gradient_accumulation_steps: 1 +max_grad_norm: 1.0 + +optimizer: + optimizer_type: adamw + learning_rate: $SFT_SANITY_LR + weight_decay: 0.0 + betas: [0.9, 0.999] + eps: 1e-8 + +scheduler: + scheduler_type: linearWarmup + warmup_steps: 0 + +dtype: bfloat16 +device: cuda +checkpoint_dir: $CHECKPOINT_BASE/sft_sanity +save_every_steps: 5000 +save_best_model: false +keep_last_n_checkpoints: 1 +eval_every_steps: 5000 +eval_samples: 32 +log_every_steps: 10 +aim_repo: $OUTPUT_BASE/.aim-sft-sanity +seed: 43 +num_workers: 0 +pin_memory: true +YAML + +"$PYTHON_BIN" scripts/diagnostics/sft_sanity_check.py \ + --config "$SFT_CONFIG" \ + --checkpoint "$PRETRAIN_CKPT" \ + --output "$OUTPUT_BASE/diagnostics/sft_sanity_pretrain_latest.json" \ + --samples "$SFT_SANITY_SAMPLES" \ + --steps "$SFT_SANITY_STEPS" \ + --lr "$SFT_SANITY_LR" \ + --log-every 20 \ + --device cuda \ + --dtype bfloat16 \ + --ssm-branch-rms-norm \ + --ssm-branch-clip-value 1.0 \ + --block-residual-rms-norm \ + --block-residual-rms-target 1.0 + +cat > "$OUTPUT_BASE/gate_summary.json" <&2 + exit 2 +fi + +if [[ -z "$JOB_COMMAND" ]]; then + echo "JOB_COMMAND is required" >&2 + exit 2 +fi + +if ! command -v tmux >/dev/null 2>&1; then + echo "tmux is required for detached jobs" >&2 + exit 2 +fi + +safe_run_id="$(printf '%s' "$RUN_ID" | tr -c 'A-Za-z0-9_.-' '_')" +session="${SESSION_NAME:-taotern_${safe_run_id}}" +job_dir="${JOB_ROOT%/}/${safe_run_id}" +output_dir="${OUTPUT_DIR:-$job_dir/outputs}" +checkpoint_dir="${CHECKPOINT_DIR:-$job_dir/checkpoints}" + +mkdir -p "$job_dir" "$output_dir" "$checkpoint_dir" + +cat > "$job_dir/command.sh" < "$job_dir/run.sh" <<'EOF' +#!/usr/bin/env bash +set -Eeuo pipefail + +job_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +status_json="$job_dir/status.json" +log_path="$job_dir/train.log" +telemetry_path="$job_dir/gpu_telemetry_nvidia_smi.csv" + +write_status() { + local state="$1" + local extra="${2:-}" + local now + now="$(date -Iseconds)" + cat > "$status_json" </dev/null 2>&1; then + ( + while true; do + date -Iseconds + nvidia-smi --query-gpu=timestamp,name,utilization.gpu,utilization.memory,memory.used,memory.total,power.draw,temperature.gpu --format=csv,noheader,nounits + sleep 5 + done + ) > "$telemetry_path" 2>&1 & + monitor_pid="$!" +fi + +cleanup() { + if [[ -n "$monitor_pid" ]]; then + kill "$monitor_pid" 2>/dev/null || true + wait "$monitor_pid" 2>/dev/null || true + fi +} +trap cleanup EXIT + +set +e +"$job_dir/command.sh" > "$log_path" 2>&1 +exit_code="$?" +set -e + +if [[ "$exit_code" -eq 0 ]]; then + touch "$job_dir/DONE" + write_status "completed" ",\"exit_code\":0,\"end_time\":\"$(date -Iseconds)\"" +else + echo "$exit_code" > "$job_dir/FAILED" + write_status "failed" ",\"exit_code\":$exit_code,\"end_time\":\"$(date -Iseconds)\"" +fi + +exit "$exit_code" +EOF +chmod +x "$job_dir/run.sh" + +cat > "$job_dir/status.json" </dev/null; then + echo "tmux session already exists: $session" >&2 + echo "$job_dir" + exit 3 +fi + +tmux new-session -d -s "$session" "bash '$job_dir/run.sh'" + +echo "Submitted detached job" +echo " run_id: $safe_run_id" +echo " session: $session" +echo " job_dir: $job_dir" +echo " output_dir: $output_dir" +echo " checkpoint_dir: $checkpoint_dir" diff --git a/code/TaoTrain/scripts/remote/submit_pre_200m_branch_only_gate.sh b/code/TaoTrain/scripts/remote/submit_pre_200m_branch_only_gate.sh new file mode 100644 index 0000000000000000000000000000000000000000..8375600648321a50459ddfabe2e1939f98524cbf --- /dev/null +++ b/code/TaoTrain/scripts/remote/submit_pre_200m_branch_only_gate.sh @@ -0,0 +1,33 @@ +#!/usr/bin/env bash +set -euo pipefail + +RUN_ID="${RUN_ID:-taotern-pre-200m-branch-only-gate-$(date +%Y%m%d-%H%M%S)}" +JOB_ROOT="${JOB_ROOT:-/home/student/YouZheng/jobs/taotern}" +REMOTE_REPO="${REMOTE_REPO:-$(pwd)}" +PYTHON_BIN="${PYTHON_BIN:-/home/student/.venv/bin/python}" +SSM_REPO_PATH="${SSM_REPO_PATH:-/home/student/YouZheng/gamma_ssm_repo}" +DATA_PATH="${DATA_PATH:-/home/student/Data/TaoData/pretrain.jsonl}" +SFT_DATA_PATH="${SFT_DATA_PATH:-/home/student/Data/TaoData/sft.jsonl}" +TOKENIZER_PATH="${TOKENIZER_PATH:-/home/student/YouZheng/tokenizers/taodata_pilot_8k/tokenizer.model}" +SEQ_LEN="${SEQ_LEN:-512}" +BATCH_SIZE="${BATCH_SIZE:-8}" +TARGET_TOKENS="${TARGET_TOKENS:-100000000}" +MAX_TOKENS="${MAX_TOKENS:-100000000}" +MAX_RECORDS="${MAX_RECORDS:-200000}" +EVAL_BATCHES="${EVAL_BATCHES:-128}" +LEARNING_RATE="${LEARNING_RATE:-0.0008}" +WEIGHT_DECAY="${WEIGHT_DECAY:-0.01}" +TRAIN_LOG_EVERY="${TRAIN_LOG_EVERY:-1000}" +SFT_SANITY_SAMPLES="${SFT_SANITY_SAMPLES:-4}" +SFT_SANITY_STEPS="${SFT_SANITY_STEPS:-120}" +SFT_SANITY_LR="${SFT_SANITY_LR:-0.00005}" +BLOCK_RESIDUAL_RMS_CAP="${BLOCK_RESIDUAL_RMS_CAP:-}" + +JOB_COMMAND="REMOTE_REPO=$REMOTE_REPO PYTHON_BIN=$PYTHON_BIN SSM_REPO_PATH=$SSM_REPO_PATH DATA_PATH=$DATA_PATH SFT_DATA_PATH=$SFT_DATA_PATH TOKENIZER_PATH=$TOKENIZER_PATH SEQ_LEN=$SEQ_LEN BATCH_SIZE=$BATCH_SIZE TARGET_TOKENS=$TARGET_TOKENS MAX_TOKENS=$MAX_TOKENS MAX_RECORDS=$MAX_RECORDS EVAL_BATCHES=$EVAL_BATCHES LEARNING_RATE=$LEARNING_RATE WEIGHT_DECAY=$WEIGHT_DECAY TRAIN_LOG_EVERY=$TRAIN_LOG_EVERY SFT_SANITY_SAMPLES=$SFT_SANITY_SAMPLES SFT_SANITY_STEPS=$SFT_SANITY_STEPS SFT_SANITY_LR=$SFT_SANITY_LR BLOCK_RESIDUAL_RMS_CAP=$BLOCK_RESIDUAL_RMS_CAP bash scripts/remote/run_pre_200m_branch_only_gate.sh" + +export RUN_ID JOB_ROOT JOB_COMMAND +export OUTPUT_DIR="${OUTPUT_DIR:-$JOB_ROOT/$RUN_ID/outputs}" +export CHECKPOINT_DIR="${CHECKPOINT_DIR:-$JOB_ROOT/$RUN_ID/checkpoints}" + +bash scripts/remote/submit_detached_job.sh + diff --git a/code/TaoTrain/scripts/remote/submit_pre_200m_stability_gate.sh b/code/TaoTrain/scripts/remote/submit_pre_200m_stability_gate.sh new file mode 100644 index 0000000000000000000000000000000000000000..2f5b82e74c1682c887216d93475cf5cbf894dcaf --- /dev/null +++ b/code/TaoTrain/scripts/remote/submit_pre_200m_stability_gate.sh @@ -0,0 +1,32 @@ +#!/usr/bin/env bash +set -euo pipefail + +RUN_ID="${RUN_ID:-taotern-pre-200m-stability-gate-$(date +%Y%m%d-%H%M%S)}" +JOB_ROOT="${JOB_ROOT:-/home/student/YouZheng/jobs/taotern}" +REMOTE_REPO="${REMOTE_REPO:-$(pwd)}" +PYTHON_BIN="${PYTHON_BIN:-/home/student/.venv/bin/python}" +SSM_REPO_PATH="${SSM_REPO_PATH:-/home/student/YouZheng/gamma_ssm_repo}" +DATA_PATH="${DATA_PATH:-/home/student/Data/TaoData/pretrain.jsonl}" +SFT_DATA_PATH="${SFT_DATA_PATH:-/home/student/Data/TaoData/sft.jsonl}" +TOKENIZER_PATH="${TOKENIZER_PATH:-/home/student/YouZheng/tokenizers/taodata_pilot_8k/tokenizer.model}" +SEQ_LEN="${SEQ_LEN:-512}" +BATCH_SIZE="${BATCH_SIZE:-8}" +TARGET_TOKENS="${TARGET_TOKENS:-20000000}" +MAX_TOKENS="${MAX_TOKENS:-50000000}" +MAX_RECORDS="${MAX_RECORDS:-120000}" +EVAL_BATCHES="${EVAL_BATCHES:-64}" +LEARNING_RATE="${LEARNING_RATE:-0.0008}" +WEIGHT_DECAY="${WEIGHT_DECAY:-0.01}" +TRAIN_LOG_EVERY="${TRAIN_LOG_EVERY:-250}" +SFT_SANITY_SAMPLES="${SFT_SANITY_SAMPLES:-4}" +SFT_SANITY_STEPS="${SFT_SANITY_STEPS:-120}" +SFT_SANITY_LR="${SFT_SANITY_LR:-0.00005}" + +JOB_COMMAND="REMOTE_REPO=$REMOTE_REPO PYTHON_BIN=$PYTHON_BIN SSM_REPO_PATH=$SSM_REPO_PATH DATA_PATH=$DATA_PATH SFT_DATA_PATH=$SFT_DATA_PATH TOKENIZER_PATH=$TOKENIZER_PATH SEQ_LEN=$SEQ_LEN BATCH_SIZE=$BATCH_SIZE TARGET_TOKENS=$TARGET_TOKENS MAX_TOKENS=$MAX_TOKENS MAX_RECORDS=$MAX_RECORDS EVAL_BATCHES=$EVAL_BATCHES LEARNING_RATE=$LEARNING_RATE WEIGHT_DECAY=$WEIGHT_DECAY TRAIN_LOG_EVERY=$TRAIN_LOG_EVERY SFT_SANITY_SAMPLES=$SFT_SANITY_SAMPLES SFT_SANITY_STEPS=$SFT_SANITY_STEPS SFT_SANITY_LR=$SFT_SANITY_LR bash scripts/remote/run_pre_200m_stability_gate.sh" + +export RUN_ID JOB_ROOT JOB_COMMAND +export OUTPUT_DIR="${OUTPUT_DIR:-$JOB_ROOT/$RUN_ID/outputs}" +export CHECKPOINT_DIR="${CHECKPOINT_DIR:-$JOB_ROOT/$RUN_ID/checkpoints}" + +bash scripts/remote/submit_detached_job.sh + diff --git a/code/TaoTrain/scripts/remote/submit_ssm_improvement_sweep.sh b/code/TaoTrain/scripts/remote/submit_ssm_improvement_sweep.sh new file mode 100644 index 0000000000000000000000000000000000000000..1efc790135f9340968e0dc1f0fd9668078b9402c --- /dev/null +++ b/code/TaoTrain/scripts/remote/submit_ssm_improvement_sweep.sh @@ -0,0 +1,71 @@ +#!/usr/bin/env bash +set -euo pipefail + +RUN_ID="${RUN_ID:-ssm-improvement-sweep-$(date +%Y%m%d-%H%M%S)}" +DATA_PATH="${DATA_PATH:-/home/student/Data/TaoData/pretrain.jsonl}" +TOKENIZER_PATH="${TOKENIZER_PATH:-/home/student/YouZheng/tokenizers/taodata_pilot_8k/tokenizer.model}" +SSM_REPO_PATH="${SSM_REPO_PATH:-/home/student/YouZheng/gamma_ssm_repo}" +PYTHON_BIN="${PYTHON_BIN:-/home/student/.venv/bin/python}" +JOB_ROOT="${JOB_ROOT:-/home/student/YouZheng/jobs/taotern}" +REMOTE_REPO="${REMOTE_REPO:-$(pwd)}" + +# This is intentionally below the eventual 200M scale. It is a model-selection +# sweep that can run unattended and resume completed benchmark cases. +MAX_TOKENS="${MAX_TOKENS:-100000000}" +MAX_RECORDS="${MAX_RECORDS:-150000}" +TRAIN_STEPS="${TRAIN_STEPS:-5000}" +EVAL_BATCHES="${EVAL_BATCHES:-96}" +BATCH_SIZES="${BATCH_SIZES:-32,64}" +SEQ_LEN="${SEQ_LEN:-512}" + +JOB_COMMAND="PYTHONPATH=$REMOTE_REPO/src:$SSM_REPO_PATH $PYTHON_BIN scripts/benchmark_taonet_real_tokens.py \ + --data-path $DATA_PATH \ + --text-field text \ + --tokenizer-type sentencepiece \ + --tokenizer-path $TOKENIZER_PATH \ + --max-records $MAX_RECORDS \ + --max-tokens $MAX_TOKENS \ + --eval-fraction 0.1 \ + --architectures taonet,taonet_ssm,taonet_hybrid \ + --batch-sizes $BATCH_SIZES \ + --seq-len $SEQ_LEN \ + --hidden-dim 256 \ + --num-layers 4 \ + --num-heads 4 \ + --d-latent-kv 192 \ + --hidden-dim-ff 1024 \ + --ssm-core dplr \ + --ssm-hidden-dims 16,32 \ + --ssm-mixer-dims 128,256 \ + --ssm-num-lanes-list 1,2 \ + --ssm-lane-combine channel \ + --ssm-lane-modes full,split \ + --ssm-split-mixes none,hadamard \ + --ssm-rank 1 \ + --ssm-kernel-mode conv \ + --no-ssm-finite-tail-correction \ + --ssm-gate-types channel \ + --hybrid-patterns attention_first,ssm_first,single_ssm_middle,single_ssm_late \ + --dtype bf16 \ + --device cuda \ + --warmup 2 \ + --repeats 3 \ + --backward \ + --train-steps $TRAIN_STEPS \ + --learning-rate 0.0008 \ + --weight-decay 0.01 \ + --eval-batches $EVAL_BATCHES \ + --ssm-local-shift \ + --ssm-local-shift-per-channel \ + --ssm-local-shift-init 0.1 \ + --output-dir \"\$REPOBRIDGE_OUTPUT_DIR\" \ + --resume-completed \ + --incremental-output \ + --save-case-checkpoints \ + --checkpoint-dir \"\$TAOTERN_CHECKPOINT_DIR\"" + +export RUN_ID JOB_ROOT JOB_COMMAND +export OUTPUT_DIR="${OUTPUT_DIR:-$JOB_ROOT/$RUN_ID/outputs}" +export CHECKPOINT_DIR="${CHECKPOINT_DIR:-$JOB_ROOT/$RUN_ID/checkpoints}" + +bash scripts/remote/submit_detached_job.sh diff --git a/code/TaoTrain/scripts/summarize_taonet_benchmark_suite.py b/code/TaoTrain/scripts/summarize_taonet_benchmark_suite.py new file mode 100644 index 0000000000000000000000000000000000000000..3e34b25781b76be6b75e0b2d417e79eba7e8fdeb --- /dev/null +++ b/code/TaoTrain/scripts/summarize_taonet_benchmark_suite.py @@ -0,0 +1,138 @@ +from __future__ import annotations + +import argparse +import csv +import json +from pathlib import Path +from typing import Any + + +def _as_float(value: str | None) -> float | None: + if value is None or value == "": + return None + try: + return float(value) + except ValueError: + return None + + +def _load_rows(root: Path) -> list[dict[str, Any]]: + rows: list[dict[str, Any]] = [] + for csv_path in sorted(root.glob("*/taonet_real_token_benchmark.csv")): + variant = csv_path.parent.name + with csv_path.open("r", newline="", encoding="utf-8") as handle: + for row in csv.DictReader(handle): + row = dict(row) + row["variant"] = variant + rows.append(row) + return rows + + +def _best_forward_backward(rows: list[dict[str, Any]]) -> list[dict[str, Any]]: + candidates = [row for row in rows if row.get("mode") == "forward_backward"] + grouped: dict[str, list[dict[str, Any]]] = {} + for row in candidates: + grouped.setdefault(row["variant"], []).append(row) + + best_rows = [] + for variant, items in grouped.items(): + items.sort( + key=lambda row: ( + _as_float(row.get("eval_loss")) if _as_float(row.get("eval_loss")) is not None else float("inf"), + -(_as_float(row.get("eval_accuracy")) or 0.0), + ) + ) + best_rows.append(items[0]) + best_rows.sort( + key=lambda row: ( + _as_float(row.get("eval_loss")) if _as_float(row.get("eval_loss")) is not None else float("inf"), + -(_as_float(row.get("eval_accuracy")) or 0.0), + ) + ) + return best_rows + + +def _project(row: dict[str, Any]) -> dict[str, Any]: + keys = [ + "variant", + "architecture", + "hybrid_pattern", + "batch_size", + "seq_len", + "total_params", + "ssm_core", + "ssm_hidden_dim", + "ssm_mixer_dim", + "ssm_num_lanes", + "ssm_lane_mode", + "ssm_split_mix", + "tokens_per_s_mean", + "eval_loss", + "eval_perplexity", + "eval_accuracy", + "train_final_loss", + "train_seconds", + "peak_reserved_mb", + "case_id", + "checkpoint_path", + ] + return {key: row.get(key, "") for key in keys} + + +def _write_markdown(summary: list[dict[str, Any]], path: Path) -> None: + headers = [ + "variant", + "architecture", + "batch", + "params", + "eval_loss", + "eval_acc", + "tok/s", + "checkpoint", + ] + lines = [ + "# TaoNet Benchmark Suite Summary", + "", + "| " + " | ".join(headers) + " |", + "| " + " | ".join(["---"] * len(headers)) + " |", + ] + for row in summary: + lines.append( + "| " + + " | ".join( + [ + str(row["variant"]), + str(row["architecture"]), + str(row["batch_size"]), + str(row["total_params"]), + str(row["eval_loss"]), + str(row["eval_accuracy"]), + str(row["tokens_per_s_mean"]), + str(row["checkpoint_path"]), + ] + ) + + " |" + ) + path.write_text("\n".join(lines) + "\n", encoding="utf-8") + + +def main() -> None: + parser = argparse.ArgumentParser(description="Summarize a TaoNet benchmark suite output directory.") + parser.add_argument("--suite-dir", required=True, help="Directory containing one subdirectory per benchmark variant.") + parser.add_argument("--output-json", default="", help="Summary JSON path. Defaults to /suite_summary.json.") + parser.add_argument("--output-md", default="", help="Summary Markdown path. Defaults to /suite_summary.md.") + args = parser.parse_args() + + suite_dir = Path(args.suite_dir) + rows = _load_rows(suite_dir) + summary = [_project(row) for row in _best_forward_backward(rows)] + json_path = Path(args.output_json) if args.output_json else suite_dir / "suite_summary.json" + md_path = Path(args.output_md) if args.output_md else suite_dir / "suite_summary.md" + json_path.write_text(json.dumps(summary, indent=2) + "\n", encoding="utf-8") + _write_markdown(summary, md_path) + print(f"Wrote {json_path}") + print(f"Wrote {md_path}") + + +if __name__ == "__main__": + main() diff --git a/code/TaoTrain/src/taoTrain.egg-info/dependency_links.txt b/code/TaoTrain/src/taoTrain.egg-info/dependency_links.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/code/TaoTrain/src/taoTrain.egg-info/dependency_links.txt @@ -0,0 +1 @@ + diff --git a/code/TaoTrain/src/taoTrain.egg-info/entry_points.txt b/code/TaoTrain/src/taoTrain.egg-info/entry_points.txt new file mode 100644 index 0000000000000000000000000000000000000000..36b822b2cc20391804537dac7c2b3aa7363dd6a6 --- /dev/null +++ b/code/TaoTrain/src/taoTrain.egg-info/entry_points.txt @@ -0,0 +1,4 @@ +[console_scripts] +train = taoTrain.cli:main +train-tokenizer = taoTrain.cli:train_tokenizer_command +tui-chat = taoTrain.inference.tui:main diff --git a/code/TaoTrain/src/taoTrain/__init__.py b/code/TaoTrain/src/taoTrain/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..11e08fd4560a89aec45a2b3a837dc49b99203a04 --- /dev/null +++ b/code/TaoTrain/src/taoTrain/__init__.py @@ -0,0 +1,8 @@ +""" +TaoTrain: A clean, modular PyTorch LLM training framework. + +For quick usage, see: https://github.com/your-org/taoTrain +""" + +__version__ = "0.1.0" +__author__ = "Felix" diff --git a/code/TaoTrain/src/taoTrain/cli.py b/code/TaoTrain/src/taoTrain/cli.py new file mode 100644 index 0000000000000000000000000000000000000000..c83af17eea100613077a7a5090726b2fb5741a4e --- /dev/null +++ b/code/TaoTrain/src/taoTrain/cli.py @@ -0,0 +1,387 @@ +"""Main CLI entry point.""" + +import sys +from pathlib import Path +from typing import Optional +import click +import torch + +from taoTrain.config import load_config, load_tokenizer_config, TrainingModeEnum, PretrainConfig, SFTConfig, RLConfig +from taoTrain.utils import set_seed, get_device +from taoTrain.core import BaseModel, create_model, create_datasets +from taoTrain.data import get_dataloader +from taoTrain.training import PretrainTrainer, SFTTrainer, RLTrainer +from taoTrain.benchmarks import BenchmarkRunner +from taoTrain.tokenizers import TokenizerTrainer + + +@click.group() +def main(): + """TaoTrain: A clean, modular PyTorch LLM training framework.""" + pass + + +@main.command() +@click.option( + "--config", + type=click.Path(exists=True), + required=True, + help="Path to training config file (YAML or JSON)", +) +def pretrain(config: str): + """Pretrain a language model.""" + _train_command(config, TrainingModeEnum.PRETRAIN) + + +@main.command() +@click.option( + "--config", + type=click.Path(exists=True), + required=True, + help="Path to training config file (YAML or JSON)", +) +def sft(config: str): + """Supervised fine-tune a language model.""" + _train_command(config, TrainingModeEnum.SFT) + + +@main.command() +@click.option( + "--config", + type=click.Path(exists=True), + required=True, + help="Path to training config file (YAML or JSON)", +) +def rl(config: str): + """Train with reinforcement learning.""" + _train_command(config, TrainingModeEnum.RL) + + +@main.command() +@click.option( + "--config", + type=click.Path(exists=True), + required=True, + help="Path to tokenizer config file (YAML or JSON)", +) +def train_tokenizer(config: str): + """Train a SentencePiece tokenizer from a YAML/JSON config file.""" + try: + click.echo("🚀 TaoTrain Tokenizer Trainer") + click.echo(f"{'=' * 50}") + + # Load tokenizer config + click.echo(f"Loading config from {config}...") + tokenizer_config = load_tokenizer_config(config) + + # Train tokenizer from config + result = TokenizerTrainer.train_from_config(tokenizer_config) + + # Display results + click.echo(f"\n{'=' * 50}") + click.echo("✅ Tokenizer Training Complete!") + click.echo(f"\n📊 Configuration:") + click.echo(f" - Input file: {tokenizer_config.jsonl_path}") + click.echo(f" - Samples: {tokenizer_config.max_samples or 'all'}") + click.echo(f" - Output dir: {result['output_dir']}") + click.echo(f" - Vocab size: {result['vocab_size']}") + click.echo(f" - Model type: {result['model_type']}") + + if tokenizer_config.special_tokens: + click.echo(f" - Special tokens: {tokenizer_config.special_tokens}") + + click.echo(f"\n📁 Generated Files:") + click.echo(f" - Model: {result['model_file']}") + click.echo(f" - Vocab: {result['vocab_file']}") + + click.echo(f"\n📝 Next Steps:") + click.echo(f" 1. Use this tokenizer in your pretraining config:") + click.echo(f" dataset:") + click.echo(f" local: true") + click.echo(f" jsonl_path: {tokenizer_config.jsonl_path}") + click.echo(f" tokenizer_path: {result['model_file']}") + click.echo(f"") + click.echo(f" 2. Run pretraining with:") + click.echo(f" train pretrain --config your_config.yaml") + + except ImportError as e: + click.echo(f"❌ Error: {e}", err=True) + sys.exit(1) + except FileNotFoundError as e: + click.echo(f"❌ File Error: {e}", err=True) + sys.exit(1) + except ValueError as e: + click.echo(f"❌ Validation Error: {e}", err=True) + sys.exit(1) + except Exception as e: + click.echo(f"❌ Unexpected Error: {e}", err=True) + click.echo(f" Please report this issue.", err=True) + sys.exit(1) + + +@click.command() +@click.option( + "--jsonl-path", + type=click.Path(exists=True), + required=True, + help="Path to JSONL file containing training data", +) +@click.option( + "--output-dir", + type=click.Path(), + default="tokenizers", + help="Directory to save tokenizer files", +) +@click.option( + "--vocab-size", + type=int, + default=50000, + help="Vocabulary size for the tokenizer", +) +@click.option( + "--model-type", + type=click.Choice(["unigram", "bpe", "char", "word"]), + default="unigram", + help="SentencePiece model type", +) +@click.option( + "--character-coverage", + type=float, + default=0.9995, + help="Character coverage for SentencePiece", +) +@click.option( + "--tokenizer-prefix", + type=str, + default=None, + help="Prefix for tokenizer output files (default: model_type)", +) +def train_tokenizer_command( + jsonl_path: str, + output_dir: str, + vocab_size: int, + model_type: str, + character_coverage: float, + tokenizer_prefix: Optional[str], +): + """Train a SentencePiece tokenizer from JSONL data.""" + try: + click.echo("🚀 TaoTrain Tokenizer Trainer") + click.echo(f"{'=' * 50}") + + # Train tokenizer + result = TokenizerTrainer.train_sentencepiece( + jsonl_path=jsonl_path, + output_dir=output_dir, + vocab_size=vocab_size, + model_type=model_type, + character_coverage=character_coverage, + tokenizer_prefix=tokenizer_prefix, + ) + + # Display results + click.echo(f"\n{'=' * 50}") + click.echo("✅ Tokenizer Training Complete!") + click.echo(f"\n📊 Configuration:") + click.echo(f" - Input file: {jsonl_path}") + click.echo(f" - Output dir: {result['output_dir']}") + click.echo(f" - Vocab size: {result['vocab_size']}") + click.echo(f" - Model type: {result['model_type']}") + + click.echo(f"\n📁 Generated Files:") + click.echo(f" - Model: {result['model_file']}") + click.echo(f" - Vocab: {result['vocab_file']}") + + click.echo(f"\n📝 Next Steps:") + click.echo(f" 1. Use this tokenizer in your pretraining config:") + click.echo(f" dataset:") + click.echo(f" local: true") + click.echo(f" jsonl_path: {jsonl_path}") + click.echo(f" tokenizer_path: {result['model_file']}") + click.echo(f"") + click.echo(f" 2. Run pretraining with:") + click.echo(f" train pretrain --config your_config.yaml") + + except ImportError as e: + click.echo(f"❌ Error: {e}", err=True) + sys.exit(1) + except FileNotFoundError as e: + click.echo(f"❌ File Error: {e}", err=True) + sys.exit(1) + except ValueError as e: + click.echo(f"❌ Validation Error: {e}", err=True) + sys.exit(1) + except Exception as e: + click.echo(f"❌ Unexpected Error: {e}", err=True) + click.echo(f" Please report this issue.", err=True) + sys.exit(1) + + +# Keep legacy CLI command as train-tokenizer-legacy for backward compatibility +main.add_command(train_tokenizer_command, name="train-tokenizer-legacy") + + +def _train_command(config_path: str, mode: TrainingModeEnum): + """Internal training command.""" + try: + # Load config + click.echo(f"Loading config from {config_path}...") + train_config = load_config(config_path, mode) + + # Set seed + set_seed(train_config.seed) + + # Get device + device = get_device(train_config.device) + click.echo(f"Using device: {device}") + + # Create model + click.echo("Creating model...") + model = create_model(train_config, device) + total_params, trainable_params = _count_params(model) + click.echo(f" - Total parameters: {total_params:,}") + click.echo(f" - Trainable parameters: {trainable_params:,}") + + # Load pretrained checkpoint if provided (for SFT/RL) + if train_config.checkpoint_path: + click.echo(f"Loading pretrained checkpoint from {train_config.checkpoint_path}...") + from taoTrain.checkpointing.checkpoint import CheckpointManager + checkpoint_manager = CheckpointManager(train_config.checkpoint_dir) + checkpoint = checkpoint_manager.load(train_config.checkpoint_path, device=device) + + # CheckpointManager.load() normalizes format and ensures 'model_state' key exists + if "model_state" in checkpoint: + model.load_state_dict(checkpoint["model_state"], strict=False) + click.echo(" ✓ Checkpoint loaded successfully") + else: + raise KeyError(f"Invalid checkpoint format: 'model_state' key not found. " + f"Available keys: {list(checkpoint.keys())}") + + + + # Create datasets + click.echo("Loading datasets...") + train_dataset, val_dataset = create_datasets(train_config) + click.echo(f" - Train samples: {len(train_dataset)}") + if val_dataset: + click.echo(f" - Val samples: {len(val_dataset)}") + + # Select trainer + if mode == TrainingModeEnum.PRETRAIN: + trainer_class = PretrainTrainer + elif mode == TrainingModeEnum.SFT: + trainer_class = SFTTrainer + elif mode == TrainingModeEnum.RL: + trainer_class = RLTrainer + else: + raise ValueError(f"Unknown training mode: {mode}") + + # Create trainer + click.echo("Setting up trainer...") + trainer = trainer_class( + model=model, + train_dataset=train_dataset, + val_dataset=val_dataset, + config=train_config, + device=device, + ) + + # Training loop + click.echo("\nStarting training...\n") + for epoch in range(train_config.num_epochs): + if train_config.max_steps and trainer.global_step >= train_config.max_steps: + break + + epoch_metrics = trainer.train_epoch() + click.echo(f"\nEpoch {epoch + 1} complete") + click.echo(f" - Loss: {epoch_metrics.get('loss', 'N/A')}") + click.echo(f" - Learning rate: {epoch_metrics.get('lr', 'N/A')}") + + # Final checkpoint + final_path = Path(train_config.checkpoint_dir) / "final_model.pt" + trainer.save_checkpoint(final_path) + click.echo(f"\nTraining complete! Final model saved to {final_path}") + + # Log finish + trainer.logger.finish() + + except Exception as e: + click.echo(f"Error during training: {e}", err=True) + sys.exit(1) + + +@main.command() +@click.option( + "--model", + type=click.Path(exists=True), + required=True, + help="Path to model checkpoint", +) +@click.option( + "--benchmark-type", + type=click.Choice(["all", "perplexity", "throughput", "memory"]), + default="all", + help="Type of benchmark to run", +) +@click.option( + "--batch-size", + type=int, + default=32, + help="Batch size for benchmarking", +) +@click.option( + "--seq-length", + type=int, + default=1024, + help="Sequence length for benchmarking", +) +def benchmark(model: str, benchmark_type: str, batch_size: int, seq_length: int): + """Benchmark a trained model.""" + try: + click.echo(f"Loading model from {model}...") + device = get_device("cuda") + runner = BenchmarkRunner.load_from_checkpoint(model, device=device) + + click.echo("Running benchmarks...\n") + + if benchmark_type == "throughput" or benchmark_type == "all": + click.echo("Throughput benchmark:") + results = runner.benchmark_throughput(batch_size, seq_length) + for key, val in results.items(): + click.echo(f" {key}: {val:.2f}") + + if benchmark_type == "memory" or benchmark_type == "all": + click.echo("\nMemory benchmark:") + results = runner.benchmark_memory() + for key, val in results.items(): + click.echo(f" {key}: {val:.2f}") + + click.echo("\nBenchmarking complete!") + + except Exception as e: + click.echo(f"Error during benchmarking: {e}", err=True) + sys.exit(1) + + +@main.command() +@click.option("--repo", type=str, default=".aim", help="AimStack repository path") +def view_logs(repo: str): + """View training logs with AimStack.""" + try: + import subprocess + click.echo(f"Opening AimStack dashboard for repo: {repo}") + subprocess.run(["aim", "up", "--repo", repo]) + except FileNotFoundError: + click.echo("Error: 'aim' command not found. Install with: pip install aim", err=True) + sys.exit(1) + + +def _count_params(model: BaseModel) -> tuple[int, int]: + """Count model parameters.""" + total = sum(p.numel() for p in model.parameters()) + trainable = sum(p.numel() for p in model.parameters() if p.requires_grad) + return total, trainable + + +if __name__ == "__main__": + main() diff --git a/code/TaoTrain/src/taoTrain/config.py b/code/TaoTrain/src/taoTrain/config.py new file mode 100644 index 0000000000000000000000000000000000000000..68055436cd7e8c66447049bb6c6bdd82867a7fc4 --- /dev/null +++ b/code/TaoTrain/src/taoTrain/config.py @@ -0,0 +1,726 @@ +"""Pydantic configuration schemas for TaoTrain.""" + +from enum import Enum +from typing import Optional, Literal +from pathlib import Path +import json +from pydantic import BaseModel as PydanticBaseModel, Field, validator +import yaml + + +# ============================================================================ +# Enums +# ============================================================================ + + +class DataTypeEnum(str, Enum): + """Data types for training.""" + FLOAT32 = "float32" + FLOAT16 = "float16" + BFLOAT16 = "bfloat16" + + +class OptimizerEnum(str, Enum): + """Supported optimizers.""" + ADAM = "adam" + ADAMW = "adamw" + SGD = "sgd" + HYBRID_MUON_ADAMW = "hybrid_muon_adamw" + + +class ModelArchitectureEnum(str, Enum): + """Built-in model architectures.""" + TRANSFORMER = "transformer" + TAONET = "taonet" + TAONET_SSM = "taonet_ssm" + TAONET_HYBRID = "taonet_hybrid" + + +class SchedulerEnum(str, Enum): + """Supported learning rate schedulers.""" + LINEAR_WARMUP = "linearWarmup" + COSINE_WARMUP = "cosineWarmup" + CONSTANT = "constant" + + +class RLMethodEnum(str, Enum): + """Supported RL training methods.""" + PPO = "ppo" + DPO = "dpo" + + +class TrainingModeEnum(str, Enum): + """Training stages.""" + PRETRAIN = "pretrain" + SFT = "sft" + RL = "rl" + + +# ============================================================================ +# Base Configs +# ============================================================================ + + +class BaseConfig(PydanticBaseModel): + """Base Pydantic model with utility methods.""" + + class Config: + """Pydantic config.""" + arbitrary_types_allowed = True + + def to_dict(self) -> dict: + """Convert to dictionary.""" + data = self.model_dump(mode='json') # Enums -> strings + return data + + def to_json_str(self) -> str: + """Convert to JSON string.""" + return json.dumps(self.to_dict(), indent=2) + + def save_yaml(self, path: str | Path) -> None: + """Save config to YAML file.""" + path = Path(path) + path.parent.mkdir(parents=True, exist_ok=True) + with open(path, 'w') as f: + yaml.dump(self.to_dict(), f, default_flow_style=False, sort_keys=False) + + def save_json(self, path: str | Path) -> None: + """Save config to JSON file.""" + path = Path(path) + path.parent.mkdir(parents=True, exist_ok=True) + with open(path, 'w') as f: + f.write(self.to_json_str()) + + @classmethod + def load_yaml(cls, path: str | Path) -> "BaseConfig": + """Load config from YAML file.""" + with open(path) as f: + data = yaml.safe_load(f) + return cls(**data) + + @classmethod + def load_json(cls, path: str | Path) -> "BaseConfig": + """Load config from JSON file.""" + with open(path) as f: + data = json.load(f) + return cls(**data) + + +# ============================================================================ +# Model Config +# ============================================================================ + + +class ModelConfig(BaseConfig): + """Configuration for model architecture.""" + + architecture_type: ModelArchitectureEnum = Field( + default=ModelArchitectureEnum.TRANSFORMER, + description="Type of model architecture" + ) + + # Transformer-specific + vocab_size: int = Field(default=50257, description="Vocabulary size") + hidden_dim: int = Field(default=768, description="Hidden dimension") + num_layers: int = Field(default=12, description="Number of transformer blocks") + num_heads: int = Field(default=12, description="Number of attention heads") + head_dim: Optional[int] = Field( + default=None, + description="Head dimension (defaults to hidden_dim // num_heads)" + ) + intermediate_dim: Optional[int] = Field( + default=None, + description="FFN intermediate dimension (defaults to 4 * hidden_dim)" + ) + dropout: float = Field(default=0.1, description="Dropout rate") + max_seq_length: int = Field(default=2048, description="Maximum sequence length") + + # TaoNet (DeepSeek MLA) specific + d_latent_kv: Optional[int] = Field( + default=None, + description="KV compression dimension for MLA (defaults to 3/4 * hidden_dim). Only used for taonet architecture." + ) + d_rope: Optional[int] = Field( + default=None, + description="RoPE dimension per head (defaults to hidden_dim // num_heads). Only used for taonet architecture." + ) + gqa_groups: int = Field( + default=1, + description="Grouped Query Attention groups (1 = standard MLA, >1 = GQA). Only used for taonet architecture." + ) + hidden_dim_ff: Optional[int] = Field( + default=None, + description="Feed-forward intermediate dimension (defaults to 4 * hidden_dim)." + ) + use_factorized_embedding: bool = Field( + default=False, + description="Use low-rank factorized embedding instead of standard embedding (reduces params). Only for taonet." + ) + d_embed_rank: int = Field( + default=96, + description="Rank dimension for factorized embedding. Only used if use_factorized_embedding=True." + ) + + # YaRN (Yet another RoPE eXtension) for context length extension + rope_scale: float = Field( + default=40.0, + description="Base RoPE scale factor (default: 40.0). Controls position frequency base." + ) + yarn_enabled: bool = Field( + default=False, + description="Enable YaRN (Yet another RoPE eXtension) for context length interpolation." + ) + yarn_alpha: float = Field( + default=1.0, + description="YaRN interpolation smoothness (1.0=smooth, <1.0=aggressive, >1.0=conservative). Only used if yarn_enabled=True." + ) + + # TaoNet-SSM specific: SSM mixer replacing MLA attention + ssm_core: Literal["gamma_s4", "dplr"] = Field( + default="gamma_s4", + description="SSM core used by taonet_ssm. Use dplr for the ternary-aware DPLR SSM." + ) + ssm_hidden_dim: Optional[int] = Field( + default=None, + description="SSM hidden/state dimension for taonet_ssm. Defaults to d_latent_kv or hidden_dim." + ) + ssm_mixer_dim: Optional[int] = Field( + default=None, + description="Channel dimension processed by the SSM mixer. Defaults to hidden_dim; smaller values use an input/output projection bottleneck." + ) + ssm_num_lanes: int = Field( + default=1, + description="Number of independent SSM lanes inside each SSM mixer. Multiple lanes add SSM capacity with cheap elementwise combination." + ) + ssm_lane_combine: Literal["mean", "channel"] = Field( + default="mean", + description="How to combine multiple SSM lanes. Channel uses learned per-lane/per-channel elementwise weights." + ) + ssm_lane_mode: Literal["full", "split"] = Field( + default="full", + description="Whether each SSM lane processes the full mixer dimension or a disjoint split of the mixer channels." + ) + ssm_split_mix: Literal["none", "hadamard"] = Field( + default="none", + description="Optional ternary-friendly cross-lane mixer for split SSM lanes." + ) + ssm_rank: int = Field( + default=1, + description="Low-rank correction rank for ssm_core=dplr." + ) + ssm_max_low_rank_scale: float = Field( + default=0.1, + description="Maximum low-rank correction scale for ssm_core=dplr." + ) + ssm_finite_tail_correction: bool = Field( + default=True, + description="Enable exact finite-length tail correction for ssm_core=dplr. Disable for the faster approximate DPLR path." + ) + ssm_discretization: Literal["bilinear", "zoh", "euler"] = Field( + default="bilinear", + description="Discretization used by the Gamma SSM mixer." + ) + ssm_kernel_mode: Literal["auto", "recurrent", "conv", "conv_transfer"] = Field( + default="auto", + description="Gamma SSM execution path. Use auto/conv for full-sequence GPU training, conv_transfer to materialize frequency transfers, recurrent for step-wise tests." + ) + ssm_kernel_threshold: int = Field( + default=64, + description="Minimum sequence length for auto mode to use the convolutional Gamma SSM path." + ) + ssm_dt_min: float = Field(default=1e-3, description="Minimum learned SSM timestep.") + ssm_dt_max: float = Field(default=1e-1, description="Maximum learned SSM timestep.") + ssm_dt_init: float = Field(default=1e-2, description="Initial learned SSM timestep.") + ssm_use_d: bool = Field(default=True, description="Enable direct skip term D in the Gamma SSM.") + ssm_activation: Literal["gelu", "silu", "identity", "linear"] = Field( + default="gelu", + description="Activation applied to the Gamma SSM branch output." + ) + ssm_gate: bool = Field(default=True, description="Enable output gate on the Gamma SSM branch.") + ssm_input_gate: bool = Field(default=True, description="Enable input gate before the Gamma SSM.") + ssm_gate_type: Literal["dense", "channel"] = Field( + default="dense", + description="Gate implementation for enabled SSM input/output gates. Channel gates are elementwise and ternary-friendly." + ) + ssm_use_padding_mask: bool = Field( + default=False, + description="Apply dataset padding masks inside the SSM. Disabled by default so training can use the convolutional path." + ) + ssm_layer_scale_init: float = Field( + default=0.1, + description="Initial layer-scale multiplier for the Gamma SSM branch." + ) + ssm_branch_rms_norm: bool = Field( + default=False, + description="Normalize the SSM residual branch to unit RMS before layer-scale. Useful for stabilizing deep SSM/hybrid runs." + ) + ssm_branch_rms_eps: float = Field( + default=1e-6, + description="Numerical epsilon for optional SSM branch RMS normalization." + ) + ssm_branch_clip_value: Optional[float] = Field( + default=None, + description="Optional symmetric clamp applied to the SSM residual branch after layer-scale. None disables clamping." + ) + block_residual_rms_norm: bool = Field( + default=False, + description="Normalize the residual stream RMS after block residual additions. Intended for stabilizing deep SSM/hybrid experiments." + ) + block_residual_rms_target: float = Field( + default=1.0, + description="Target per-token RMS when block_residual_rms_norm is enabled." + ) + block_residual_rms_cap: Optional[float] = Field( + default=None, + description="Optional per-token RMS cap for the residual stream. Unlike block_residual_rms_norm, this only scales down tokens whose RMS exceeds the cap." + ) + block_residual_rms_eps: float = Field( + default=1e-6, + description="Numerical epsilon for optional block residual RMS normalization." + ) + ssm_local_shift: bool = Field( + default=False, + description="Add a cheap one-token causal shift/register branch to the taonet_ssm mixer." + ) + ssm_local_shift_init: float = Field( + default=0.1, + description="Initial scalar weight for the optional one-token local shift/register branch." + ) + ssm_local_shift_per_channel: bool = Field( + default=False, + description="Use one learned local-shift gain per model channel instead of one scalar." + ) + hybrid_pattern: Literal["attention_first", "ssm_first", "single_ssm_middle", "single_ssm_late"] = Field( + default="attention_first", + description="Layer pattern for taonet_hybrid when hybrid_ssm_layers is not set." + ) + hybrid_ssm_layers: Optional[str] = Field( + default=None, + description="Optional comma-separated 0-based layer indices that should use SSM blocks in taonet_hybrid." + ) + + # Initializations + init_std: float = Field(default=0.02, description="Weight initialization standard deviation") + + @validator("head_dim", always=True) + def validate_head_dim(cls, v, values): + """Validate head dimension.""" + if v is None and 'hidden_dim' in values: + return values['hidden_dim'] // values.get('num_heads', 12) + return v + + @validator("intermediate_dim", always=True) + def validate_intermediate_dim(cls, v, values): + """Validate intermediate dimension.""" + if v is None and 'hidden_dim' in values: + return 4 * values['hidden_dim'] + return v + + +# ============================================================================ +# Dataset Config +# ============================================================================ + + +class DatasetConfig(BaseConfig): + """Configuration for dataset loading.""" + + # Local vs HuggingFace dataset selection + local: bool = Field(default=False, description="Use local JSONL dataset instead of HuggingFace") + + # HuggingFace dataset fields + dataset_name: Optional[str] = Field(default=None, description="HuggingFace dataset name (e.g., 'wikitext', 'openwebtext')") + split: str = Field(default="train", description="Dataset split to use") + config: Optional[str] = Field(default=None, description="Dataset config if multi-config (e.g., 'wikitext-103')") + + # Local JSONL dataset fields + jsonl_path: Optional[str] = Field(default=None, description="Path to local JSONL dataset file") + text_field: str = Field(default="text", description="Name of text field in JSONL") + + # Text column name varies by dataset + text_column: str = Field(default="text", description="Name of text column in dataset") + + # Preprocessing + max_samples: Optional[int] = Field( + default=None, + description="Limit dataset to N samples (useful for debugging)" + ) + cache_dir: str = Field(default=".cache/datasets", description="HuggingFace cache directory") + + # For SFT/RL datasets with instruction-response format + instruction_column: Optional[str] = Field(default=None, description="Instruction column for SFT") + response_column: Optional[str] = Field(default=None, description="Response column for SFT") + prompt_column: Optional[str] = Field(default=None, description="Prompt column for RL") + + # Instruction template + instruction_template: Optional[str] = Field( + default=None, + description="Template for combining instruction and response. E.g., '{instruction}\\n{response}'" + ) + + # Tokenizer configuration + tokenizer_type: Optional[str] = Field( + default=None, + description="Tokenizer type: 'huggingface' or 'sentencepiece'. If None, defaults based on tokenizer_path." + ) + tokenizer_path: Optional[str] = Field( + default=None, + description="Path to saved tokenizer (for SentencePiece: .model file, for HuggingFace: model name or local path)" + ) + + # Chunked loading for large JSONL files + enable_streaming: bool = Field( + default=True, + description="Enable streaming/chunked loading for large JSONL files to reduce memory usage" + ) + chunk_size_gb: float = Field( + default=5.0, + description="Approximate chunk size in GB (ignored if samples_per_chunk is set)" + ) + samples_per_chunk: Optional[int] = Field( + default=1000, + description="Number of samples per chunk (takes precedence over chunk_size_gb). Default: 1000 samples" + ) + + # Chunk caching + enable_chunk_metadata_cache: bool = Field( + default=True, + description="Enable caching of chunk metadata (file scan results) to avoid re-scanning large JSONL files" + ) + enable_chunk_data_cache: bool = Field( + default=False, + description="Enable caching of actual chunk data as separate files for faster loading (uses more disk space)" + ) + chunk_cache_dir: str = Field( + default=".cache/chunks", + description="Directory to store chunk metadata and data cache files" + ) + + # Tokenization parallelization + tokenizer_threads: int = Field( + default=1, + description="Number of background threads for tokenization (1-32 recommended). Higher values speed up tokenization but increase memory usage." + ) + + @validator('jsonl_path', always=True) + def validate_dataset_source(cls, v, values): + """Validate that either local JSONL or HuggingFace dataset is specified.""" + local = values.get('local', False) + dataset_name = values.get('dataset_name') + + if local and not v: + raise ValueError("jsonl_path must be provided when local=True") + if not local and not dataset_name: + raise ValueError("dataset_name must be provided when local=False (HuggingFace dataset)") + + return v + + @validator('tokenizer_threads') + def validate_tokenizer_threads(cls, v): + """Validate tokenizer_threads is a positive integer.""" + if v < 1: + raise ValueError("tokenizer_threads must be at least 1") + if v > 128: + raise ValueError("tokenizer_threads should not exceed 128 (recommended: 1-32)") + return v + + +# ============================================================================ +# Tokenizer Config +# ============================================================================ + + +class TokenizerConfig(BaseConfig): + """Configuration for tokenizer training.""" + + # Dataset source + jsonl_path: str = Field(description="Path to JSONL file containing training data") + text_field: str = Field(default="text", description="Field name in JSONL for text data") + + # Training configuration + vocab_size: int = Field(default=50000, description="Vocabulary size") + model_type: str = Field(default="unigram", description="SentencePiece model type (unigram, bpe, char, word)") + character_coverage: float = Field( + default=0.9995, + description="Character coverage for SentencePiece training" + ) + output_dir: str = Field(default="tokenizers", description="Directory to save trained tokenizer") + tokenizer_prefix: Optional[str] = Field( + default=None, + description="Prefix for tokenizer output files (default: model_type)" + ) + + # SentencePiece token IDs + unk_id: int = Field(default=0, description="Unknown token ID") + bos_id: int = Field(default=1, description="Beginning of sentence token ID") + eos_id: int = Field(default=2, description="End of sentence token ID") + pad_id: int = Field(default=3, description="Padding token ID") + + # Custom special tokens - add custom tokens like , , , , , , , + special_tokens: Optional[dict[str, int]] = Field( + default=None, + description="Custom special tokens mapping: {token: id}. Example: {'': 4, '': 5, '': 6, '': 7}" + ) + + # Data sampling + max_samples: Optional[int] = Field( + default=None, + description="Limit training to first N samples from JSONL (useful for quick testing)" + ) + + # Tokenizer metadata + tokenizer_name: Optional[str] = Field( + default=None, + description="Optional name for the tokenizer" + ) + + +# ============================================================================ +# Training Config +# ============================================================================ + + +class OptimizerConfig(BaseConfig): + """Optimizer configuration.""" + + optimizer_type: OptimizerEnum = Field(default=OptimizerEnum.ADAMW, description="Optimizer type") + learning_rate: float = Field(default=1e-4, description="Peak learning rate (for Muon 2D weights)") + adamw_lr: Optional[float] = Field( + default=None, + description="Learning rate for AdamW (1D parameters). If None, defaults to learning_rate / 10. Used in hybrid_muon_adamw optimizer." + ) + weight_decay: float = Field(default=1e-2, description="Weight decay (L2 regularization)") + betas: tuple[float, float] = Field(default=(0.9, 0.999), description="Adam betas") + eps: float = Field(default=1e-8, description="Optimizer epsilon") + + @validator('adamw_lr', always=True) + def set_default_adamw_lr(cls, v, values): + """Set default adamw_lr as 1/10 of learning_rate if not specified.""" + if v is None and 'learning_rate' in values: + return values['learning_rate'] / 10 + return v + + +class SchedulerConfig(BaseConfig): + """Learning rate scheduler configuration.""" + + scheduler_type: SchedulerEnum = Field(default=SchedulerEnum.LINEAR_WARMUP, description="Scheduler type") + warmup_steps: int = Field(default=0, description="Number of warmup steps (takes precedence over warmup_ratio)") + warmup_ratio: float = Field(default=0.1, description="Warmup as fraction of total steps (used if warmup_steps=0)") + + # Cosine scheduler specific + num_cycles: float = Field(default=0.5, description="Number of cycles for cosine schedule") + last_epoch: int = Field(default=-1, description="Last epoch for scheduler") + + # TaoNet 3-phase scheduler (warmup -> steady -> cosine decay) + steady_ratio: float = Field( + default=0.0, + description="Fraction of training steps at peak LR before cosine decay (0.0 = no steady phase). Only for cosineWarmup." + ) + min_lr_ratio: float = Field( + default=0.0, + description="Minimum LR as fraction of peak LR at end of training (0.0 = decay to 0). Only for cosineWarmup." + ) + + @validator('warmup_ratio') + def validate_warmup_ratio(cls, v): + """Validate warmup ratio is between 0 and 1.""" + if not 0 <= v <= 1: + raise ValueError("warmup_ratio must be between 0 and 1") + return v + + @validator('steady_ratio') + def validate_steady_ratio(cls, v): + """Validate steady ratio is between 0 and 1.""" + if not 0 <= v <= 1: + raise ValueError("steady_ratio must be between 0 and 1") + return v + + @validator('min_lr_ratio') + def validate_min_lr_ratio(cls, v): + """Validate min_lr_ratio is between 0 and 1.""" + if not 0 <= v <= 1: + raise ValueError("min_lr_ratio must be between 0 and 1") + return v + + @validator('warmup_steps') + def validate_warmup_steps(cls, v): + """Validate warmup steps is non-negative.""" + if v < 0: + raise ValueError("warmup_steps must be non-negative") + return v + + +class TrainingConfig(BaseConfig): + """Base training configuration shared across all modes.""" + + # Data and model + model: ModelConfig = Field(default_factory=ModelConfig, description="Model configuration") + dataset: DatasetConfig = Field(description="Dataset configuration") + + # Training hyperparameters + batch_size: int = Field(default=32, description="Batch size per device") + num_epochs: int = Field(default=3, description="Number of training epochs") + max_steps: Optional[int] = Field( + default=None, + description="Maximum steps (overrides num_epochs if set)" + ) + gradient_accumulation_steps: int = Field( + default=1, + description="Gradient accumulation steps" + ) + max_grad_norm: float = Field(default=1.0, description="Gradient clipping max norm") + + # Optimizer + optimizer: OptimizerConfig = Field( + default_factory=OptimizerConfig, + description="Optimizer configuration" + ) + + # Scheduler + scheduler: SchedulerConfig = Field( + default_factory=SchedulerConfig, + description="Learning rate scheduler configuration" + ) + + # Data type and device + dtype: DataTypeEnum = Field( + default=DataTypeEnum.BFLOAT16, + description="Training data type" + ) + device: str = Field(default="cuda", description="Device to train on (cuda, cpu)") + seed: int = Field(default=42, description="Random seed") + + # Checkpointing + checkpoint_dir: str = Field(default="checkpoints", description="Directory to save checkpoints") + checkpoint_path: Optional[str] = Field( + default=None, + description="Path to load pretrained checkpoint (for SFT/RL). If provided, loads weights before training starts." + ) + save_every_steps: int = Field(default=500, description="Save checkpoint every N steps") + keep_last_n_checkpoints: int = Field(default=3, description="Keep only last N checkpoints") + save_best_model: bool = Field(default=True, description="Save best model based on validation loss") + + # Validation + eval_every_steps: int = Field(default=500, description="Evaluate every N steps") + eval_samples: int = Field(default=1000, description="Number of validation samples") + + # Logging + log_every_steps: int = Field(default=10, description="Log metrics every N steps") + aim_repo: str = Field(default=".aim", description="AimStack repository path") + + # Misc + num_workers: int = Field(default=0, description="Number of DataLoader workers") + pin_memory: bool = Field(default=True, description="Pin memory for DataLoader") + use_compile: bool = Field(default=False, description="Use torch.compile (experimental)") + + # Mode + mode: TrainingModeEnum = Field(default=TrainingModeEnum.PRETRAIN, description="Training mode") + + +# ============================================================================ +# Stage-Specific Configs +# ============================================================================ + + +class PretrainConfig(TrainingConfig): + """Configuration for pretraining.""" + + mode: Literal[TrainingModeEnum.PRETRAIN] = TrainingModeEnum.PRETRAIN + + # Pretraining-specific + sequence_length: int = Field(default=1024, description="Sequence length for pretraining") + + +class SFTConfig(TrainingConfig): + """Configuration for supervised fine-tuning.""" + + mode: Literal[TrainingModeEnum.SFT] = TrainingModeEnum.SFT + + # SFT-specific + response_loss_only: bool = Field( + default=True, + description="Only compute loss on response/assistant tokens (not instruction/user tokens). Uses -100 label masking." + ) + + # Multi-turn conversation role tokens + user_token: str = Field( + default="", + description="Special token representing user/instruction role in conversations" + ) + assistant_token: str = Field( + default="", + description="Special token representing assistant/response role in conversations" + ) + + +class RLConfig(TrainingConfig): + """Configuration for reinforcement learning training.""" + + mode: Literal[TrainingModeEnum.RL] = TrainingModeEnum.RL + + # RL-specific + rl_method: RLMethodEnum = Field( + default=RLMethodEnum.PPO, + description="RL training method (PPO or DPO)" + ) + + # Reward model + reward_model_path: str = Field(description="Path to trained reward model checkpoint") + + # PPO-specific + ppo_epochs: int = Field(default=4, description="PPO inner epochs") + ppo_clip_ratio: float = Field(default=0.2, description="PPO clipping ratio") + entropy_coeff: float = Field(default=0.01, description="Entropy bonus coefficient") + value_loss_coeff: float = Field(default=1.0, description="Value function loss coefficient") + + # DPO-specific (Direct Preference Optimization) + dpo_beta: float = Field(default=0.1, description="DPO inverse temperature (beta)") + + # Prompt distribution + prompt_dataset: Optional[DatasetConfig] = Field( + default=None, + description="Separate dataset for prompts (if different from main dataset)" + ) + generation_max_length: int = Field( + default=256, + description="Maximum length for generated responses during RL" + ) + + +# ============================================================================ +# Factory function +# ============================================================================ + + +def load_config(path: str | Path, mode: TrainingModeEnum | str) -> TrainingConfig: + """Load config file and return appropriate config class.""" + if isinstance(mode, str): + mode = TrainingModeEnum(mode) + + config_map = { + TrainingModeEnum.PRETRAIN: PretrainConfig, + TrainingModeEnum.SFT: SFTConfig, + TrainingModeEnum.RL: RLConfig, + } + + config_class = config_map[mode] + + path = Path(path) + if path.suffix == '.yaml' or path.suffix == '.yml': + return config_class.load_yaml(path) + elif path.suffix == '.json': + return config_class.load_json(path) + else: + raise ValueError(f"Unsupported config file format: {path.suffix}") + + +def load_tokenizer_config(path: str | Path) -> TokenizerConfig: + """Load tokenizer config from YAML or JSON file.""" + path = Path(path) + if path.suffix == '.yaml' or path.suffix == '.yml': + return TokenizerConfig.load_yaml(path) + elif path.suffix == '.json': + return TokenizerConfig.load_json(path) + else: + raise ValueError(f"Unsupported config file format: {path.suffix}") diff --git a/code/TaoTrain/tests/__init__.py b/code/TaoTrain/tests/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..cf1c0597d152c932b0ea85bc2a39a039611e11ba --- /dev/null +++ b/code/TaoTrain/tests/__init__.py @@ -0,0 +1 @@ +"""Tests for TaoTrain.""" diff --git a/code/TaoTrain/tests/test_dataset.py b/code/TaoTrain/tests/test_dataset.py new file mode 100644 index 0000000000000000000000000000000000000000..5b701ef409b03e953b47af633aa9281bdf95f29a --- /dev/null +++ b/code/TaoTrain/tests/test_dataset.py @@ -0,0 +1,571 @@ +""" +Test script to inspect dataset loading pipeline. + +Usage: + python test_dataset.py config/pretrain.yaml + python test_dataset.py config/sft.yaml --num-samples 10 + python test_dataset.py config/sft.yaml --sft --num-samples 5 # Show SFT-specific info +""" + +import sys +import argparse +from pathlib import Path +from typing import Optional, Dict +import torch +from tqdm import tqdm + +# Add src to path for imports +sys.path.insert(0, str(Path(__file__).parent.parent / "src")) + +from taoTrain.config import load_config, TrainingModeEnum, PretrainConfig +from taoTrain.core import create_datasets +from taoTrain.data import TokenizationQueue, AsyncBatchIterator +from taoTrain.data import BaseJSONLDataset, SFTJSONLDataset, parse_sft_record +from taoTrain.utils import set_seed, get_device + + +def print_separator(title: str = "", char: str = "=", width: int = 80): + """Print a formatted separator line.""" + if title: + print(f"\n{char} {title} {char * (width - len(title) - 3)}") + else: + print(f"\n{char * width}") + + +def format_tensor_info(tensor: torch.Tensor) -> str: + """Format tensor information for display.""" + return f"shape={tuple(tensor.shape)}, dtype={tensor.dtype}, device={tensor.device}" + + +def get_special_token_ids(tokenizer) -> Dict[str, Optional[int]]: + """ + Extract special token IDs from tokenizer. + + Returns dict with keys: bos, eos, pad, unk + """ + special_tokens = { + "bos": None, + "eos": None, + "pad": None, + "unk": None, + } + + if tokenizer is None: + return special_tokens + + # Try different ways to access special token IDs based on tokenizer type + try: + # For SentencePieceTokenizerWrapper + if hasattr(tokenizer, 'bos_id'): + special_tokens["bos"] = tokenizer.bos_id() + if hasattr(tokenizer, 'eos_id'): + special_tokens["eos"] = tokenizer.eos_id() + if hasattr(tokenizer, 'pad_id'): + special_tokens["pad"] = tokenizer.pad_id() + if hasattr(tokenizer, 'unk_id'): + special_tokens["unk"] = tokenizer.unk_id() + + # For HuggingFace tokenizers + if hasattr(tokenizer, 'bos_token_id'): + special_tokens["bos"] = tokenizer.bos_token_id + if hasattr(tokenizer, 'eos_token_id'): + special_tokens["eos"] = tokenizer.eos_token_id + if hasattr(tokenizer, 'pad_token_id'): + special_tokens["pad"] = tokenizer.pad_token_id + if hasattr(tokenizer, 'unk_token_id'): + special_tokens["unk"] = tokenizer.unk_token_id + except Exception as e: + pass # If extraction fails, keep defaults + + return special_tokens + + +def count_special_tokens(token_ids: torch.Tensor, special_token_ids: Dict[str, Optional[int]]) -> Dict[str, int]: + """ + Count occurrences of special tokens in token IDs. + + Args: + token_ids: 1D tensor of token IDs + special_token_ids: Dict mapping special token names to IDs + + Returns: + Dict with counts of each special token + """ + counts = {} + + # Convert to CPU numpy for efficient counting + if isinstance(token_ids, torch.Tensor): + ids_numpy = token_ids.cpu().numpy() + else: + ids_numpy = token_ids + + for token_name, token_id in special_token_ids.items(): + if token_id is not None: + count = (ids_numpy == token_id).sum() + counts[token_name] = int(count) + else: + counts[token_name] = 0 + + return counts + + +def print_sample(sample_idx: int, sample: Dict[str, torch.Tensor], tokenizer=None, + special_token_ids: Optional[Dict[str, Optional[int]]] = None, max_display: int = 20): + """Print a single sample with formatted information.""" + print(f"\n Sample {sample_idx}:") + + # Input IDs + if "input_ids" in sample: + input_ids = sample["input_ids"] + print(f" input_ids: {format_tensor_info(input_ids)}") + print(f" Values: {input_ids[:max_display].tolist()}{'...' if len(input_ids) > max_display else ''}") + + + labels = sample["labels"] + print(f" labels: {format_tensor_info(labels)}") + print(f" Values: {labels[:max_display].tolist()}{'...' if len(labels) > max_display else ''}") + + # Count special tokens + if special_token_ids is not None: + special_counts = count_special_tokens(input_ids, special_token_ids) + special_summary = ", ".join([f"{name}={count}" for name, count in special_counts.items()]) + print(f" Special tokens: {special_summary}") + + # Try to decode if tokenizer available + if tokenizer is not None: + try: + decoded = tokenizer.decode(input_ids.tolist()[:max_display], skip_special_tokens=False) + preview = decoded.replace('\n', '\\n') + print(f" Decoded: {preview}...") + except Exception as e: + print(f" [Decode error: {e}]") + + # Attention mask + if "attention_mask" in sample: + attention_mask = sample["attention_mask"] + print(f" attention_mask: {format_tensor_info(attention_mask)}") + non_pad_count = attention_mask.sum().item() + print(f" Non-padding tokens: {non_pad_count}/{len(attention_mask)}") + + # Labels + if "labels" in sample: + labels = sample["labels"] + print(f" labels: {format_tensor_info(labels)}") + valid_labels = labels[labels != -100] + print(f" Valid labels (not -100): {len(valid_labels)}/{len(labels)}") + + +def print_sample_sft(sample_idx: int, sample: Dict[str, torch.Tensor], mask: Optional[list] = None, + tokenizer=None, special_token_ids: Optional[Dict[str, Optional[int]]] = None, + max_display: int = 20): + """ + Print a single SFT sample with detailed masking information. + + Shows: + - Which tokens are user input (mask=0, labeled -100) + - Which tokens are assistant output (mask=1, labeled with token id) + - Token decoding and special token information + """ + print(f"\n SFT Sample {sample_idx}:") + + if "input_ids" in sample: + input_ids = sample["input_ids"] + print(f" input_ids: {format_tensor_info(input_ids)}") + + labels = sample["labels"] + print(f" labels: {format_tensor_info(labels)}") + + # Show mask breakdown + if mask is not None: + mask_array = mask + user_count = sum(1 for m in mask_array if m == 0) + assistant_count = sum(1 for m in mask_array if m == 1) + print(f" Mask breakdown:") + print(f" - User input tokens (mask=0, ignored): {user_count}") + print(f" - Assistant output tokens (mask=1, trained): {assistant_count}") + + # Show which regions are which + print(f" Token regions (first {max_display} tokens):") + for i in range(min(max_display, len(input_ids))): + token_id = input_ids[i].item() + label = labels[i].item() + mask_val = mask_array[i] if i < len(mask_array) else 0 + region_type = "USER " if mask_val == 0 else "ASST " + label_str = "IGNORE" if label == -100 else f"{label:5d}" + + # Try to decode token + token_str = "?" + if tokenizer is not None: + try: + token_str = tokenizer.decode([token_id], skip_special_tokens=False).replace('\n', '\\n')[:15] + except: + token_str = f"ID:{token_id}" + + print(f" [{i:3d}] {region_type} | label={label_str} | token={token_str}") + + if len(input_ids) > max_display: + print(f" ... and {len(input_ids) - max_display} more tokens") + else: + # Fallback: just show labels + masked_count = (labels == -100).sum().item() + valid_count = (labels != -100).sum().item() + print(f" Token labels breakdown:") + print(f" - Masked tokens (label=-100): {masked_count}") + print(f" - Training tokens: {valid_count}") + + +def inspect_dataset(config_path: str, num_samples: int = 10, max_display: int = 20, show_sft: bool = False): + """ + Main inspection function. + + Args: + config_path: Path to YAML config file + num_samples: Number of samples to display (batches or individual samples) + max_display: Max tokens to display in preview + show_sft: If True, show SFT-specific masking information (requires SFT dataset) + """ + # ======================================================================== + # Step 1: Load and validate config + # ======================================================================== + print_separator("STEP 1: LOAD CONFIGURATION") + + config_path = Path(config_path) + if not config_path.exists(): + print(f"✗ Config file not found: {config_path}") + sys.exit(1) + + print(f"✓ Loading config from: {config_path}") + + # Try to load config - auto-detect mode or use default + try: + # Try to infer mode from filename or use default + if "pretrain" in str(config_path).lower(): + mode = TrainingModeEnum.PRETRAIN + elif "sft" in str(config_path).lower(): + mode = TrainingModeEnum.SFT + elif "rl" in str(config_path).lower() or "dpo" in str(config_path).lower(): + mode = TrainingModeEnum.RL + else: + mode = TrainingModeEnum.PRETRAIN # Default + + config = load_config(config_path, mode) + print(f"✓ Config loaded (mode: {config.mode.value})") + except Exception as e: + print(f"✗ Failed to load config: {e}") + sys.exit(1) + + # Print config summary + print(f"\nConfiguration Summary:") + print(f" - Mode: {config.mode.value}") + print(f" - Model: {config.model.architecture_type.value}") + print(f" - Vocab size: {config.model.vocab_size}") + print(f" - Max seq length: {config.model.max_seq_length}") + print(f" - Batch size: {config.batch_size}") + print(f" - Dataset source: {'Local JSONL' if config.dataset.local else 'HuggingFace'}") + + if config.dataset.local: + print(f" - JSONL path: {config.dataset.jsonl_path}") + print(f" - Tokenizer: {config.dataset.tokenizer_type or 'auto-detect'}") + if config.dataset.tokenizer_path: + print(f" - Tokenizer path: {config.dataset.tokenizer_path}") + print(f" - Samples per chunk: {config.dataset.samples_per_chunk}") + print(f" - Tokenizer threads: {config.dataset.tokenizer_threads}") + else: + print(f" - Dataset name: {config.dataset.dataset_name}") + print(f" - Dataset config: {config.dataset.config or 'default'}") + print(f" - Split: {config.dataset.split}") + + if config.dataset.max_samples: + print(f" - Max samples (limit): {config.dataset.max_samples}") + + # Print SFT-specific config if applicable + if show_sft and hasattr(config, 'response_loss_only'): + print(f"\n SFT Configuration:") + print(f" - Response loss only: {config.response_loss_only}") + user_token = getattr(config, 'user_token', '') + assistant_token = getattr(config, 'assistant_token', '') + print(f" - User token: {user_token}") + print(f" - Assistant token: {assistant_token}") + checkpoint_path = getattr(config, 'checkpoint_path', None) + if checkpoint_path: + print(f" - Checkpoint path: {checkpoint_path}") + + # ======================================================================== + # Step 2: Setup device and random seed + # ======================================================================== + print_separator("STEP 2: SETUP DEVICE AND SEED") + + device = get_device(config.device) + print(f"✓ Device: {device}") + print(f"✓ CUDA available: {torch.cuda.is_available()}") + if torch.cuda.is_available(): + print(f" - GPU: {torch.cuda.get_device_name(0)}") + print(f" - CUDA version: {torch.version.cuda}") + + set_seed(config.seed) + print(f"✓ Random seed set: {config.seed}") + + # ======================================================================== + # Step 3: Create datasets + # ======================================================================== + print_separator("STEP 3: CREATE DATASETS") + + try: + train_dataset, val_dataset = create_datasets(config) + print(f"✓ Train dataset created: {type(train_dataset).__name__}") + if val_dataset: + print(f"✓ Validation dataset created: {type(val_dataset).__name__}") + else: + print(f"✓ No validation dataset (JSONL or not configured)") + except Exception as e: + print(f"✗ Failed to create datasets: {e}") + import traceback + traceback.print_exc() + sys.exit(1) + + print(f" - Train dataset length: {len(train_dataset)}") + + # ======================================================================== + # Step 4: Setup async pipeline (for JSONL datasets) + # ======================================================================== + async_loader = None + tokenizer = None + special_token_ids = None + + if isinstance(train_dataset, BaseJSONLDataset): + print_separator("STEP 4: SETUP ASYNC PIPELINE") + + # Extract components + chunk_manager = train_dataset.chunk_manager + tokenizer = train_dataset.tokenizer + + # Get special token IDs + special_token_ids = get_special_token_ids(tokenizer) + print(f"✓ Special token IDs extracted:") + for token_name, token_id in special_token_ids.items(): + print(f" - {token_name.upper()}: {token_id}") + + print(f"✓ ChunkManager found:") + print(f" - Total chunks: {chunk_manager.num_chunks}") + print(f" - Effective lines: {chunk_manager.effective_lines}") + print(f" - File size: {chunk_manager.file_size_bytes / (1024**2):.1f} MB") + print(f" - Chunk line ranges: {chunk_manager.chunk_line_ranges[:3]}..." if len(chunk_manager.chunk_line_ranges) > 3 else f" - Chunk line ranges: {chunk_manager.chunk_line_ranges}") + + print(f"✓ Tokenizer found: {type(tokenizer).__name__}") + + # Create tokenization queue + print(f"✓ Creating TokenizationQueue...") + try: + tokenization_queue = TokenizationQueue( + chunk_manager=chunk_manager, + tokenizer=tokenizer, + config=config, + max_queue_size=4, + shuffle_chunks=True, + num_threads=config.dataset.tokenizer_threads, + ) + print(f" - Max queue size: 4") + print(f" - Tokenizer threads: {config.dataset.tokenizer_threads}") + print(f" - Total items: {tokenization_queue.total_items}") + except Exception as e: + print(f"✗ Failed to create TokenizationQueue: {e}") + import traceback + traceback.print_exc() + sys.exit(1) + + # Create async batch iterator + print(f"✓ Creating AsyncBatchIterator...") + try: + async_loader = AsyncBatchIterator( + tokenization_queue=tokenization_queue, + batch_size=config.batch_size, + device=device, + drop_last=True, + gradient_accumulation_steps=config.gradient_accumulation_steps, + ) + print(f" - Batch size: {config.batch_size}") + print(f" - Device: {device}") + print(f" - Gradient accumulation: {config.gradient_accumulation_steps}") + except Exception as e: + print(f"✗ Failed to create AsyncBatchIterator: {e}") + import traceback + traceback.print_exc() + sys.exit(1) + else: + print_separator("STEP 4: USING STANDARD DATALOADER") + + from taoTrain.data.loaders import get_dataloader + + tokenizer = getattr(train_dataset, "tokenizer", None) + + # Get special token IDs + special_token_ids = get_special_token_ids(tokenizer) + if tokenizer is not None: + print(f"✓ Special token IDs extracted:") + for token_name, token_id in special_token_ids.items(): + print(f" - {token_name.upper()}: {token_id}") + + print(f"✓ HuggingFace dataset detected") + print(f"✓ Will use standard DataLoader (batch_size={config.batch_size})") + + # Create standard dataloader + try: + train_loader = get_dataloader( + train_dataset, + config, + shuffle=False, + drop_last=False, + ) + async_loader = train_loader + print(f"✓ DataLoader created") + except Exception as e: + print(f"✗ Failed to create DataLoader: {e}") + import traceback + traceback.print_exc() + sys.exit(1) + + # ======================================================================== + # Step 5: Fetch and display samples + # ======================================================================== + print_separator(f"STEP 5: FETCH FIRST {num_samples} BATCHES") + + if async_loader is None: + print(f"✗ No data loader available") + sys.exit(1) + + total_samples = 0 + total_tokens = 0 + batch_idx = -1 # Initialize to track if any batches were processed + cumulative_special_counts = {"bos": 0, "eos": 0, "pad": 0, "unk": 0} + + try: + for batch_idx, batch in enumerate(tqdm(async_loader, total=num_samples, desc="Fetching batches")): + if batch_idx >= num_samples: + break + + print_separator(f"BATCH {batch_idx}", char="-", width=60) + print(f"Batch keys: {batch.keys()}") + + # Print batch shapes + for key, tensor in batch.items(): + print(f" {key}: {format_tensor_info(tensor)}") + + # Count tokens and special tokens + if "input_ids" in batch: + batch_token_count = batch["input_ids"].numel() + total_tokens += batch_token_count + print(f" Total tokens in batch: {batch_token_count}") + + # Count special tokens in entire batch + if special_token_ids is not None: + batch_input_ids = batch["input_ids"].view(-1) # Flatten batch + batch_special_counts = count_special_tokens(batch_input_ids, special_token_ids) + special_str = ", ".join([f"{name}={count}" for name, count in batch_special_counts.items()]) + print(f" Batch special tokens: {special_str}") + # Accumulate counts + for token_name, count in batch_special_counts.items(): + cumulative_special_counts[token_name] += count + + # Print individual samples in batch + batch_size = next(iter(batch.values())).shape[0] + total_samples += batch_size + + print(f"\nSamples in batch (showing first 3 of {batch_size}):") + for sample_idx in range(min(3, batch_size)): + sample = {key: tensor[sample_idx] for key, tensor in batch.items()} + + # For SFT datasets, try to get mask info + mask = None + if show_sft and isinstance(train_dataset, SFTJSONLDataset): + try: + # Access the mask from the dataset's current chunk + if (hasattr(train_dataset, '_current_chunk_data') and + train_dataset._current_chunk_data is not None and + "mask" in train_dataset._current_chunk_data): + + # We need to map from batch sample index back to dataset index + # For simplicity, access the local chunk index + chunk_idx = batch_idx * batch_size + sample_idx + if chunk_idx < len(train_dataset._current_chunk_data["mask"]): + mask = train_dataset._current_chunk_data["mask"][sample_idx] + except Exception as e: + print(f" [Could not access mask: {e}]") + + # Use SFT-specific print function + print_sample_sft(batch_idx * batch_size + sample_idx, sample, mask, tokenizer, special_token_ids, max_display) + else: + # Use regular print function + print_sample(batch_idx * batch_size + sample_idx, sample, tokenizer, special_token_ids, max_display) + + if batch_size > 3: + print(f" ... and {batch_size - 3} more samples") + + except Exception as e: + print(f"✗ Error during batch fetching: {e}") + import traceback + traceback.print_exc() + sys.exit(1) + + # ======================================================================== + # Summary Statistics + # ======================================================================== + print_separator("SUMMARY STATISTICS") + + print(f"Total batches fetched: {min(batch_idx + 1, num_samples)}") + print(f"Total samples: {total_samples}") + print(f"Total tokens: {total_tokens}") + if total_samples > 0: + print(f"Average tokens per sample: {total_tokens / total_samples:.1f}") + + # Print special token summary + if special_token_ids is not None: + print(f"\nSpecial token counts across all batches:") + for token_name, token_id in special_token_ids.items(): + total_count = cumulative_special_counts[token_name] + pct = (total_count / total_tokens * 100) if total_tokens > 0 else 0 + print(f" - {token_name.upper()}: {total_count} tokens ({pct:.2f}%)") + + print_separator() + print("✓ Inspection complete!") + + +def main(): + """Main entry point with argument parsing.""" + parser = argparse.ArgumentParser( + description="Test dataset loading pipeline - inspect data shapes, tokenization, and samples" + ) + parser.add_argument( + "config_path", + type=str, + help="Path to YAML/JSON config file (e.g., config/pretrain.yaml)" + ) + parser.add_argument( + "--num-samples", + type=int, + default=10, + help="Number of batches to display (default: 10)" + ) + parser.add_argument( + "--max-display", + type=int, + default=20, + help="Maximum tokens to display in preview (default: 20)" + ) + parser.add_argument( + "--sft", + action="store_true", + help="If set, show SFT-specific masking information (user vs assistant tokens)" + ) + + args = parser.parse_args() + + inspect_dataset( + args.config_path, + num_samples=args.num_samples, + max_display=args.max_display, + show_sft=args.sft + ) + + +if __name__ == "__main__": + main() diff --git a/code/TaoTrain/tests/test_sft_masking.py b/code/TaoTrain/tests/test_sft_masking.py new file mode 100644 index 0000000000000000000000000000000000000000..04d8d0db20b9f31be93faa6b316f416af9a32f70 --- /dev/null +++ b/code/TaoTrain/tests/test_sft_masking.py @@ -0,0 +1,70 @@ +import torch + +from taoTrain.data.async_loader import AsyncBatchIterator +from taoTrain.data.sft_jsonl import SFTJSONLDataset +from taoTrain.data.sft_utils import build_response_only_next_token_labels + + +def test_response_only_labels_mask_target_token_not_input_token(): + input_ids = [10, 20, 30, 40, 2, 0] + mask = [0, 0, 1, 1, 0, 0] + + labels = build_response_only_next_token_labels(input_ids, mask) + + assert labels == [-100, 30, 40, -100, -100, -100] + + +def test_sft_dataset_direct_path_matches_response_only_helper(): + dataset = SFTJSONLDataset.__new__(SFTJSONLDataset) + dataset.chunk_manager = None + dataset._current_chunk_data = { + "input_ids": [[10, 20, 30, 40, 2, 0]], + "attention_mask": [[1, 1, 1, 1, 1, 0]], + "mask": [[0, 0, 1, 1, 0, 0]], + } + + sample = dataset[0] + + assert torch.equal(sample["labels"], torch.tensor([-100, 30, 40, -100, -100, -100])) + + +class _OneChunkQueue: + def __init__(self): + self._chunk = { + "input_ids": [[10, 20, 30, 40, 2, 0]], + "attention_mask": [[1, 1, 1, 1, 1, 0]], + "mask": [[0, 0, 1, 1, 0, 0]], + } + self._returned = False + self._next_chunk_idx = 0 + self._chunk_order = [0] + self._threads = [object()] + + def get_next_chunk(self, timeout=None): + if self._returned: + return None + self._returned = True + return self._chunk + + @property + def is_exhausted(self): + return self._returned + + def shutdown(self, wait=True): + return None + + def __len__(self): + return 1 + + +def test_async_sft_loader_matches_direct_dataset_labels(): + iterator = AsyncBatchIterator( + tokenization_queue=_OneChunkQueue(), + batch_size=1, + device=torch.device("cpu"), + drop_last=True, + ) + + batch = next(iter(iterator)) + + assert torch.equal(batch["labels"], torch.tensor([[-100, 30, 40, -100, -100, -100]])) diff --git a/code/TaoTrain/tests/test_taonet_ssm.py b/code/TaoTrain/tests/test_taonet_ssm.py new file mode 100644 index 0000000000000000000000000000000000000000..e25e5ffb5e0663e3236ba69a874f63c79d999e56 --- /dev/null +++ b/code/TaoTrain/tests/test_taonet_ssm.py @@ -0,0 +1,516 @@ +import pytest +import torch +from unittest.mock import patch + +from taoTrain.config import ModelConfig +from taoTrain.models import get_model + + +pytest.importorskip("gamma_space_model") + + +def test_taonet_ssm_forward_loss_shape(): + config = ModelConfig( + architecture_type="taonet_ssm", + vocab_size=128, + hidden_dim=32, + num_layers=2, + num_heads=4, + d_latent_kv=24, + hidden_dim_ff=64, + max_seq_length=32, + dropout=0.0, + ssm_hidden_dim=16, + ssm_kernel_mode="conv", + ssm_kernel_threshold=1, + ) + model = get_model(config) + input_ids = torch.randint(0, config.vocab_size, (3, 17)) + labels = torch.randint(0, config.vocab_size, (3, 17)) + attention_mask = torch.ones_like(input_ids) + + outputs = model(input_ids=input_ids, attention_mask=attention_mask, labels=labels) + + assert outputs["logits"].shape == (3, 17, config.vocab_size) + assert outputs["loss"].ndim == 0 + assert torch.isfinite(outputs["loss"]) + + +def test_taonet_ssm_keeps_conv_path_available_by_default(): + config = ModelConfig( + architecture_type="taonet_ssm", + vocab_size=64, + hidden_dim=16, + num_layers=1, + num_heads=4, + d_latent_kv=12, + hidden_dim_ff=32, + max_seq_length=16, + dropout=0.0, + ssm_hidden_dim=8, + ssm_kernel_mode="conv", + ssm_kernel_threshold=1, + ) + model = get_model(config) + input_ids = torch.randint(0, config.vocab_size, (2, 9)) + attention_mask = torch.ones_like(input_ids) + ssm = model.blocks[0].mixer.ssm + + with patch.object(ssm, "forward", wraps=ssm.forward) as ssm_forward: + model(input_ids=input_ids, attention_mask=attention_mask) + + assert ssm_forward.call_args.kwargs["mask"] is None + + +def test_taonet_ssm_dplr_forward_loss_shape(): + config = ModelConfig( + architecture_type="taonet_ssm", + vocab_size=128, + hidden_dim=32, + num_layers=2, + num_heads=4, + d_latent_kv=24, + hidden_dim_ff=64, + max_seq_length=32, + dropout=0.0, + ssm_core="dplr", + ssm_hidden_dim=16, + ssm_mixer_dim=20, + ssm_rank=1, + ssm_kernel_mode="conv", + ssm_kernel_threshold=1, + ) + model = get_model(config) + input_ids = torch.randint(0, config.vocab_size, (3, 17)) + labels = torch.randint(0, config.vocab_size, (3, 17)) + + outputs = model(input_ids=input_ids, labels=labels) + + assert outputs["logits"].shape == (3, 17, config.vocab_size) + assert outputs["loss"].ndim == 0 + assert torch.isfinite(outputs["loss"]) + + +def test_taonet_ssm_dplr_can_disable_finite_tail_correction(): + config = ModelConfig( + architecture_type="taonet_ssm", + vocab_size=128, + hidden_dim=32, + num_layers=1, + num_heads=4, + d_latent_kv=24, + hidden_dim_ff=64, + max_seq_length=32, + dropout=0.0, + ssm_core="dplr", + ssm_hidden_dim=16, + ssm_mixer_dim=20, + ssm_rank=1, + ssm_kernel_mode="conv", + ssm_kernel_threshold=1, + ssm_finite_tail_correction=False, + ) + model = get_model(config) + input_ids = torch.randint(0, config.vocab_size, (3, 17)) + labels = torch.randint(0, config.vocab_size, (3, 17)) + + outputs = model(input_ids=input_ids, labels=labels) + + assert torch.isfinite(outputs["loss"]) + assert model.blocks[0].mixer.ssm.finite_tail_correction is False + + +def test_taonet_ssm_supports_channel_gates(): + config = ModelConfig( + architecture_type="taonet_ssm", + vocab_size=128, + hidden_dim=32, + num_layers=1, + num_heads=4, + d_latent_kv=24, + hidden_dim_ff=64, + max_seq_length=32, + dropout=0.0, + ssm_core="dplr", + ssm_hidden_dim=16, + ssm_mixer_dim=20, + ssm_rank=1, + ssm_kernel_mode="conv", + ssm_kernel_threshold=1, + ssm_gate_type="channel", + ) + model = get_model(config) + input_ids = torch.randint(0, config.vocab_size, (3, 17)) + labels = torch.randint(0, config.vocab_size, (3, 17)) + + outputs = model(input_ids=input_ids, labels=labels) + + assert torch.isfinite(outputs["loss"]) + assert model.blocks[0].mixer.input_gate.weight.shape == (config.hidden_dim,) + assert model.blocks[0].mixer.output_gate.weight.shape == (config.hidden_dim,) + + +def test_taonet_ssm_supports_multiple_ssm_lanes(): + config = ModelConfig( + architecture_type="taonet_ssm", + vocab_size=128, + hidden_dim=32, + num_layers=1, + num_heads=4, + d_latent_kv=24, + hidden_dim_ff=64, + max_seq_length=32, + dropout=0.0, + ssm_core="dplr", + ssm_hidden_dim=16, + ssm_mixer_dim=20, + ssm_rank=1, + ssm_kernel_mode="conv", + ssm_kernel_threshold=1, + ssm_num_lanes=2, + ssm_lane_combine="channel", + ssm_gate_type="channel", + ) + model = get_model(config) + input_ids = torch.randint(0, config.vocab_size, (3, 17)) + labels = torch.randint(0, config.vocab_size, (3, 17)) + + outputs = model(input_ids=input_ids, labels=labels) + + mixer = model.blocks[0].mixer + assert torch.isfinite(outputs["loss"]) + assert len(mixer.ssm_lanes) == 2 + assert mixer.ssm is mixer.ssm_lanes[0] + assert mixer.lane_weights.shape == (2, config.ssm_mixer_dim) + + +def test_taonet_ssm_supports_split_ssm_lanes(): + config = ModelConfig( + architecture_type="taonet_ssm", + vocab_size=128, + hidden_dim=32, + num_layers=1, + num_heads=4, + d_latent_kv=24, + hidden_dim_ff=64, + max_seq_length=32, + dropout=0.0, + ssm_core="dplr", + ssm_hidden_dim=16, + ssm_mixer_dim=20, + ssm_rank=1, + ssm_kernel_mode="conv", + ssm_kernel_threshold=1, + ssm_num_lanes=2, + ssm_lane_mode="split", + ssm_lane_combine="channel", + ssm_gate_type="channel", + ) + model = get_model(config) + input_ids = torch.randint(0, config.vocab_size, (3, 17)) + labels = torch.randint(0, config.vocab_size, (3, 17)) + + outputs = model(input_ids=input_ids, labels=labels) + + mixer = model.blocks[0].mixer + assert torch.isfinite(outputs["loss"]) + assert mixer.ssm_lane_dim == 10 + assert len(mixer.ssm_lanes) == 2 + assert mixer.lane_weights is None + + +def test_taonet_ssm_supports_hadamard_split_mix(): + config = ModelConfig( + architecture_type="taonet_ssm", + vocab_size=128, + hidden_dim=32, + num_layers=1, + num_heads=4, + d_latent_kv=24, + hidden_dim_ff=64, + max_seq_length=32, + dropout=0.0, + ssm_core="dplr", + ssm_hidden_dim=16, + ssm_mixer_dim=20, + ssm_rank=1, + ssm_kernel_mode="conv", + ssm_kernel_threshold=1, + ssm_num_lanes=2, + ssm_lane_mode="split", + ssm_split_mix="hadamard", + ssm_lane_combine="channel", + ssm_gate_type="channel", + ) + model = get_model(config) + input_ids = torch.randint(0, config.vocab_size, (3, 17)) + labels = torch.randint(0, config.vocab_size, (3, 17)) + + outputs = model(input_ids=input_ids, labels=labels) + + mixer = model.blocks[0].mixer + assert torch.isfinite(outputs["loss"]) + assert mixer.ssm_split_mix == "hadamard" + assert mixer.ssm_lane_dim == 10 + + +def test_taonet_hybrid_forward_loss_shape_and_block_mix(): + config = ModelConfig( + architecture_type="taonet_hybrid", + vocab_size=128, + hidden_dim=32, + num_layers=4, + num_heads=4, + d_latent_kv=24, + hidden_dim_ff=64, + max_seq_length=32, + dropout=0.0, + ssm_core="dplr", + ssm_hidden_dim=16, + ssm_mixer_dim=20, + ssm_rank=1, + ssm_kernel_mode="conv", + ssm_kernel_threshold=1, + ssm_finite_tail_correction=False, + ssm_local_shift=True, + ) + model = get_model(config) + input_ids = torch.randint(0, config.vocab_size, (3, 17)) + labels = torch.randint(0, config.vocab_size, (3, 17)) + attention_mask = torch.ones_like(input_ids) + + outputs = model(input_ids=input_ids, attention_mask=attention_mask, labels=labels) + + assert outputs["logits"].shape == (3, 17, config.vocab_size) + assert torch.isfinite(outputs["loss"]) + assert model.block_kinds == ["attention", "ssm", "attention", "ssm"] + assert model.blocks[1].mixer.ssm.finite_tail_correction is False + + +def test_taonet_hybrid_supports_ssm_first_pattern(): + config = ModelConfig( + architecture_type="taonet_hybrid", + vocab_size=128, + hidden_dim=32, + num_layers=4, + num_heads=4, + d_latent_kv=24, + hidden_dim_ff=64, + max_seq_length=32, + dropout=0.0, + ssm_core="dplr", + ssm_hidden_dim=16, + ssm_mixer_dim=20, + ssm_rank=1, + ssm_kernel_mode="conv", + ssm_kernel_threshold=1, + hybrid_pattern="ssm_first", + ) + model = get_model(config) + + assert model.block_kinds == ["ssm", "attention", "ssm", "attention"] + + +def test_taonet_hybrid_supports_explicit_ssm_layers(): + config = ModelConfig( + architecture_type="taonet_hybrid", + vocab_size=128, + hidden_dim=32, + num_layers=4, + num_heads=4, + d_latent_kv=24, + hidden_dim_ff=64, + max_seq_length=32, + dropout=0.0, + ssm_core="dplr", + ssm_hidden_dim=16, + ssm_mixer_dim=20, + ssm_rank=1, + ssm_kernel_mode="conv", + ssm_kernel_threshold=1, + hybrid_pattern="attention_first", + hybrid_ssm_layers="2", + ) + model = get_model(config) + + assert model.block_kinds == ["attention", "attention", "ssm", "attention"] + + +def test_taonet_ssm_local_shift_branch_preserves_shape(): + config = ModelConfig( + architecture_type="taonet_ssm", + vocab_size=128, + hidden_dim=32, + num_layers=1, + num_heads=4, + d_latent_kv=24, + hidden_dim_ff=64, + max_seq_length=32, + dropout=0.0, + ssm_core="dplr", + ssm_hidden_dim=16, + ssm_mixer_dim=20, + ssm_rank=1, + ssm_kernel_mode="conv", + ssm_kernel_threshold=1, + ssm_local_shift=True, + ) + model = get_model(config) + input_ids = torch.randint(0, config.vocab_size, (3, 17)) + labels = torch.randint(0, config.vocab_size, (3, 17)) + + outputs = model(input_ids=input_ids, labels=labels) + + assert outputs["logits"].shape == (3, 17, config.vocab_size) + assert torch.isfinite(outputs["loss"]) + assert model.blocks[0].mixer.local_shift_scale is not None + + +def test_taonet_ssm_branch_rms_norm_and_clip_bound_mixer_output(): + config = ModelConfig( + architecture_type="taonet_ssm", + vocab_size=128, + hidden_dim=32, + num_layers=1, + num_heads=4, + d_latent_kv=24, + hidden_dim_ff=64, + max_seq_length=32, + dropout=0.0, + ssm_core="dplr", + ssm_hidden_dim=16, + ssm_mixer_dim=20, + ssm_rank=1, + ssm_kernel_mode="conv", + ssm_kernel_threshold=1, + ssm_branch_rms_norm=True, + ssm_branch_clip_value=0.05, + ) + model = get_model(config) + x = torch.randn(3, 17, config.hidden_dim) * 1000.0 + + mixer_out = model.blocks[0].mixer(x) + + assert torch.isfinite(mixer_out).all() + assert mixer_out.abs().max() <= config.ssm_branch_clip_value + 1e-6 + + +def test_taonet_hybrid_block_residual_rms_norm_bounds_block_output_rms(): + config = ModelConfig( + architecture_type="taonet_hybrid", + vocab_size=128, + hidden_dim=32, + num_layers=2, + num_heads=4, + d_latent_kv=24, + hidden_dim_ff=64, + max_seq_length=32, + dropout=0.0, + ssm_core="dplr", + ssm_hidden_dim=16, + ssm_mixer_dim=20, + ssm_rank=1, + ssm_kernel_mode="conv", + ssm_kernel_threshold=1, + hybrid_pattern="ssm_first", + ssm_branch_rms_norm=True, + ssm_branch_clip_value=0.05, + block_residual_rms_norm=True, + block_residual_rms_target=1.0, + ) + model = get_model(config) + x = torch.randn(3, 17, config.hidden_dim) * 1000.0 + + for block in model.blocks: + x = block(x, attention_mask=None) + rms = x.float().square().mean(dim=-1).sqrt() + assert torch.allclose(rms, torch.ones_like(rms), atol=1e-4, rtol=1e-4) + + +def test_taonet_ssm_block_residual_rms_cap_only_scales_large_residuals(): + config = ModelConfig( + architecture_type="taonet_ssm", + vocab_size=128, + hidden_dim=32, + num_layers=1, + num_heads=4, + d_latent_kv=24, + hidden_dim_ff=64, + max_seq_length=32, + dropout=0.0, + ssm_core="dplr", + ssm_hidden_dim=16, + ssm_mixer_dim=20, + ssm_rank=1, + ssm_kernel_mode="conv", + ssm_kernel_threshold=1, + ssm_branch_rms_norm=True, + block_residual_rms_cap=2.0, + ) + model = get_model(config) + x = torch.randn(3, 17, config.hidden_dim) * 1000.0 + + out = model.blocks[0](x, attention_mask=None) + + rms = out.float().square().mean(dim=-1).sqrt() + assert torch.all(rms <= config.block_residual_rms_cap + 1e-4) + + +def test_taonet_ssm_local_shift_per_channel_branch_preserves_shape(): + config = ModelConfig( + architecture_type="taonet_ssm", + vocab_size=128, + hidden_dim=32, + num_layers=1, + num_heads=4, + d_latent_kv=24, + hidden_dim_ff=64, + max_seq_length=32, + dropout=0.0, + ssm_core="dplr", + ssm_hidden_dim=16, + ssm_mixer_dim=20, + ssm_rank=1, + ssm_kernel_mode="conv", + ssm_kernel_threshold=1, + ssm_local_shift=True, + ssm_local_shift_per_channel=True, + ) + model = get_model(config) + input_ids = torch.randint(0, config.vocab_size, (3, 17)) + labels = torch.randint(0, config.vocab_size, (3, 17)) + + outputs = model(input_ids=input_ids, labels=labels) + + assert outputs["logits"].shape == (3, 17, config.vocab_size) + assert torch.isfinite(outputs["loss"]) + assert model.blocks[0].mixer.local_shift_scale.shape == (config.hidden_dim,) + + +def test_taonet_ssm_dplr_conv_transfer_forward_loss_shape(): + config = ModelConfig( + architecture_type="taonet_ssm", + vocab_size=128, + hidden_dim=32, + num_layers=1, + num_heads=4, + d_latent_kv=24, + hidden_dim_ff=64, + max_seq_length=32, + dropout=0.0, + ssm_core="dplr", + ssm_hidden_dim=16, + ssm_mixer_dim=20, + ssm_rank=1, + ssm_kernel_mode="conv_transfer", + ssm_kernel_threshold=1, + ssm_local_shift=True, + ) + model = get_model(config) + input_ids = torch.randint(0, config.vocab_size, (3, 17)) + labels = torch.randint(0, config.vocab_size, (3, 17)) + + outputs = model(input_ids=input_ids, labels=labels) + + assert outputs["logits"].shape == (3, 17, config.vocab_size) + assert torch.isfinite(outputs["loss"]) diff --git a/code/Taotern_LLM_Experiments/.gitignore b/code/Taotern_LLM_Experiments/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..7d2fa7ce63aa7a6b4dac3b1a955cf6357db96f09 --- /dev/null +++ b/code/Taotern_LLM_Experiments/.gitignore @@ -0,0 +1,11 @@ +# Keep this repo lightweight. +raw/ +outputs-taotrain/ +*.pt +*.pth +*.bin +*.safetensors +*.log +*.tmp +__pycache__/ + diff --git a/code/Taotern_LLM_Experiments/README.md b/code/Taotern_LLM_Experiments/README.md new file mode 100644 index 0000000000000000000000000000000000000000..cb30aa9a1bcc2bd25314e049ae0c818485b4a75f --- /dev/null +++ b/code/Taotern_LLM_Experiments/README.md @@ -0,0 +1,221 @@ +# Taotern LLM Experiments + +This repo is the experiment ledger for building a TaoNet-style LLM whose sequence core is the Taotern SSM instead of attention. It keeps compact, reviewable artifacts: run summaries, metric CSVs, exact RepoBridge configs, and the current conclusion. Source code stays in the source repos. + +## Current Decision + +As of `2026-05-14`, the next expensive chatbot attempt should use the pure SSM branch-only model, not the earlier SSM-first hybrid. + +Selected candidate: + +```text +architecture=taonet_ssm +candidate=pure_ssm_196m_branch_rms_only +params=196,573,128 +hidden_dim=1024 +num_layers=18 +num_heads=8 +hidden_dim_ff=3072 +ssm_core=dplr +ssm_hidden_dim=32 +ssm_mixer_dim=256 +ssm_num_lanes=2 +ssm_lane_mode=split +ssm_split_mix=none +ssm_lane_combine=channel +ssm_gate_type=channel +ssm_local_shift=true +ssm_local_shift_per_channel=true +ssm_branch_rms_norm=true +block_residual_rms_norm=false +finite_tail_correction=false +``` + +The 100M-token branch-only gate completed successfully: + +| Metric | Value | +|---|---:| +| Eval loss | 3.1667 | +| Eval token accuracy | 38.92% | +| Forward+backward throughput | 53.0k tok/s | +| Peak allocated memory | 9.17 GB | +| SFT tiny-overfit | 3.3831 -> 0.0107 | +| Final block RMS | 57.50 | +| Final block max abs | 1605.34 | + +Launch scripts for the next full attempt are implemented in TaoTrain: + +```text +scripts/remote/run_200m_branch_only_chat.sh +scripts/remote/submit_200m_branch_only_chat.sh +``` + +The planned run is `4B` pretrain token positions followed by `50k` corrected response-only SFT steps. See: + +```text +experiments/runs/2026-05-14_branch_only_100m_gate/summary.md +experiments/runs/2026-05-14_200m_branch_only_4b_sft_ready/summary.md +``` + +## Previous Hybrid Failure And Stabilization Trail + +The current SSM-only LLM is built in TaoTrain as `taonet_ssm`. It keeps the TaoNet outer shape and replaces the attention/MLA sequence mixer with a DPLR SSM mixer from `Taotern_SSM`. + +The earlier best LLM candidate was `taonet_hybrid`, which keeps the same TaoNet dimensions but alternates attention and SSM blocks. The selected 200M-class deployment candidate for the first long chat run was `hybrid_ssm_first_199m`, which uses 16 layers: + +```text +SSM -> attention -> SSM -> attention -> ... -> SSM -> attention +``` + +The long run `taotern-200m-hybrid-chat-20260512` on the remote RTX 5090 server completed, but the SFT checkpoint is not yet a good chatbot. RepoBridge Model Chat works, but generation quality is poor and follow-up diagnostics show the issue is in model trainability rather than the GUI. + +```text +/home/student/YouZheng/jobs/taotern/taotern-200m-hybrid-chat-20260512/checkpoints/sft/final_model.pt +``` + +Current diagnosis: the 4B-token pretrain remained high-loss, and the 50k-step SFT stage did not improve fixed SFT response loss. Tiny SFT overfit probes show huge SSM/residual gradients, and activation hooks show the residual stream growing to tens of millions by late layers. The checkpoint should be used as a failure/diagnostic artifact, not as the final deployable chat model. Follow-up code now adds SSM branch RMS normalization, optional SSM branch clamping, block residual RMS normalization, and benchmark gradient telemetry. See: + +```text +experiments/runs/2026-05-13_200m_chat_diagnosis/summary.md +``` + +For the layer-by-layer structure, DPLR equations, matrix shapes, and parameter inventory, see: + +```text +docs/CURRENT_SSM_LLM_ARCHITECTURE.md +``` + +Previous 200M real-token candidate: + +- Architecture: `taonet_hybrid` +- SSM core: DPLR +- Parameter count: `199,480,928` +- Layers: 16 +- SSM layers: `0,2,4,6,8,10,12,14` +- Attention layers: `1,3,5,7,9,11,13,15` +- Hidden dimension: `1024` +- FFN dimension: `3072` +- Mixer projection: `ssm_mixer_dim=256` +- SSM hidden/state dimension: `ssm_hidden_dim=32` +- DPLR rank: `1` +- Kernel mode: `conv` +- Local memory branch: enabled +- Local shift gain: per-channel +- Hybrid pattern: `ssm_first` +- SSM gate type: channel +- SSM lanes: `2` +- Lane mode: split +- Split mix: none +- Lane combine: channel for full lanes; concatenation for split lanes +- Finite-tail correction: disabled for the current best speed/quality point +- Tokenizer: pilot TaoData SentencePiece 8k +- Last 200M training target: TaoData JSONL next-token prediction, seq 512, batch 8, 4B base token positions, then 50k-step SFT + +Superseded stabilized pure-SSM candidate before the branch-only 100M gate: + +- Architecture: `taonet_ssm` +- SSM core: DPLR +- SSM hidden/state dimension: `ssm_hidden_dim=32` +- Mixer projection: `ssm_mixer_dim=128` +- SSM lanes: `2` +- Lane mode: split +- Gate type: channel +- Local memory branch: enabled, per-channel +- Finite-tail correction: disabled for speed +- SSM branch RMS norm: enabled +- SSM branch clamp: `1.0` +- Block residual RMS norm: enabled +- Gradient clipping: `1.0` +- Learning rate: `8e-4` + +Latest stabilized small-token benchmark summary: + +| Run | Best SSM-bearing model | Eval loss | Eval accuracy | Forward+backward tok/s | Notes | +|---|---|---:|---:|---:|---| +| scale-control pattern sweep | hybrid single_ssm_middle | 4.6620 | 0.2188 | 1.005M | Pure SSM h16/m128 also beat attention loss on the 500-step smoke; `ssm_first` hybrid failed badly. | +| stabilized pure-SSM capacity sweep | pure SSM h32/m128 | 4.5311 | 0.2492 | 0.676M | Best pure-SSM accuracy; h32/m256 has fractionally lower loss but worse speed/accuracy. | +| stabilized pure-SSM LR sweep | pure SSM h32/m128 lr8e-4 | 4.5311 | 0.2492 | 0.677M | Higher LR worsens loss; keep lr8e-4. | + +Detailed records: + +```text +experiments/runs/2026-05-13_scale_control_pattern_sweep/summary.md +experiments/runs/2026-05-13_stabilized_ssm_capacity_sweep/summary.md +experiments/runs/2026-05-13_stabilized_ssm_lr_sweep/summary.md +``` + +Latest completed large SentencePiece benchmark on `/home/student/Data/TaoData/pretrain.jsonl`: + +| Batch | Model | Pattern | Lanes/mode | Params | Eval loss | Eval accuracy | Forward+backward tok/s | +|---:|---|---|---|---:|---:|---:|---:| +| 32 | attention TaoNet | - | - | 8.197M | 3.4164 | 0.3619 | 1.367M | +| 32 | SSM TaoNet h16/m128 | - | 1 full | 7.630M | 3.6565 | 0.3229 | 1.151M | +| 32 | SSM TaoNet h16/m128 | - | 2 full | 7.648M | 3.6342 | 0.3255 | 0.887M | +| 32 | SSM TaoNet h16/m128 | - | 2 split | 7.630M | 3.6409 | 0.3249 | 0.935M | +| 32 | hybrid TaoNet | ssm_first | 1 full | 7.913M | 3.3673 | 0.3665 | 1.234M | +| 32 | hybrid TaoNet | ssm_first | 2 full | 7.922M | 3.3368 | 0.3716 | 1.068M | +| 32 | hybrid TaoNet | ssm_first | 2 split Hadamard | 7.913M | 3.3345 | 0.3719 | 1.118M | +| 32 | hybrid TaoNet | single_ssm_middle | 2 split | 8.055M | 3.3808 | 0.3649 | 1.258M | +| 64 | attention TaoNet | - | - | 8.197M | 3.3946 | 0.3592 | 1.447M | +| 64 | SSM TaoNet h16/m128 | - | 1 full | 7.630M | 3.5722 | 0.3331 | 1.230M | +| 64 | SSM TaoNet h16/m128 | - | 2 full | 7.648M | 3.5446 | 0.3355 | 1.020M | +| 64 | SSM TaoNet h16/m128 | - | 2 split | 7.630M | 3.5515 | 0.3345 | 1.152M | +| 64 | hybrid TaoNet | ssm_first | 1 full | 7.913M | 3.2673 | 0.3793 | 1.325M | +| 64 | hybrid TaoNet | ssm_first | 2 full | 7.922M | 3.2411 | 0.3834 | 1.190M | +| 64 | hybrid TaoNet | ssm_first | 2 split | 7.913M | 3.2368 | 0.3835 | 1.271M | +| 64 | hybrid TaoNet | single_ssm_middle | 2 split | 8.055M | 3.2708 | 0.3785 | 1.365M | + +Full per-variant results, including `attention_first`, `single_ssm_middle`, and `single_ssm_late`, are recorded in `experiments/runs/2026-05-10_split_lane_ssm_highscale/summary.md`. + +Pure SSM replacement is not solved yet: in the 8000-step high-scale runs, two SSM lanes improved pure SSM loss and accuracy at both batch sizes, but the pure SSM model still trails attention. Split lanes recover throughput and memory compared with full two-lane duplication, but are slightly weaker for pure SSM quality. A fixed Hadamard add/subtract cross-lane mix was tested and is mixed: it helps the batch-32 hybrid but not pure SSM or the batch-64 best point. Channel gates remain the deployment-friendly default. Exact finite-tail correction was checked earlier and was not better overall, so the approximate path remains the current hybrid default. + +Interpretation: + +- At batch 32, the best Hadamard split-lane `ssm_first` hybrid improves eval loss over attention by about `0.083` and accuracy by about `0.010`, while retaining about `82%` of attention forward+backward throughput. +- At batch 64, the best plain split-lane `ssm_first` hybrid improves eval loss over attention by about `0.154` and accuracy by about `0.024`, while retaining about `88%` of attention forward+backward throughput. +- Pure SSM two-lane improves over pure SSM one-lane, confirming that extra SSM capacity helps quality. +- Split-lane SSM is cheaper than naive lane duplication; fixed Hadamard mixing is too rigid, so the next improvement direction should use a small learnable but ternary-friendly post-split mixer. + +## Important Repos + +| Repo | Role | +|---|---| +| `StarMists/gamma_SSM_S4_enhanced` | SSM model, DPLR implementation, SSM-specific records | +| `lobakkang/TaoTrain` | TaoNet, `taonet_ssm`, token benchmarks | +| `lobakkang/TaoData` | Data extraction/preprocessing | +| `RepoBridge` | Remote execution tool only | +| `StarMists/Taotern_LLM_Experiments` | Compact experiment ledger and current conclusions | + +## Layout + +```text +experiments/ + index.csv # searchable run ledger + README.md # artifact rules and workflow + legacy_repobridge_configs/ # exact pre-ledger RepoBridge configs + resources/ + tokenizers/ # tokenizer configs, not large tokenizer binaries + runs/ + / + manifest.yaml # purpose, commits, status, paths + summary.md # human-readable result + metrics.csv # compact metrics snapshot when available + repobridge.config.json # exact remote run config +docs/ + WORKFLOW.md # how future runs should be recorded + DIRECTORY_NAVIGATION.md # where code/data/run pieces live across repos + CURRENT_SSM_LLM_ARCHITECTURE.md + showcase/ # R&D showcase report, DOCX, and scaling notes +``` + +## Next Action + +The 100M branch-only gate passed. The next full run is ready to launch with the pure SSM branch-only model: + +```text +4B pretrain token positions +50k corrected response-only SFT steps +final deployable checkpoint expected at checkpoints/sft/final_model.pt +``` + +Keep activation diagnostics after pretraining, because the residual RMS still grows across depth even though it is far below the previous failure regime. diff --git a/code/Taotern_LLM_Experiments/docs/CURRENT_SSM_LLM_ARCHITECTURE.md b/code/Taotern_LLM_Experiments/docs/CURRENT_SSM_LLM_ARCHITECTURE.md new file mode 100644 index 0000000000000000000000000000000000000000..5f8682f21371f1236c25f0644da18ab4fe0bb08c --- /dev/null +++ b/code/Taotern_LLM_Experiments/docs/CURRENT_SSM_LLM_ARCHITECTURE.md @@ -0,0 +1,518 @@ +# Current SSM LLM Architecture + +This document explains the current TaoNet-SSM and TaoNet-Hybrid models from the LLM surface down to the DPLR SSM matrices. It describes the SSM implementation and the current best real-token candidate in this experiment ledger. + +## Current Best Candidate + +The current best real-token candidate is now the hybrid TaoNet: + +```text +architecture_type = taonet_hybrid +block order = SSM, attention, SSM, attention +hidden_dim = 256 +num_layers = 4 +num_heads = 4 +hidden_dim_ff = 1024 +ssm_core = dplr +ssm_hidden_dim = 16 +ssm_mixer_dim = 128 +ssm_rank = 1 +ssm_kernel_mode = conv +ssm_local_shift = true +shift gain = per-channel +finite tail = disabled for the current best speed/quality point +SSM gate type = channel +SSM lanes = 2 +lane mode = split +split mix = none for current batch64 best; Hadamard helps only batch32 hybrid +lane combine = concatenation after split lanes +dtype = bf16 +current SSM commit = 76f725f +current TaoTrain commit = 89aa98d +``` + +The current best pure SSM candidate is: + +```text +architecture_type = taonet_ssm +hidden_dim = 256 +num_layers = 4 +num_heads = 4 +hidden_dim_ff = 1024 +ssm_core = dplr +ssm_hidden_dim = 16 +ssm_mixer_dim = 128 +ssm_rank = 1 +ssm_kernel_mode = conv +ssm_local_shift = true +shift gain = per-channel +finite tail = disabled +SSM gate type = channel +SSM lanes = 2 +lane mode = full currently has best pure-SSM quality; split is the faster/lower-memory candidate +split mix = Hadamard tested but not better overall for pure SSM +lane combine = channel for full lanes, concatenation for split lanes +dtype = bf16 +current SSM commit = 76f725f +current TaoTrain commit = 89aa98d +``` + +The attention baseline is `taonet` with the same outer dimensions. The point of the comparison is to keep the LLM scaffold nearly fixed and replace only the sequence-mixing core. The DPLR direct path supports an exact finite-response readout rewrite: + +```text +C @ (response - z^L A^L response) + = C @ response - z^L (C @ A^L) @ response +``` + +This improves forward-only long-context timing but has not improved the training-time forward+backward path enough to become the current benchmark default. The current best benchmark uses the faster approximate finite-tail path. + +The latest large run showed that fully replacing attention with SSM is not the best path at the current scale, but combining attention and SSM is promising. `taonet_hybrid` alternates the original TaoNet attention blocks and the SSM blocks while sharing the same embedding, final norm, output head, model dimension, FFN width, and training script. + +For four layers, the current best hybrid computes: + +```text +x_0 = token_embedding(tokens) +x_1 = SSM_TaoNet_Block_1(x_0) +x_2 = Attention_TaoNet_Block_2(x_1) +x_3 = SSM_TaoNet_Block_3(x_2) +x_4 = Attention_TaoNet_Block_4(x_3) +h = final_layer_norm(x_4) +logits = output_head(h) +``` + +## Top-Level LLM + +The model is an autoregressive next-token language model. + +Given token ids: + +```text +tokens: [batch, seq] +``` + +the model computes: + +```text +x_0 = token_embedding(tokens) # [batch, seq, d_model] +x_0 = dropout(x_0) + +for layer l in 1..L: + x_l = SSM_TaoNet_Block_l(x_{l-1}) + +h = final_layer_norm(x_L) +logits = output_head(h) # [batch, seq, vocab] +loss = cross_entropy(logits[:, t], labels[:, t]) +``` + +In the current pilot: + +```text +vocab = 8192 +d_model = 256 +L = 4 +``` + +The output head is a dense linear projection from `d_model` to the tokenizer vocabulary. + +## Block Structure + +Each SSM TaoNet block preserves the normal Transformer-like residual layout: + +```text +x' = x + dropout(SSM_Mixer(LN_1(x))) +y = x' + dropout(SwiGLU_FFN(LN_2(x'))) +``` + +The feed-forward branch is unchanged from TaoNet-style dense FFN: + +```text +g = W_gate LN_2(x') +v = W_value LN_2(x') +ff = W_out (SiLU(g) * v) +``` + +For current dimensions: + +```text +W_gate : 256 -> 1024 +W_value : 256 -> 1024 +W_out : 1024 -> 256 +``` + +This means most per-block parameters still sit in the dense FFN, not in the small DPLR SSM core. + +## SSM Mixer Structure + +The SSM mixer receives: + +```text +x: [batch, seq, d_model] +``` + +where `d_model = 256`. + +The current mixer path is: + +```text +x_norm = LayerNorm(x) + +if input_gate: + x_gated = x_norm * sigmoid(W_input_gate x_norm + b_input_gate) +else: + x_gated = x_norm + +u = W_in x_gated # [batch, seq, ssm_mixer_dim] + +if ssm_lane_mode == split: + lane_inputs = split(u, ssm_num_lanes, dim=-1) +else: + lane_inputs = [u, ..., u] + +for lane i in 1..ssm_num_lanes: + y_i = DPLR_SSM_i(lane_inputs_i) + +if ssm_lane_mode == split: + if ssm_split_mix == hadamard: + y_ssm = concat(y_1 + y_2, y_1 - y_2) / sqrt(2) + else: + y_ssm = concat_i(y_i) +elif ssm_num_lanes == 1: + y_ssm = y_1 +elif lane_combine == mean: + y_ssm = mean_i(y_i) +elif lane_combine == channel: + y_ssm[:, :, c] = sum_i lane_weight[i, c] * y_i[:, :, c] + +y_ssm = activation(y_ssm) +y_proj = W_out y_ssm # [batch, seq, d_model] + +if output_gate: + y_proj = y_proj * sigmoid(W_output_gate x_norm + b_output_gate) + +y_proj = layer_scale * y_proj + +if local_shift: + y_proj[:, t] += shift_scale * x_norm[:, t-1] + +return dropout(y_proj) +``` + +Current settings: + +```text +d_model = 256 +ssm_mixer_dim = 128 +ssm_num_lanes = 2 for the current best hybrid quality point +ssm_lane_mode = split for the current best hybrid efficiency-quality point +ssm_split_mix = none for the current batch64 best +input_gate = enabled +output_gate = enabled +activation = GELU +layer_scale = learned vector of length 256 +local_shift = enabled +shift_scale = learned vector of length 256 +``` + +The local shift branch is deliberately simple: + +```text +shifted_t = x_norm_{t-1} +output_t += alpha * shifted_t +``` + +where `alpha` is per-channel in the current best setting. This branch was the major quality breakthrough for previous-token memory and also improves real-token modeling. + +The multi-lane branch is the latest SSM-capacity improvement. In full-lane mode, each lane has independent DPLR parameters and sees the same projected input `u`. The channel combine is: + +```text +y_t,c = sum_i w_i,c * y_i,t,c +``` + +with: + +```text +w : [num_lanes, ssm_mixer_dim] +``` + +This combine operation is elementwise across channels, so it is friendly to ternary deployment. + +In split-lane mode, the projected channels are partitioned before the DPLR core: + +```text +u = [u_1, u_2, ..., u_L] +y_i = DPLR_SSM_i(u_i) +y = concat_i(y_i) +``` + +For the current `ssm_mixer_dim=128` and `ssm_num_lanes=2`, each split lane has `64` channels. The high-scale benchmark shows split lanes recover much of the throughput and memory lost by full-lane duplication, and the best hybrid now uses split lanes. Pure SSM still trails attention, so the next planned version should add cheap cross-channel communication after the split-lane SSM output. + +The fixed Hadamard split mix was tested as: + +```text +y = concat(y_1 + y_2, y_1 - y_2) / sqrt(2) +``` + +It adds no learned parameters and is ternary-friendly, but the high-scale run showed it is too rigid: it improves the batch-32 `ssm_first` hybrid slightly, does not improve pure SSM enough, and does not beat plain split lanes at batch 64. The next cross-channel mix should be learnable while remaining ternary-friendly. + +## DPLR SSM Core + +The SSM core operates in the projected mixer dimension: + +```text +u_t in R^m +h_t in R^n +y_t in R^m +``` + +where the current best candidate uses: + +```text +m = ssm_mixer_dim = 128 +n = ssm_hidden_dim = 16 +r = ssm_rank = 1 +``` + +The recurrent form is: + +```text +h_t = A_bar h_{t-1} + B_bar u_t +y_t = C h_t + D * u_t +``` + +Matrix shapes: + +```text +A_bar : [n, n] +B_bar : [n, m] +C : [m, n] +D : [m] +``` + +The current DPLR structure defines: + +```text +A_bar = diag(a) - U V^T +``` + +with: + +```text +a : [n] +U : [n, r] +V : [n, r] +``` + +For the current best candidate: + +```text +A_bar : [16, 16] +B_bar : [16, 128] +C : [128, 16] +D : [128] +U : [16, 1] +V : [16, 1] +``` + +## Continuous-to-Discrete Parameters + +The diagonal continuous eigenvalues are stable by construction: + +```text +lambda_i = -softplus(log_lambda_real_i) +``` + +The learned step size is: + +```text +dt = clamp(softplus(log_dt), dt_min, dt_max) * rate +``` + +The diagonal discrete transition is: + +```text +a_i = exp(dt * lambda_i) +``` + +The input matrix is discretized per state: + +```text +B_bar_i = ((a_i - 1) / lambda_i) * B_i +``` + +with the small-lambda fallback: + +```text +B_bar_i = dt * B_i +``` + +The low-rank factors are ternary-aware: + +```text +U = ternary_u_mask * softplus(log_u_amp) * max_low_rank_scale * sigmoid(low_rank_logit) +V = ternary_v_mask * softplus(log_v_amp) +``` + +The masks are fixed buffers with entries in: + +```text +{-1, 0, 1} +``` + +The amplitudes are learned real values. This is why the current DPLR core is best described as ternary-aware rather than fully ternary. The sign structure is ternary, while amplitudes, projections, gates, FFN, and embeddings are still dense learned tensors. + +## Frequency-Domain Training Path + +For sequence training, the model uses the convolutional path instead of stepping token by token. + +The recurrent SSM implies a convolution kernel: + +```text +K_k = C A_bar^k B_bar +``` + +The output can be computed as: + +```text +y_t = sum_{k=0..t} K_k u_{t-k} + D * u_t +``` + +The implementation uses FFT: + +```text +U_f = rfft(u) +Y_f = H(z) U_f +y = irfft(Y_f) +``` + +The transfer response is computed with the DPLR inverse: + +```text +H(z) = C (I - z^L A_bar^L) (I - z A_bar)^(-1) B_bar + D +``` + +The inverse is not formed as a dense inverse in the main direct path. Instead, it uses Woodbury-style DPLR algebra: + +```text +(I - z (diag(a) - U V^T))^-1 +``` + +which reduces the low-rank correction to small rank operations. Since the current best uses rank `1`, the correction is especially small. + +## Parameter Inventory For h16/m128 + +Inside one SSM mixer block, the DPLR core has approximately: + +| Parameter | Shape | Count | +|---|---:|---:| +| `log_lambda_real` | `[16]` | 16 | +| `B` | `[16, 128]` | 2048 | +| `C` | `[128, 16]` | 2048 | +| `D` | `[128]` | 128 | +| `log_u_amp` | `[1, 16]` | 16 | +| `log_v_amp` | `[1, 16]` | 16 | +| `low_rank_logit` | `[1]` | 1 | +| `log_dt` | scalar | 1 | +| DPLR total | | 4274 | + +The mixer around the SSM has larger dense components: + +| Component | Shape | Count | +|---|---:|---:| +| Input projection `W_in` | `[256, 128]` | 32768 | +| Output projection `W_out` | `[128, 256]` | 32768 | +| Input gate | `256 -> 256` with bias | 65792 | +| Output gate | `256 -> 256` with bias | 65792 | +| Layer scale | `[256]` | 256 | +| Per-channel local shift | `[256]` | 256 | + +The FFN is larger again: + +| Component | Shape | Count | +|---|---:|---:| +| FF gate | `256 -> 1024` | 262144 | +| FF value | `256 -> 1024` | 262144 | +| FF output | `1024 -> 256` | 262144 | +| FFN total | | 786432 | + +So, in the current LLM, the SSM core is small. Performance and deployment friendliness depend not only on the DPLR kernel, but also on projections, gates, local shift, FFN, embeddings, and output head. + +## Inference Export + +The DPLR core exposes inference matrices: + +```text +A_continuous_diag +A_discrete +low_rank_U +low_rank_V +B +C +D +dt +ternary_u_mask +ternary_v_mask +diag +``` + +The step-wise inference recurrence is: + +```text +h_new = h A_bar^T + u B_bar^T +y = h_new C^T + u * D +``` + +This is the path to target for ternary deployment analysis. + +## Current Evidence Against Attention TaoNet + +Latest high-scale comparison with attention, pure SSM, and hybrid on `/home/student/Data/TaoData/pretrain.jsonl`: + +| Batch | Model | Pattern | Gate | Eval loss | Eval accuracy | Forward+backward tok/s | +|---:|---|---|---|---:|---:|---:| +| 32 | attention TaoNet | - | - | 3.5270 | 0.3490 | 1.367M | +| 32 | SSM TaoNet h16/m128 | - | dense | 3.7575 | 0.3138 | 1.144M | +| 32 | SSM TaoNet h16/m128 | - | channel | 3.7708 | 0.3109 | 1.158M | +| 32 | hybrid TaoNet | ssm_first | channel | 3.4733 | 0.3563 | 1.239M | +| 64 | attention TaoNet | - | - | 3.3949 | 0.3647 | 1.449M | +| 64 | SSM TaoNet h16/m128 | - | dense | 3.6478 | 0.3257 | 1.254M | +| 64 | SSM TaoNet h16/m128 | - | channel | 3.6554 | 0.3252 | 1.231M | +| 64 | hybrid TaoNet | ssm_first | channel | 3.3694 | 0.3693 | 1.325M | + +Interpretation: + +- Hybrid is now the best candidate in the ledger: the channel-gated `ssm_first` pattern beats attention on eval loss and token accuracy at both tested batch sizes. +- Hybrid is still slower than attention, but it keeps about `91%` of attention forward+backward throughput. +- Pure SSM with either dense or channel gates did not beat attention in the high-scale run. +- Channel gates are more ternary-friendly and improved the best hybrid, but slightly hurt pure SSM quality. +- The next pure-SSM question is how to add SSM capacity without falling back to attention-like dense mixing. + +Latest optimizer sweep for the current `h16/m128` candidate: + +| Model | LR | Eval loss | Eval accuracy | Forward+backward tok/s | +|---|---:|---:|---:|---:| +| attention TaoNet | 0.0008 | 4.688 | 0.215 | 1.37M | +| SSM TaoNet h16/m128 | 0.0004 | 4.952 | 0.207 | 1.09M | +| SSM TaoNet h16/m128 | 0.0006 | 4.789 | 0.218 | 1.08M | +| SSM TaoNet h16/m128 | 0.0008 | 4.716 | 0.224 | 1.08M | +| SSM TaoNet h16/m128 | 0.0012 | 4.705 | 0.223 | 1.09M | + +Interpretation: + +- Attention still has the best validation loss, but the gap is still small: latest attention `4.688` vs best SSM `4.705`. +- SSM has the better token accuracy at useful learning rates: `0.224` at LR `0.0008` and `0.223` at LR `0.0012`. +- SSM throughput is currently behind attention in the controlled optimizer run. +- The follow-up weight-decay sweep at LR `0.0012` did not improve quality beyond `wd=0.01`. +- The DPLR discrete-parameter reuse cleanup preserved quality and gave only a small speed movement at the TaoNet level. +- A rank-one frequency specialization was attempted and reverted after it regressed SSM forward+backward throughput to about `497k` tok/s. +- Component profiling at the TaoData benchmark shape shows the DPLR SSM core is the largest measured SSM-side forward cost: about `2.203 ms/forward` across four layers. Gates are about `0.403 ms/forward`, projections about `0.303 ms/forward`, FFN linears about `0.875 ms/forward`, and the output head about `0.384 ms/forward`. +- DPLR microprofiling shows the direct frequency path is better than materialized transfer at the current shape: `1.812 ms` vs `2.478 ms` forward+backward, and `119 MB` vs `308 MB` peak allocation. +- A batch-major direct-path layout rewrite was attempted and reverted after it regressed forward+backward to `3.435 ms`. +- The next unresolved question is whether direct-path copy/cast and complex batched-matmul overhead can be reduced with a lower-level kernel plan without losing the accuracy edge. + +## Known Limitations + +- The current SSM LLM is ternary-aware, not fully ternary. +- Dense projections, gates, FFN, embeddings, and output head still dominate parameter count. +- Batch generalization for `h16/m128` has been checked at batch 16, 32, and 64; SSM kept its accuracy edge but not a loss or speed lead. +- The frequency-domain DPLR path still depends on complex FFT and complex rank-one algebra. +- Hardware acceleration work should target the DPLR frequency response/backward path and the inference recurrence separately. diff --git a/code/Taotern_LLM_Experiments/docs/DIRECTORY_NAVIGATION.md b/code/Taotern_LLM_Experiments/docs/DIRECTORY_NAVIGATION.md new file mode 100644 index 0000000000000000000000000000000000000000..d97622af469ec95d208a75a1f7cf703e90e3d87b --- /dev/null +++ b/code/Taotern_LLM_Experiments/docs/DIRECTORY_NAVIGATION.md @@ -0,0 +1,249 @@ +# Directory Navigation Guide + +This guide maps the project by responsibility. Use it when a new thread needs to find the SSM code, LLM wrapper, data pipeline, train/test scripts, or remote-run artifacts quickly. + +## Local Workspace + +Current local workspace root: + +```text +C:\Users\YouZheng\Documents\LYZ\MyContent\MyLLM\Codebase\Taotern +``` + +Main local repos: + +| Purpose | Local path | GitHub | +|---|---|---| +| Experiment ledger | `C:\Users\YouZheng\Documents\LYZ\MyContent\MyLLM\Codebase\Taotern\Taotern_LLM_Experiments` | `https://github.com/StarMists/Taotern_LLM_Experiments` | +| SSM model | `C:\Users\YouZheng\Documents\LYZ\MyContent\MyLLM\Codebase\Taotern\Taotern_SSM` | `https://github.com/StarMists/gamma_SSM_S4_enhanced` | +| TaoTrain LLM code | `C:\Users\YouZheng\Documents\LYZ\MyContent\MyLLM\Codebase\Taotern\TaoTrain` | `https://github.com/lobakkang/TaoTrain` | +| Remote run tool | `C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge` | local tool repo | +| TaoData scripts | not currently cloned under this workspace | `https://github.com/lobakkang/TaoData` | + +## Experiment Ledger + +Path: + +```text +C:\Users\YouZheng\Documents\LYZ\MyContent\MyLLM\Codebase\Taotern\Taotern_LLM_Experiments +``` + +Important files: + +| File | Purpose | +|---|---| +| `README.md` | Current SSM LLM status and attention TaoNet comparison | +| `experiments/index.csv` | Searchable run ledger | +| `experiments/runs//manifest.yaml` | Run purpose, commits, data, status | +| `experiments/runs//summary.md` | Human-readable result | +| `experiments/runs//metrics.csv` | Compact metric snapshot | +| `experiments/runs//repobridge.config.json` | Exact remote-run config | +| `experiments/resources/tokenizers/` | Small tokenizer configs only | +| `docs/WORKFLOW.md` | How future runs should be recorded | +| `docs/CURRENT_SSM_LLM_ARCHITECTURE.md` | Current TaoNet-SSM layers, equations, matrices, parameters | + +Rule: keep this repo compact. Commit summaries/configs/CSV metrics, not raw output trees or checkpoints. + +## SSM Model Repo + +Path: + +```text +C:\Users\YouZheng\Documents\LYZ\MyContent\MyLLM\Codebase\Taotern\Taotern_SSM +``` + +Main code locations: + +| Area | File or directory | Notes | +|---|---|---| +| DPLR SSM core | `gamma_space_model/modules/s4_ternary_dplr_ssm.py` | Current main SSM core for TaoNet-SSM | +| Gamma S4 core | `gamma_space_model/modules/ssm_gamma_s4.py` | Older Gamma/S4-style core | +| Baseline Gamma core | `gamma_space_model/modules/ssm_gamma.py` | Baseline/reference SSM | +| SSM blocks | `gamma_space_model/modules/block*.py` | Standalone SSM block wrappers | +| TileLang/Triton fallback area | `csrc/tilelang/` | Capability detection and fallback code | +| Selective scan op wrapper | `gamma_space_model/ops/selective_scan_interface.py` | SSM op interface | +| DPLR profiler | `scripts/profile_dplr_frequency_path.py` | Profiles DPLR frequency path | +| TileLang diagnosis | `scripts/diagnose_tilelang_acceleration.py` | Reports real vs fallback acceleration | +| SSM variant benchmark | `scripts/benchmark_ssm_variants.py` | Standalone SSM benchmarks | +| SSM tests | `tests/test_s4_ternary_dplr_ssm.py`, `tests/test_ssm_gamma*.py` | Core correctness tests | +| Historical record | `EXPERIMENT_RECORD.md` | Older narrative record; new LLM records should be mirrored into this experiment ledger | + +When improving the SSM model itself, start from: + +```text +gamma_space_model/modules/s4_ternary_dplr_ssm.py +``` + +When working on hardware acceleration, start from: + +```text +csrc/tilelang/ +scripts/profile_dplr_frequency_path.py +scripts/diagnose_tilelang_acceleration.py +``` + +Remote SSM path used by RepoBridge runs: + +```text +/home/student/YouZheng/gamma_ssm_repo +``` + +## TaoTrain LLM Repo + +Path: + +```text +C:\Users\YouZheng\Documents\LYZ\MyContent\MyLLM\Codebase\Taotern\TaoTrain +``` + +Main code locations: + +| Area | File or directory | Notes | +|---|---|---| +| Attention TaoNet baseline | `src/taoTrain/models/taonet.py` | Reference model for comparisons | +| SSM TaoNet wrapper | `src/taoTrain/models/taonet_ssm.py` | Replaces attention core with SSM mixer | +| Model config schema | `src/taoTrain/config.py` | SSM flags live here: hidden dim, mixer dim, shift, kernel mode | +| Model registry | `src/taoTrain/models/registry.py` | Architecture registration | +| Token/data utilities | `src/taoTrain/data/` | JSONL and tokenization data paths | +| Tokenizer trainer | `src/taoTrain/tokenizers/trainer.py` | SentencePiece training path | +| Training loop | `src/taoTrain/training/trainer.py` | Full trainer implementation | +| CLI | `src/taoTrain/cli.py` | TaoTrain command entry | +| Real-token benchmark | `scripts/benchmark_taonet_real_tokens.py` | Main attention vs SSM benchmark for TaoData token tasks | +| Synthetic token benchmark | `scripts/benchmark_taonet_token_variants.py` | Previous/increment/random token probes | +| TaoData pilot tokenizer config | `configs/tokenizer_taodata_pilot.yaml` | Generated pilot 8k SentencePiece tokenizer | +| SSM pretrain config | `configs/ssm_pretrain.yaml` | Config path for SSM pretraining experiments | +| SSM wrapper tests | `tests/test_taonet_ssm.py` | Shape and config behavior tests | + +Current real-token benchmark entry point: + +```text +scripts/benchmark_taonet_real_tokens.py +``` + +Current SSM wrapper entry point: + +```text +src/taoTrain/models/taonet_ssm.py +``` + +Current attention baseline: + +```text +src/taoTrain/models/taonet.py +``` + +Remote TaoTrain path used by RepoBridge: + +```text +/home/student/YouZheng/repo +``` + +## TaoData + +GitHub: + +```text +https://github.com/lobakkang/TaoData +``` + +Current local status: + +```text +No local TaoData checkout was found under C:\Users\YouZheng\Documents\LYZ\MyContent\MyLLM\Codebase as of 2026-04-30. +``` + +Remote data path used in current benchmarks: + +```text +/home/student/Data/TaoData/pretrain.jsonl.fineweb.jsonl +``` + +Current pilot tokenizer path on remote: + +```text +/home/student/YouZheng/tokenizers/taodata_pilot_8k/tokenizer.model +/home/student/YouZheng/tokenizers/taodata_pilot_8k/tokenizer.vocab +``` + +Tokenizer config snapshot in this ledger: + +```text +experiments/resources/tokenizers/taodata_pilot_8k.yaml +``` + +When TaoData is cloned locally, update this guide with the exact data download/generation scripts and any preprocessing entry points. + +## RepoBridge + +Path: + +```text +C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge +``` + +Important files: + +| File or directory | Purpose | +|---|---| +| `repobridge/core.py` | Sync, SSH, SFTP, run, download implementation | +| `repobridge/cli.py` | CLI entry point | +| `repobridge/app.py` | GUI | +| `CODEX_OPERATOR_GUIDE.md` | Codex remote-run guide | +| `PRODUCTION_RUNBOOK.md` | Production checklist | +| old `repobridge.*.config.json` files | Historical configs; new experiment configs should live in this ledger | + +Preferred future location for experiment configs: + +```text +Taotern_LLM_Experiments\experiments\runs\\repobridge.config.json +``` + +Remote write root: + +```text +/home/student/YouZheng +``` + +Remote output base: + +```text +/home/student/YouZheng/outputs-taotrain +``` + +Important operational note: + +Avoid downloading the whole remote output base if it contains many historical runs. Prefer downloading or copying only the specific run folder. + +## Current Best SSM LLM Path + +To inspect the current best SSM LLM implementation: + +1. Open TaoTrain wrapper: + + ```text + C:\Users\YouZheng\Documents\LYZ\MyContent\MyLLM\Codebase\Taotern\TaoTrain\src\taoTrain\models\taonet_ssm.py + ``` + +2. Follow the DPLR core import into: + + ```text + C:\Users\YouZheng\Documents\LYZ\MyContent\MyLLM\Codebase\Taotern\Taotern_SSM\gamma_space_model\modules\s4_ternary_dplr_ssm.py + ``` + +3. Compare against attention TaoNet: + + ```text + C:\Users\YouZheng\Documents\LYZ\MyContent\MyLLM\Codebase\Taotern\TaoTrain\src\taoTrain\models\taonet.py + ``` + +4. Reproduce current best benchmark with: + + ```text + Taotern_LLM_Experiments\experiments\runs\2026-04-29_spm_b32_500step_mixer_sweep\repobridge.config.json + ``` + +5. Read current conclusion in: + + ```text + Taotern_LLM_Experiments\README.md + ``` diff --git a/code/Taotern_LLM_Experiments/docs/WORKFLOW.md b/code/Taotern_LLM_Experiments/docs/WORKFLOW.md new file mode 100644 index 0000000000000000000000000000000000000000..322370e52e973d5b4be31968a1eb6c8206b730cd --- /dev/null +++ b/code/Taotern_LLM_Experiments/docs/WORKFLOW.md @@ -0,0 +1,25 @@ +# Experiment Workflow + +Before running a remote benchmark: + +1. Create `experiments/runs//`. +2. Save the exact RepoBridge config as `repobridge.config.json`. +3. Add a `manifest.yaml` with the goal, commits, dataset, tokenizer, and expected comparison. +4. Run RepoBridge with that config. +5. Copy only the final compact CSV/JSON metrics into the run folder. +6. Write `summary.md`. +7. Update `experiments/index.csv`. +8. Update the top-level `README.md` only when the current best model or conclusion changes. + +RepoBridge should remain a tool repo. New experiment configs should live here, not in the RepoBridge root. + +For cross-repo orientation, see `docs/DIRECTORY_NAVIGATION.md`. + +Preferred run command: + +```powershell +python -m repobridge.cli sync --config C:\path\to\Taotern_LLM_Experiments\experiments\runs\\repobridge.config.json --use-stored-password +python -m repobridge.cli run --config C:\path\to\Taotern_LLM_Experiments\experiments\runs\\repobridge.config.json --use-stored-password +``` + +For downloads, prefer targeted downloads of the specific run folder. Avoid recursively downloading the whole remote output base if it contains many historical runs. diff --git a/code/Taotern_LLM_Experiments/docs/showcase/GSM_RnD_Showcase_Report.docx b/code/Taotern_LLM_Experiments/docs/showcase/GSM_RnD_Showcase_Report.docx new file mode 100644 index 0000000000000000000000000000000000000000..df3c7737cc50995c0f5163f577d766eafa0491c9 Binary files /dev/null and b/code/Taotern_LLM_Experiments/docs/showcase/GSM_RnD_Showcase_Report.docx differ diff --git a/code/Taotern_LLM_Experiments/docs/showcase/GSM_RnD_Showcase_Report.md b/code/Taotern_LLM_Experiments/docs/showcase/GSM_RnD_Showcase_Report.md new file mode 100644 index 0000000000000000000000000000000000000000..9f229357e4df2743fe5d4654eaba364d15bc5d5c --- /dev/null +++ b/code/Taotern_LLM_Experiments/docs/showcase/GSM_RnD_Showcase_Report.md @@ -0,0 +1,678 @@ +# From CHASM to GSM: R&D Summary and Scaling Notes + +Date: 2026-05-12 + +This document summarizes the Taotern SSM/GSM research path so far, from the legacy CHASM direction through the Gamma Space Model (GSM), DPLR SSM acceleration, TaoNet LLM wrapping, hybrid attention-SSM experiments, and the current 200M-parameter model preparation. It is written as a showcase and paper-preparation artifact: it records what worked, what failed, and what the current model looks like. + +## Executive Summary + +The project started from the goal of replacing or reducing attention in an LLM with a ternary-friendly state-space computing layer. The older CHASM direction, Chunked Hierarchy Attentive State Model, remains useful background, but the current implementation focus has moved to GSM, the Gamma Space Model. GSM is a structured state-space model built around a sparse lower-bidiagonal Gamma transition and later extended with S4-style discretization, convolutional full-sequence execution, and a DPLR matrix variant for more expressive sequence mixing. + +The strongest early result was that the enhanced Gamma SSM gave much better long-context synthetic performance than the original recurrent Gamma baseline. The practical breakthrough for LLM work came later from wrapping the SSM inside TaoNet and testing on real token tasks from TaoData. The best pure SSM small model became competitive on token accuracy, but attention usually retained lower validation loss. The best overall small model is currently a hybrid TaoNet with both SSM and attention layers: it beats the attention-only TaoNet on validation loss and token accuracy in the strongest high-scale runs, while keeping most of the attention model's throughput. + +The current 200M-parameter stage therefore keeps four tracks: + +| Track | Role | Status | +|---|---|---| +| Pure attention TaoNet | Untouched baseline | Required comparator | +| Pure SSM TaoNet | Primary project target | Viable but still behind attention on small-token loss | +| Best hybrid TaoNet | Quality fallback and showcase model | Currently best small-scale quality | +| Chat-ready hybrid | Same core plus post-training steps | Planned after base selection | + +The key scaling-law style finding so far is not a universal equation yet, but a repeatable empirical rule: at the tested 4-layer, 8M-parameter scale, replacing all attention with SSM loses token-task quality, while replacing about half the blocks with SSM gives the best loss and accuracy. Two SSM blocks in a 4-block hybrid are much better than a single late SSM block. SSM-first ordering becomes slightly stronger at larger batch/high-scale runs. + +## Project Goals and Constraints + +The engineering goal is not simply to make another LLM. The target model must be: + +- competitive with TaoNet attention on real token tasks, +- friendly to ternary inference hardware, +- scalable on modern GPUs during training, +- measurable through repeatable scripts rather than only notebooks, +- suitable for a future edge-deployed chatbot or showcase model. + +This creates a tension. Dense attention is well optimized and has strong token modeling quality. GSM/SSM layers are more hardware-aligned for recurrence, streaming, and ternary deployment, but their training path uses convolution or frequency-domain computation that must be carefully optimized to avoid underusing the GPU. + +## Architecture Lineage + +### CHASM: Legacy Context + +CHASM means Chunked Hierarchy Attentive State Model. It is the older architecture direction and should be described in more detail by the technical lead. For this report, CHASM is treated as the historical starting point: a chunked and hierarchical approach for sequence modeling that still carried attention-like structure. + +The current research direction moved from CHASM toward GSM because GSM gives a cleaner state-space formulation, a more direct path toward ternary-friendly recurrence, and a better fit for hardware exploration. + +### GSM: Gamma Space Model + +GSM is the current state-space family. The base continuous-time form is: + +```text +dh(t) / dt = A h(t) + B u(t) +y(t) = C h(t) + D u(t) +``` + +Here: + +- `u(t)` is the input sequence signal, +- `h(t)` is the state, +- `y(t)` is the output, +- `A` is the state transition, +- `B` maps input into state, +- `C` reads state into output, +- `D` is a direct skip path. + +The original Gamma transition matrix is sparse, lower-bidiagonal, and ternary-friendly: + +```text +A[i, i] = -1 +A[i, i - 1] = 1 for i > 0 +all other entries are 0 +``` + +For a small state size, the pattern is: + +```text +[-1 0 0 0] +[ 1 -1 0 0] +[ 0 1 -1 0] +[ 0 0 1 -1] +``` + +This matters because the transition uses values from `{-1, 0, 1}`. That makes the transition structurally aligned with ternary compute units, even though the surrounding neural network still contains dense projections and learned scales. + +### Euler Gamma SSM + +The first implementation used an Euler recurrent update: + +```text +h[t + 1] = h[t] + dt * (A h[t] + B u[t]) +y[t] = C h[t] + D u[t] +``` + +This was conceptually clean and deployment-friendly, but it was not enough for training-quality and long-context modeling. The recurrent step was simple, but full-sequence training was slow and quality lagged later versions. + +### Bilinear/S4-Inspired Gamma SSM + +The next major version kept the Gamma structure but added S4-inspired pieces: + +- learned positive `dt`, +- stable discretization, +- optional `D` skip, +- convolutional full-sequence execution, +- recurrent stepping for deployment, +- input-selection gates, +- support for Euler, bilinear/Tustin, and ZOH discretization. + +The practical default became bilinear/Tustin-style discretization. In simplified form: + +```text +Abar = (I - dt A / 2)^(-1) (I + dt A / 2) +Bbar = (I - dt A / 2)^(-1) dt B +``` + +Then the discrete-time model is: + +```text +h[t + 1] = Abar h[t] + Bbar u[t] +y[t] = C h[t] + D u[t] +``` + +The same model can be trained as a convolution: + +```text +K[l] = C Abar^l Bbar +y[t] = sum_{l=0..t} K[l] u[t-l] + D u[t] +``` + +This convolution path was the first major performance step because it allowed full-sequence training to run in parallel instead of stepping token by token. + +### DPLR GSM + +For LLM work, the best-performing SSM core is the DPLR variant rather than the fixed Gamma baseline. DPLR means diagonal plus low rank: + +```text +A = diag(a) - U V^T +``` + +The current dominant setting uses rank 1: + +```text +A = diag(a) - u v^T +``` + +In the TaoNet SSM mixer, the core usually operates in a projected mixer dimension rather than the full model dimension. A typical small setting is: + +```text +d_model = 256 +ssm_mixer_dim = 128 or 256 +ssm_hidden_dim = 16 or 32 +rank = 1 +``` + +For the current 200M pure SSM candidate: + +```text +d_model = 1024 +ssm_mixer_dim = 256 +ssm_hidden_dim = 16 +rank = 1 +lanes = 2 split lanes +``` + +The DPLR core remains compatible with the ternary direction because the low-rank part uses ternary-aware masks and learned amplitudes. It is not yet a fully ternary model, because embeddings, projections, FFN layers, normalization, and output heads are still dense learned components. + +## LLM Integration + +The LLM work was intentionally built on top of TaoNet so the comparison stays fair. The attention TaoNet is left untouched as the baseline. The SSM TaoNet changes the sequence-mixing core while preserving the surrounding LLM structure as much as possible. + +The general autoregressive structure is: + +```text +token ids + -> token embedding + -> repeated TaoNet blocks + -> final normalization + -> vocabulary head + -> next-token cross entropy +``` + +An SSM TaoNet block is: + +```text +x1 = x + dropout(SSM_Mixer(LN1(x))) +y = x1 + dropout(SwiGLU_FFN(LN2(x1))) +``` + +The SSM mixer is: + +```text +input x + -> optional input gate + -> projection d_model -> ssm_mixer_dim + -> DPLR SSM lane or lanes + -> activation + -> projection ssm_mixer_dim -> d_model + -> optional output/channel gate + -> residual path +``` + +The local shift branch became a crucial part of the mixer. Removing it caused a sharp real-token quality drop. The current interpretation is that the DPLR SSM handles longer mixing, while the local shift branch provides a cheap near-token inductive bias that attention models get naturally. + +## Experiment Timeline + +### 1. Original Euler Gamma Baseline + +The first model was the fixed Gamma recurrent SSM. It validated the ternary-friendly transition idea, but quality and training performance were not competitive enough. This model remains useful as a baseline for explaining the architecture lineage. + +### 2. Enhanced Gamma With Convolution + +The enhanced Gamma model added learned discretization, skip paths, convolutional execution, recurrent export, and deployment modes. This produced the first strong results on synthetic long-context tasks. + +Key outcome: + +- enhanced Gamma/GSM greatly improved long-context loss over the baseline, +- convolutional full-sequence execution was much faster than recurrent training, +- recurrent deployment remained harder than full-sequence training. + +Notable notebook progression: + +| Notebook stage | Main result | +|---|---| +| `r6` to `r7` | convolution path became much faster; long-context epoch time dropped dramatically | +| `r8` | mature token-lite run; enhanced model beat baseline strongly | +| `r10` | deployment-lite and balanced deployment modes added | +| `r11` | AMP/FFT fixes and cached full-sequence improvements | +| `r12` | input-selection gate added; best presentable early research run | + +### 3. Challenge Benchmarks + +The challenge notebooks tested harder tasks such as selective copying and induction-style behavior. These runs were important because they exposed a limitation: the enhanced Gamma model was strong on smooth or structured long-context tasks, but challenge recall tasks stayed near random. + +Lesson: + +```text +Good long-context convolution quality is not the same as solving token-level selective memory. +``` + +This is one reason the project later moved toward DPLR, local shift, gates, and hybrid models. + +### 4. TaoNet SSM Wrapper + +The next phase wrapped the SSM as the core mixer inside TaoNet. This created an apples-to-apples comparison: + +- attention TaoNet, +- pure SSM TaoNet, +- later, hybrid TaoNet. + +The first real-token pilots used TaoData and an 8k SentencePiece tokenizer. Byte-level pilots were encouraging but not representative enough, so SentencePiece became the main test path. + +### 5. Projected SSM Mixer + +Projected SSM mixing was a major practical improvement. Instead of applying the SSM at full `d_model`, the model projects into a smaller mixer dimension: + +```text +x -> W_in x -> SSM -> W_out -> residual +``` + +This matters because DPLR cost scales strongly with the channel/mixer dimension. The best early setting was not "as wide as possible"; it was a bottleneck that preserved enough capacity while keeping the SSM core efficient. + +Important small-scale result: + +| Model | Eval loss | Eval accuracy | Throughput | +|---|---:|---:|---:| +| attention TaoNet | about 4.715 | about 0.211 | about 618k tok/s | +| SSM h16/m64 | about 4.780 | about 0.218 | about 1.13M tok/s | +| SSM h16/m128 | about 4.719 | about 0.224 | about 782k tok/s | + +Lesson: + +```text +h16/m128 was the first real-token "sweet spot": near attention loss, better token accuracy, and still practical throughput. +``` + +### 6. Local Shift and Per-Channel Shift + +The local shift branch was tested directly. Removing it made SSM quality much worse. Per-channel shift slightly improved over scalar shift. + +Lesson: + +```text +The SSM LLM needs a local/token-neighborhood path. Pure long-range SSM dynamics alone are not enough. +``` + +This remains one of the strongest design constraints for future pure SSM work. + +### 7. Learning Rate and Weight Decay + +The SSM TaoNet did not use exactly the same optimizer sweet spot as the attention model. A learning-rate sweep around `h16/m128` showed that LR `0.0012` gave the best SSM validation-loss compromise, while LR `0.0008` gave strong accuracy. + +Weight decay did not become a breakthrough; `0.01` remained a reasonable default. + +### 8. DPLR Frequency Path and Acceleration Attempts + +The DPLR path went through several implementation experiments. The important success was the direct frequency-response path: + +| Method | Forward ms | Forward+backward ms | Peak allocation | +|---|---:|---:|---:| +| direct frequency response | 0.582 | 1.812 | 119 MB | +| materialized transfer tensor | 0.719 | 2.478 | 308 MB | + +Direct frequency response became the default because it avoided materializing a dense transfer tensor. + +Several attempted optimizations failed and were reverted: + +| Attempt | Result | +|---|---| +| rank-one hand-specialized DPLR algebra | preserved quality but badly regressed throughput | +| batch-major layout rewrite | regressed runtime | +| real-powered readout cast change | correct but slower in backward | +| combined output projection | fewer graph ops but slower runtime | +| exact finite-tail for hybrid | slower and did not improve quality enough | + +These failures are useful. They show that algebraically smaller PyTorch graphs do not always map to faster GPU kernels. For this project, measured kernel behavior matters more than symbolic operation count. + +### 9. TileLang and Hardware Acceleration Status + +The TileLang investigation found that TileLang kernels were not actually active in the remote environment. The code was updated to report capability honestly: + +```text +HAS_TILELANG_OPS = false +TILELANG_BACKEND = pytorch_fallback +``` + +Triton was available, but a real custom acceleration path for the DPLR direct frequency/backward path has not yet been completed. + +Current hardware lesson: + +```text +The useful target is not the old Gamma fallback. The useful target is the current DPLR direct frequency path and especially its backward pass. +``` + +### 10. Hybrid TaoNet + +Hybrid TaoNet was introduced to test whether SSM and attention could complement each other. With four layers, the tested patterns were: + +| Pattern | Block order | +|---|---| +| `attention_first` | attention, SSM, attention, SSM | +| `ssm_first` | SSM, attention, SSM, attention | +| `single_ssm_middle` | attention, attention, SSM, attention | +| `single_ssm_late` | attention, attention, attention, SSM | + +The key result was stable: two-SSM hybrids beat attention-only TaoNet on real token loss and accuracy, while pure SSM still trailed. + +Representative high-scale result: + +| Batch | Model | Eval loss | Eval accuracy | Train tok/s | +|---:|---|---:|---:|---:| +| 64 | attention TaoNet | 3.3946 | 0.3592 | 1.447M | +| 64 | pure SSM TaoNet | 3.5515 | 0.3345 | 1.152M | +| 64 | hybrid `ssm_first` split lanes | 3.2391 | 0.3830 | 1.268M | + +Lesson: + +```text +At the tested small scale, the best attention-to-SSM ratio is about 50/50, not 0/100 or 100/0. +``` + +### 11. Channel Gates, Multi-Lane SSM, and Split Lanes + +Channel gates are ternary-friendly because they are elementwise. They improved the hybrid model and became part of the current candidate. + +Multi-lane SSM improved pure SSM quality but cost too much throughput when lanes were full-width. Split lanes were then tested: + +```text +u = W_in x +u1, u2 = split(u) +y1 = SSM_1(u1) +y2 = SSM_2(u2) +y = concat(y1, y2) +``` + +Split lanes preserved much of the quality gain while recovering throughput and memory. + +Lesson: + +```text +Lane diversity is useful. Full duplicated SSM width is too expensive. Split lanes are a better scaling point. +``` + +### 12. Hadamard Split Mixing + +Hadamard split mixing was tested as a cheap cross-channel communication method after split lanes. It was too rigid to become a pure SSM breakthrough. It slightly helped some hybrid settings and was included in the 200M candidate sweep, but the no-Hadamard ablation remains important. + +Lesson: + +```text +Pure SSM needs cheap cross-channel communication, but fixed add/subtract mixing is probably not enough. +``` + +### 13. Detached Improvement Sweep + +The detached sweep ran 162 unique cases with attention, pure SSM, and hybrid models. It used sequence length 512, 2000 training steps, 48 eval batches, and TaoData pretrain JSONL. GPU utilization was strong: + +| Metric | Value | +|---|---:| +| average GPU utilization | 93.1% | +| max GPU utilization | 97.0% | +| average GPU memory | 11276 MiB | +| max GPU memory | 11622 MiB | + +Best results: + +| Family | Best variant | Batch | Params | Eval loss | Eval acc | Train tok/s | +|---|---|---:|---:|---:|---:|---:| +| attention TaoNet | baseline | 64 | 8.197M | 3.6281 | 0.3355 | 1.457M | +| pure SSM TaoNet | DPLR h16/m256, 2 split lanes, Hadamard | 64 | 7.647M | 3.8290 | 0.3047 | 1.036M | +| hybrid TaoNet | ssm_first, DPLR h32/m256, 2 split lanes, Hadamard | 64 | 7.938M | 3.5495 | 0.3474 | 1.191M | + +This sweep finalized the candidate shapes for 200M development. + +### 14. 200M Stage-1 Smoke Run + +The first 200M run was intentionally short, about 200 training steps. It was a shape, checkpointing, and unattended-run validation, not a final quality test. + +| Model | Params | Eval loss | Eval acc | Train tok/s | +|---|---:|---:|---:|---:| +| pure SSM Hadamard | 196.4M | 5.7967 | 0.1399 | 60.7k | +| pure SSM no-mix | 196.4M | 5.8382 | 0.1393 | 60.6k | +| hybrid ssm_first | 199.5M | 5.8213 | 0.1420 | 71.2k | +| attention baseline | 196.4M | 6.0402 | 0.1206 | 74.6k | + +Because this was a very short run, it should not be overinterpreted. The main result is that the 200M candidates instantiate, train, checkpoint, and evaluate. + +## Current Model Candidates + +### Pure SSM 200M Primary + +```text +architecture = TaoNetSSMLLM +vocab = 8192 +hidden size = 1024 +layers = 18 +attention heads = 8 compatibility heads +FFN size = 3072 +SSM core = DPLR +SSM hidden dim = 16 +SSM mixer dim = 256 +SSM rank = 1 +lanes = 2 +lane mode = split +split mix = Hadamard for primary, none for ablation +estimated params = 196.4M +``` + +This is the main project target because the original expectation is a pure SSM LLM. + +### Hybrid 200M Fallback + +```text +architecture = TaoNetHybridLLM +pattern = ssm_first +vocab = 8192 +hidden size = 1024 +layers = 16 +attention heads = 8 +FFN size = 3072 +SSM core = DPLR +SSM hidden dim = 32 +SSM mixer dim = 256 +SSM rank = 1 +lanes = 2 +lane mode = split +split mix = Hadamard +estimated params = 199.5M +``` + +This is the best quality fallback and the best current showcase model if pure SSM still trails attention after larger training. + +### Attention 200M Baseline + +```text +architecture = unchanged TaoNet attention LLM +vocab = 8192 +hidden size = 960 +layers = 16 +attention heads = 8 +FFN size = 2880 +estimated params = 196.4M +``` + +This must remain untouched so that all SSM and hybrid claims have a stable baseline. + +## Scaling-Law Style Findings + +These are empirical rules from the project so far. They are not yet universal laws, but they are strong enough to guide the next stage and can be written into a paper-style "scaling experience" section. + +### Finding 1: Pure SSM Needs a Local Path + +Removing local shift sharply degraded real-token modeling. This means a pure SSM LLM should not rely on long-range state dynamics alone. + +Rule: + +```text +SSM token models need both long-range state mixing and cheap local token mixing. +``` + +### Finding 2: Projection Dimension Has a Sweet Spot + +For the small 256-hidden TaoNet, `ssm_hidden_dim=16` and `ssm_mixer_dim=128` was the first strong point. Increasing mixer capacity helped quality, but it also reduced speed. + +Rule: + +```text +Do not scale SSM mixer width blindly. Search for the bottleneck width where token quality saturates. +``` + +### Finding 3: Hybrid Ratio Matters + +At the tested 4-layer scale: + +- 0% SSM, attention-only: strong baseline, +- 25% SSM, single middle SSM: sometimes efficient and useful, +- 50% SSM, two SSM blocks: best quality, +- 100% SSM, pure SSM: still behind attention on loss and accuracy. + +Rule: + +```text +For the current GSM/DPLR design, a 50/50 SSM-attention hybrid is the strongest quality point at small scale. +``` + +### Finding 4: SSM Placement Matters + +Single late SSM was not promising. SSM-first and attention-first two-SSM hybrids were close, with SSM-first becoming stronger in later high-scale batch-64 runs. + +Rule: + +```text +Use SSM early enough to shape representations; do not only append it late. +``` + +### Finding 5: Lane Diversity Helps, Full Duplication Is Expensive + +Two full SSM lanes improved pure SSM quality but reduced throughput too much. Split lanes recovered speed and memory while keeping much of the benefit. + +Rule: + +```text +Prefer split or grouped SSM capacity over duplicated full-width SSM capacity. +``` + +### Finding 6: Algebraic Simplification Is Not GPU Simplification + +Several exact mathematical rewrites reduced apparent operations but ran slower on the RTX 5090. GPU kernel shape, memory movement, casts, and autograd behavior dominated. + +Rule: + +```text +Accept an optimization only after measuring forward, backward, memory, and token-task quality. +``` + +### Finding 7: Ternary-Friendly Does Not Yet Mean Fully Ternary + +The GSM transition and several gates/combine operations are aligned with ternary deployment. However, dense projections, FFN layers, embeddings, and the output head still dominate parameters and compute. + +Rule: + +```text +Future ternary deployment must quantize or redesign the dense parts, not only the SSM core. +``` + +### Finding 8: Token Count for Training + +For a 200M-parameter model, Chinchilla-style compute-optimal pretraining suggests roughly 20 tokens per parameter, or about 4B tokens. For a showcase model, smaller runs such as 300M to 1B tokens can rank candidates, but they are not enough to claim mature chatbot capability. + +Rule: + +```text +Use 300M-1B tokens for model selection, around 4B-5B tokens for a serious 200M base model, and additional SFT/preference/distillation steps for chatbot behavior. +``` + +## What Worked + +The strongest successful pieces are: + +- Gamma/GSM sparse transition as a clean ternary-friendly state-space base. +- S4-inspired bilinear discretization and convolutional training path. +- Cached/full-sequence execution for large speedups over recurrent training. +- DPLR core for better LLM token modeling than the fixed Gamma baseline. +- Projected SSM mixer, especially `h16/m128` and later `h16/m256`. +- Local shift and per-channel local shift. +- Direct frequency-response path instead of materialized transfer tensors. +- Channel gates. +- Two-lane SSM capacity. +- Split-lane SSM as a better speed/memory tradeoff. +- Hybrid TaoNet, especially two-SSM `ssm_first` at batch 64. +- Unattended remote benchmark infrastructure with checkpointing and status monitoring. + +## What Failed or Did Not Yet Succeed + +The important negative findings are: + +- Euler Gamma baseline was too weak for the target LLM quality. +- Enhanced Gamma solved long-context synthetic tasks better but did not solve selective recall/induction tasks. +- Pure SSM TaoNet still trails attention on real-token validation loss at tested small scales. +- Rank-one hand-specialized DPLR algebra regressed throughput. +- Batch-major direct DPLR layout rewrite regressed runtime. +- Real-powered readout and combined projection rewrites were correct but slower. +- Exact finite-tail correction slowed hybrid models without enough quality gain. +- Hadamard split mix was not a pure SSM breakthrough. +- TileLang acceleration is not yet active; current path is PyTorch fallback. +- The current model is ternary-friendly, not fully ternary-deployed. + +## Showcase Interpretation + +The project now has a credible R&D story: + +1. Start from CHASM as the older sequence-modeling direction. +2. Move to GSM for a cleaner ternary-friendly state-space foundation. +3. Improve GSM from Euler recurrence to S4-style discretized convolution. +4. Discover that long-context synthetic success is not enough for token LLMs. +5. Build TaoNet SSM for apples-to-apples comparison. +6. Find the projected DPLR SSM mixer sweet spot. +7. Improve token modeling with local shift, channel gates, and split lanes. +8. Discover that pure SSM is promising but not yet the best token model. +9. Discover that a 50/50 SSM-attention hybrid can outperform attention-only TaoNet. +10. Scale the candidate family to 200M parameters for real application testing. + +This is the kind of "scaling law" narrative an AI startup can show: not just a final model, but a measured path through architecture, training scale, hardware behavior, and failed hypotheses. + +## Current Open Questions + +The next runs should answer: + +- Does pure SSM close the quality gap after 300M to 1B tokens? +- Does the hybrid quality advantage persist at 200M scale? +- Is Hadamard split mix worth keeping at 200M, or is no-mix better? +- What is the best SSM-attention ratio beyond 4-layer small models? +- Can a cheap learnable ternary-friendly grouped mixer improve pure SSM? +- Can Triton/TileLang acceleration reduce DPLR backward cost? +- How much SFT or distillation is needed to make the 200M model chatbot-ready? + +## Recommended Next Paper/Showcase Framing + +A strong paper-style framing would be: + +```text +From CHASM to GSM: A Ternary-Friendly State-Space Route Toward Edge LLMs +``` + +Suggested claims should be careful: + +- Claim that GSM is a ternary-friendly SSM architecture, not yet a fully ternary LLM. +- Claim that enhanced GSM improves strongly over the Euler Gamma baseline. +- Claim that DPLR GSM can be wrapped into TaoNet for real token benchmarks. +- Claim that hybrid GSM-attention models outperform attention-only TaoNet in the best small-scale runs. +- Claim that pure GSM remains the core research target and needs further scale/architecture work. + +Avoid claiming: + +- that pure SSM already beats attention generally, +- that the 200M model is fully trained, +- that TileLang acceleration is already active, +- that the model is ChatGPT-level. + +## Source Locations + +The main evidence is distributed across: + +| Repo | Evidence | +|---|---| +| `Taotern_SSM` | GSM/SSM implementation, README, early experiment record, notebooks | +| `TaoTrain` | TaoNet, TaoNet SSM, TaoNet hybrid, benchmark runners | +| `TaoData` | data generation and pretraining data source | +| `RepoBridge` | remote training, monitoring, checkpoint/status workflow | +| `Taotern_LLM_Experiments` | organized experiment records and current architecture docs | + +Important local files: + +```text +Taotern_SSM/README.md +Taotern_SSM/EXPERIMENT_RECORD.md +Taotern_SSM/output/jupyter-notebook/gamma-s4-research-benchmark_r12.ipynb +Taotern_SSM/output/jupyter-notebook/gamma-s4-challenge-benchmark_r12.ipynb +Taotern_LLM_Experiments/docs/CURRENT_SSM_LLM_ARCHITECTURE.md +Taotern_LLM_Experiments/experiments/index.csv +Taotern_LLM_Experiments/experiments/runs/2026-05-11_detached_ssm_improvement_sweep/analysis.md +``` + diff --git a/code/Taotern_LLM_Experiments/docs/showcase/GSM_Scaling_Law_Notes.md b/code/Taotern_LLM_Experiments/docs/showcase/GSM_Scaling_Law_Notes.md new file mode 100644 index 0000000000000000000000000000000000000000..ad3963aa056fc994ced0f682a5bf99f64f5447b0 --- /dev/null +++ b/code/Taotern_LLM_Experiments/docs/showcase/GSM_Scaling_Law_Notes.md @@ -0,0 +1,128 @@ +# GSM Scaling-Law Notes + +Date: 2026-05-12 + +These notes summarize the current empirical scaling lessons from the Taotern GSM/SSM-to-LLM experiments. They are intended as a short companion to `GSM_RnD_Showcase_Report.md`. + +## Current Empirical Rule + +The most repeatable finding is: + +```text +At the tested small LLM scale, pure SSM is promising but still trails attention on token-task loss, while a roughly 50/50 SSM-attention hybrid gives the best quality. +``` + +This is not yet a universal scaling law. It is a project-specific empirical law from the current TaoNet/GSM experiments. + +## Attention-to-SSM Ratio + +Four-layer experiments tested these rough ratios: + +| SSM ratio | Example | Finding | +|---:|---|---| +| 0% | pure attention TaoNet | strong baseline | +| 25% | single SSM middle | useful efficiency/quality compromise | +| 25% late | single SSM late | weak; not recommended | +| 50% | alternating SSM/attention | best quality | +| 100% | pure SSM TaoNet | project target, but still behind attention on token loss | + +Current rule: + +```text +For the current DPLR GSM block, use two SSM blocks in four layers for best quality; do not place the only SSM block late. +``` + +## SSM Capacity Scaling + +The best early pure SSM point was: + +```text +ssm_hidden_dim = 16 +ssm_mixer_dim = 128 +``` + +Later high-scale sweeps moved toward: + +```text +ssm_hidden_dim = 16 or 32 +ssm_mixer_dim = 256 +lanes = 2 split lanes +``` + +Current rule: + +```text +Increase SSM mixer capacity only while token quality improves enough to justify slower DPLR compute. +``` + +## Locality Rule + +Removing local shift sharply reduced real-token quality. + +Current rule: + +```text +Pure SSM token models require a cheap local path in addition to long-range state-space mixing. +``` + +## Lane Rule + +Full multi-lane SSM improves quality but costs too much throughput. Split lanes recover speed and memory. + +Current rule: + +```text +Prefer split/grouped lane diversity over duplicated full-width SSM lanes. +``` + +## Hardware Rule + +Several algebraically exact DPLR rewrites reduced apparent operation count but ran slower on GPU. + +Current rule: + +```text +For GSM acceleration, benchmark forward, backward, memory, and token quality; do not trust symbolic operation count alone. +``` + +## Token-to-Parameter Rule + +For a 200M-parameter base model: + +| Training token budget | Use | +|---:|---| +| 300M tokens | candidate filtering | +| 1B tokens | stronger selection and trend check | +| 4B-5B tokens | Chinchilla-style serious base pretraining range | +| beyond 5B tokens | better if compute allows, especially with high-quality data | + +Current rule: + +```text +Use 300M-1B tokens to select the architecture, then 4B-5B tokens for the serious 200M base model. +``` + +## Chatbot Readiness Rule + +A base pretrained model is not automatically a chatbot. + +Current rule: + +```text +For chatbot behavior, add SFT, evaluation prompts, safety/instruction data, and possibly distillation or preference optimization after base pretraining. +``` + +## Best Current Scaling Hypothesis + +The next serious hypothesis to test is: + +```text +At 200M parameters, pure GSM may improve with more training tokens, but the hybrid GSM-attention model is the most likely near-term showcase winner. +``` + +This preserves the project direction: + +- pure GSM remains the primary research target, +- hybrid GSM-attention remains the practical quality fallback, +- attention TaoNet remains the untouched baseline. + diff --git a/code/Taotern_LLM_Experiments/docs/showcase/README.md b/code/Taotern_LLM_Experiments/docs/showcase/README.md new file mode 100644 index 0000000000000000000000000000000000000000..11768fdcd2348b094b6a213158e1270820f18915 --- /dev/null +++ b/code/Taotern_LLM_Experiments/docs/showcase/README.md @@ -0,0 +1,25 @@ +# Showcase Documentation Guide + +This folder contains the current showcase-facing summary of the Taotern GSM/SSM LLM project. + +Recommended reading order: + +1. `GSM_RnD_Showcase_Report.md` + + Start here. This is the full technical story from CHASM context to GSM, Euler Gamma SSM, bilinear/S4-style Gamma with convolution, DPLR, TaoNet SSM, hybrid TaoNet, and the 200M model candidates. It includes what worked, what failed, current benchmark findings, and open questions. + +2. `GSM_Scaling_Law_Notes.md` + + Read this after the full report if you want the short paper-style lessons. It focuses on empirical scaling rules such as attention-to-SSM ratio, projection dimension, local shift, split lanes, token budget, and chatbot-readiness steps. + +3. `GSM_RnD_Showcase_Report.docx` + + This is the Word version of the full report. Use it when preparing a paper draft, presentation material, or a document for non-code review. + +Suggested usage: + +- For technical onboarding: read the full Markdown report first. +- For paper writing: use the `.docx` plus the scaling-law notes. +- For quick project positioning: read the executive summary and scaling-law notes. + +The Markdown files are easier to maintain in Git. The `.docx` should be regenerated from the full report when major content changes are made. diff --git a/code/Taotern_LLM_Experiments/experiments/README.md b/code/Taotern_LLM_Experiments/experiments/README.md new file mode 100644 index 0000000000000000000000000000000000000000..2fcdfce6a597cedc250ff8cf38dbcd262ee17a62 --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/README.md @@ -0,0 +1,50 @@ +# Experiments + +This directory stores compact experiment records. It should make it possible for another Codex thread or a human researcher to answer: + +- What was tested? +- Which code commits were used? +- Which exact remote command/config ran? +- What were the key metrics? +- What did we learn? +- What should be tried next? + +## Artifact Rules + +Commit: + +- `manifest.yaml` +- `summary.md` +- `metrics.csv` +- exact `repobridge.config.json` +- small tokenizer/training configs + +Do not commit: + +- raw remote output trees +- model checkpoints +- tokenizer binaries +- huge logs +- duplicated historical output folders + +Raw outputs may remain in TaoTrain local `results/` or on the remote server. This repo keeps the distilled evidence. + +## Legacy Configs + +`legacy_repobridge_configs/` contains exact copies of old RepoBridge root experiment configs. These are intentionally separate from curated run folders: + +- curated runs: interpreted, summarized, and often have metrics +- legacy configs: exact historical command/config snapshots that have not all been fully interpreted yet + +## Run Folder Contract + +Each run folder should contain: + +```text +manifest.yaml +summary.md +metrics.csv +repobridge.config.json +``` + +If a run failed before producing metrics, keep `manifest.yaml`, `summary.md`, and the config, and mark `status: interrupted` or `status: failed`. diff --git a/code/Taotern_LLM_Experiments/experiments/index.csv b/code/Taotern_LLM_Experiments/experiments/index.csv new file mode 100644 index 0000000000000000000000000000000000000000..3f38f5503bd89fb84540af2cb50371aaeff4e25b --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/index.csv @@ -0,0 +1,34 @@ +id,date,status,task,comparison,ssm_commit,taotrain_commit,best_ssm,best_attention,conclusion +2026-04-29_taodata_byte_pilot,2026-04-29,completed,TaoData byte next-token,attention vs SSM,edd5f5b,b8c4f3d,h16/m64,attention,Byte-level pilot favored SSM loss and accuracy across tested batches but is not the intended tokenizer. +2026-04-29_taodata_spm_pilot,2026-04-29,completed,TaoData SentencePiece next-token 150 steps,attention vs SSM,d4a59c6,33747c1,h64/m64 at batch64,attention,SentencePiece pilot was more mixed; SSM could win some batch points but attention remained strong. +2026-04-29_spm_b32_500step_scalar_shift,2026-04-29,completed,TaoData SentencePiece batch32 500 steps,attention vs SSM,d4a59c6,33747c1,h16/m64,attention,Attention had better loss but SSM had slightly higher token accuracy. +2026-04-29_spm_b32_500step_no_shift,2026-04-29,completed,TaoData SentencePiece batch32 500 steps,SSM no-shift ablation,d4a59c6,33747c1,none,none,Removing local shift greatly worsened SSM loss and accuracy. +2026-04-29_spm_b32_500step_channel_shift,2026-04-29,completed,TaoData SentencePiece batch32 500 steps,attention vs SSM,d4a59c6,c519645,h16/m64,attention,Per-channel shift slightly improved SSM but did not beat attention loss. +2026-04-29_spm_b32_500step_mixer_sweep,2026-04-29,completed,TaoData SentencePiece batch32 500 steps,attention vs SSM mixer sweep,ad56534,357336e,h16/m128,attention,SSM h16/m128 nearly matched attention loss and beat attention accuracy and throughput. +2026-04-29_spm_h16m128_batchsweep_interrupted,2026-04-29,completed_after_targeted_download,TaoData SentencePiece batch16/32/64 500 steps,attention vs SSM,7bc1e87,357336e,h16/m128,attention,Targeted download recovered metrics; h16/m128 beats attention accuracy at all batches but trails attention loss and throughput. +2026-04-30_spm_h16m128_lr_sweep,2026-04-30,completed,TaoData SentencePiece batch32 SSM LR sweep,attention vs SSM optimizer sweep,7bc1e87,c07739b,h16/m128 lr=0.0012,attention,Best SSM loss is 4.705 with 0.223 accuracy; attention still has slightly lower loss and higher throughput. +2026-04-30_spm_h16m128_wd_sweep,2026-04-30,completed,TaoData SentencePiece batch32 SSM WD sweep at LR 0.0012,attention vs SSM optimizer sweep,7bc1e87,c07739b,h16/m128 lr=0.0012 wd=0.01,attention,Weight decay did not materially improve SSM; wd=0.01 remained best loss while SSM kept accuracy edge. +2026-04-30_dplr_param_reuse_real_token,2026-04-30,completed,TaoData SentencePiece batch32 after DPLR param reuse,attention vs SSM hardware/overhead cleanup,604be8a,c07739b,h16/m128 lr=0.0012 wd=0.01,attention,SSM quality unchanged and speed moved slightly to 1.087M tok/s; attention remains faster and lower loss while SSM keeps accuracy edge. +2026-04-30_rank1_dplr_frequency_real_token,2026-04-30,completed_failed_reverted,TaoData SentencePiece batch32 after rank-one DPLR frequency specialization,attention vs SSM hardware/overhead cleanup,986af61 reverted by 2528c5e,c07739b,none,attention,Rank-one algebra specialization preserved quality but regressed SSM throughput to 497k tok/s; reverted and remote SSM resynced. +2026-04-30_taonet_component_profile,2026-04-30,completed,Synthetic token component profile at TaoData benchmark shape,attention vs SSM component timing,2528c5e,667a8cf,SSM core bottleneck,attention,SSM forward+backward 1.106M tok/s vs attention 1.379M; DPLR SSM core dominates measured SSM-side forward cost at 2.203 ms/forward. +2026-04-30_dplr_frequency_microprofile,2026-04-30,completed,DPLR core microprofile at TaoNet-SSM mixer shape,direct vs transfer DPLR frequency path,2528c5e,n/a,direct,transfer,Direct path is faster: 1.812 ms fwd+bwd vs transfer 2.478 ms and 119 MB vs 308 MB peak allocation. +2026-04-30_dplr_batch_major_direct_microprofile,2026-04-30,completed_failed_reverted,DPLR direct-path batch-major layout microprofile,batch-major direct vs prior direct baseline,bf787c7 reverted by 20747fe,n/a,none,prior direct,Layout rewrite regressed fwd+bwd to 3.435 ms vs 1.812 ms baseline; reverted and remote SSM resynced. +2026-04-30_dplr_finite_readout_real_token,2026-04-30,completed_mixed,DPLR finite-response readout rewrite plus real token batch sweep,attention vs SSM hardware/quality comparison,03fb1e4,667a8cf,h16/m128,attention,Forward-only long-context DPLR improved and SSM kept accuracy edge; batch32 fwd+bwd still trails attention while batch64 SSM is faster. +2026-04-30_dplr_real_powered_readout_profile,2026-04-30,completed_failed_reverted,DPLR real-valued powered-readout microprofile,real powered readout vs finite-readout baseline,7639958 reverted by 9a8443e,n/a,none,finite-readout baseline,Correct but regressed direct fwd+bwd to 1.931 ms vs 1.833 ms baseline; reverted before TaoNet benchmark. +2026-04-30_dplr_combined_projection_profile,2026-04-30,completed_failed_reverted,DPLR combined output-projection contraction microprofile,combined projection vs finite-readout baseline,36b01c4 reverted by 4aecf5a,n/a,none,finite-readout baseline,Reduced bmm/einsum calls but regressed fwd+bwd to 1.873 ms profiled and 2.815 ms in 20-repeat timing; reverted. +2026-05-01_large_hybrid_token_benchmark,2026-05-01,completed,TaoData SentencePiece large 1500-step batch32/64 benchmark,attention vs SSM vs hybrid,76f725f,57978d2,hybrid h16/m128 alternating,attention baseline unchanged,Hybrid beats attention on eval loss and token accuracy at batch32 and batch64 while retaining about 91-93% of attention fwd+bwd throughput; pure SSM trails attention in this approximate finite-tail run. +2026-05-10_hybrid_pattern_sweep,2026-05-10,completed,TaoData pretrain SentencePiece hybrid pattern sweep,attention vs SSM vs hybrid patterns,76f725f,35f907d,hybrid h16/m128 attention_first or ssm_first,attention baseline unchanged,Two-SSM hybrids retain the quality lead; attention_first is fractionally best at batch32 and ssm_first at batch64; single middle SSM is faster but weaker; single late SSM is not promising. +2026-05-10_hybrid_exact_finite_tail,2026-05-10,completed_mixed,TaoData pretrain SentencePiece exact finite-tail hybrid ablation,attention vs exact SSM vs exact hybrid,76f725f,35f907d,approximate-tail two-SSM hybrid,attention baseline unchanged,Exact finite-tail correction slows SSM-bearing models and does not improve hybrid enough; approximate finite-tail remains the preferred hybrid default. +2026-05-10_channel_gate_highscale,2026-05-10,completed_mixed,TaoData pretrain 5000-step channel gate high-scale benchmark,attention vs SSM vs all hybrid patterns with dense/channel gates,76f725f,95918b4,hybrid ssm_first channel gate,attention baseline unchanged,Channel gates improve the best hybrid quality and are more ternary-friendly; pure SSM remains behind attention, so next pure-SSM work needs more SSM capacity rather than only gate compression. +2026-05-10_multilane_ssm_highscale,2026-05-10,completed_mixed,TaoData pretrain 8000-step multi-lane SSM high-scale benchmark,attention vs pure SSM vs four hybrid patterns with one/two SSM lanes,76f725f,0bd803d,pure SSM two-lane channel gate improved quality; hybrid ssm_first two-lane best overall,attention baseline unchanged,Two SSM lanes improve pure SSM loss and accuracy but slow throughput; next pure-SSM step should make lane capacity cheaper with grouped or split-lane SSM. +2026-05-10_split_lane_ssm_highscale,2026-05-10,completed_mixed,TaoData pretrain 8000-step split-lane SSM high-scale benchmark,attention vs pure SSM vs four hybrid patterns with full/split SSM lanes,76f725f,db7dd9b,pure SSM split two-lane is faster and smaller but slightly weaker than full two-lane; hybrid ssm_first split two-lane best overall,attention baseline unchanged,Split lanes recover throughput and memory while preserving hybrid quality; pure SSM still trails attention, so next pure-SSM work needs cheap cross-channel mixing after split lanes. +2026-05-10_hadamard_split_mix_highscale,2026-05-11,completed_mixed,TaoData pretrain 8000-step Hadamard split-lane cross-mix benchmark,attention vs pure SSM vs four hybrid patterns with split none/Hadamard,76f725f,89aa98d,pure SSM Hadamard is mixed; hybrid ssm_first split none remains best batch64,attention baseline unchanged,Fixed Hadamard add/subtract is too rigid; it helps batch32 hybrid ssm_first slightly but does not close the pure SSM gap or beat plain split at batch64. +2026-05-12_200m_until_selection_interrupted,2026-05-12,interrupted,200M until-selection progress check,attention vs pure SSM vs hybrid,unknown,dd32758,pure_ssm_nomix at 300M among pure SSM,attention_196m,"300M pilot completed for all variants and hybrid won; 1B phase interrupted after attention and pure SSM Hadamard, likely due server reboot/GPU driver outage; 1B rows are incomplete and show likely 50M-token-cap overfitting." +2026-05-12_200m_hybrid_chat_4b,2026-05-12,completed_bad,Selected 200M SSM-first hybrid 4B-token base plus SFT chat tuning,selected hybrid only,76f725f,a1ff47b,hybrid_ssm_first_199m,none,Run completed but final SFT checkpoint chats poorly; fixed-batch SFT loss did not improve over pretrain, so this is a diagnostic/failure artifact rather than a deployable chatbot. +2026-05-13_200m_chat_diagnosis,2026-05-13,completed,Post-run diagnosis of poor 200M hybrid chat quality,selected hybrid only,unknown,local diagnostics,hybrid_ssm_first_199m,none,SFT did not improve fixed response loss; tiny overfit probes show huge SSM/residual gradients and residual activations growing to tens of millions, so next iteration needs explicit SSM/residual scale control before rerunning 200M. +2026-05-13_scale_control_pattern_sweep,2026-05-13,completed,Fresh small token benchmark after SSM/residual scale controls,attention vs pure SSM vs four hybrid patterns,local TaoTrain stabilizers,local SSM reciprocal floor,pure SSM h16/m128 and hybrid single_ssm_middle,attention baseline unchanged,Scale controls make fresh pure SSM competitive with attention on short run; ssm_first hybrid is fragile with high loss and high gradient norm. +2026-05-13_stabilized_ssm_capacity_sweep,2026-05-13,completed,Stabilized pure-SSM capacity sweep,attention vs pure SSM h16/h32 m64/m128/m256,local TaoTrain stabilizers,local SSM reciprocal floor,pure SSM h32/m128,attention baseline unchanged,h32/m128 gives best accuracy and nearly best loss; pure SSM beats attention accuracy but still trails attention loss. +2026-05-13_stabilized_ssm_lr_sweep,2026-05-13,completed,Stabilized pure-SSM learning-rate sweep,attention vs pure SSM h32/m128 and h32/m256,local TaoTrain stabilizers,local SSM reciprocal floor,pure SSM h32/m128 lr8e-4,attention baseline unchanged,Higher LR worsens loss despite slight accuracy gains; keep lr8e-4 and test h32/m128 at larger bounded scale. +2026-05-14_pre_200m_stability_gate,2026-05-14,completed_no_go,Pre-200M stabilized SSM gate before next 4B+SFT chatbot attempt,196M pure SSM bounded pretrain plus activation/generation/SFT probes and attention/hybrid comparison,local TaoTrain stabilizers,local SSM reciprocal floor,none,attention baseline,Stability and SFT tiny-overfit passed but bounded pretrain quality failed: pure SSM eval loss 6.90 and accuracy 3.2% vs attention loss 5.13 and accuracy 16.8%; m512/h64 did not close the gap. +2026-05-14_branch_only_100m_gate,2026-05-14,completed_go,Longer pre-200M branch-only pure SSM gate before next 4B+SFT chatbot attempt,196M pure SSM 100M-token pretrain plus activation/generation/SFT probes,local TaoTrain branch-only RMS,local SSM reciprocal floor,pure_ssm_196m_branch_rms_only,attention baseline,Passed: eval loss 3.1667 accuracy 38.9%; activation finite with final block RMS 57.5; SFT sanity overfit 3.3831 to 0.0107. Select pure SSM branch-only for 4B+SFT. +2026-05-14_200m_branch_only_4b_sft_ready,2026-05-14,running,Selected pure SSM 200M 4B+SFT chatbot attempt,selected pure SSM only after branch-only 100M gate,TaoTrain c52eb8d,SSM 5844c3f,pure_ssm_196m_branch_rms_only,none,Launched as taotern-200m-branch-only-chat-20260514; initial status RUNNING with 196.57M params and 4B token-position pretrain followed by 50k corrected response-only SFT. diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/README.md b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/README.md new file mode 100644 index 0000000000000000000000000000000000000000..f8883ba357afbaf291695d4bfbf150f29692525e --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/README.md @@ -0,0 +1,23 @@ +# Legacy RepoBridge Configs + +This directory preserves the exact experiment configs that used to live in the RepoBridge root before the experiment-ledger migration. + +Why this exists: + +- RepoBridge should be a remote execution tool, not the long-term experiment record. +- The old root configs are still useful for reproducing early SSM, TaoNet, TileLang, synthetic-token, tokenizer, and real-token runs. +- Some important real-token configs have curated run folders under `experiments/runs/`; the remaining configs are archived here as exact historical inputs. + +Use `index.csv` to see: + +- the original filename +- coarse category +- original location +- whether it already has a curated `experiments/runs/...` copy + +Safe cleanup rule: + +- The files here are the durable copy. +- The matching root-level files in RepoBridge may be moved to RepoBridge's local archive folder. +- Do not delete these archive files unless the corresponding experiment has a better curated run folder and the index has been updated. + diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/index.csv b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/index.csv new file mode 100644 index 0000000000000000000000000000000000000000..8bbf280f0bb7de79472f2c17bae38df9845944c1 --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/index.csv @@ -0,0 +1,38 @@ +"filename","category","length","migrated_run_path","original_location" +"repobridge.ssm.bench.config.json","ssm_standalone_or_diagnostic","1126","","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.ssm.bench.config.json" +"repobridge.ssm.config.json","ssm_standalone_or_diagnostic","772","","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.ssm.config.json" +"repobridge.ssm.dplrdirectprofile.b32s128.config.json","ssm_standalone_or_diagnostic","1253","","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.ssm.dplrdirectprofile.b32s128.config.json" +"repobridge.ssm.dplrprofile.config.json","ssm_standalone_or_diagnostic","1208","","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.ssm.dplrprofile.config.json" +"repobridge.ssm.dplrtransferprofile.config.json","ssm_standalone_or_diagnostic","3536","","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.ssm.dplrtransferprofile.config.json" +"repobridge.ssm.recurrent.config.json","ssm_standalone_or_diagnostic","1113","","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.ssm.recurrent.config.json" +"repobridge.ssm.tilelangdiag.config.json","ssm_standalone_or_diagnostic","1112","","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.ssm.tilelangdiag.config.json" +"repobridge.taodata.tokenizer.pilot.config.json","data_or_tokenizer","1058","","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.taodata.tokenizer.pilot.config.json" +"repobridge.taonet.realbyte.taodata.pilot.b64.config.json","llm_real_token","1723","","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.taonet.realbyte.taodata.pilot.b64.config.json" +"repobridge.taonet.realbyte.taodata.pilot.config.json","llm_real_token","1718","experiments/runs/2026-04-29_taodata_byte_pilot/repobridge.config.json","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.taonet.realbyte.taodata.pilot.config.json" +"repobridge.taonet.realspm.taodata.b32.500step.channelshift.config.json","llm_real_token","1878","experiments/runs/2026-04-29_spm_b32_500step_channel_shift/repobridge.config.json","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.taonet.realspm.taodata.b32.500step.channelshift.config.json" +"repobridge.taonet.realspm.taodata.b32.500step.config.json","llm_real_token","1820","experiments/runs/2026-04-29_spm_b32_500step_scalar_shift/repobridge.config.json","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.taonet.realspm.taodata.b32.500step.config.json" +"repobridge.taonet.realspm.taodata.b32.500step.mixersweep.config.json","llm_real_token","1813","experiments/runs/2026-04-29_spm_b32_500step_mixer_sweep/repobridge.config.json","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.taonet.realspm.taodata.b32.500step.mixersweep.config.json" +"repobridge.taonet.realspm.taodata.b32.500step.noshift.config.json","llm_real_token","1804","experiments/runs/2026-04-29_spm_b32_500step_no_shift/repobridge.config.json","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.taonet.realspm.taodata.b32.500step.noshift.config.json" +"repobridge.taonet.realspm.taodata.h16m128.batchsweep.config.json","llm_real_token","1803","experiments/runs/2026-04-29_spm_h16m128_batchsweep_interrupted/repobridge.config.json","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.taonet.realspm.taodata.h16m128.batchsweep.config.json" +"repobridge.taonet.realspm.taodata.pilot.config.json","llm_real_token","1812","experiments/runs/2026-04-29_taodata_spm_pilot/repobridge.config.json","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.taonet.realspm.taodata.pilot.config.json" +"repobridge.taonet.tokenbench.config.json","llm_synthetic_token","1305","","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.taonet.tokenbench.config.json" +"repobridge.taonet.tokenbench.projected128.config.json","llm_synthetic_token","1343","","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.taonet.tokenbench.projected128.config.json" +"repobridge.taonet.tokenbench.projected128.quality.previous.config.json","llm_synthetic_token","1545","","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.taonet.tokenbench.projected128.quality.previous.config.json" +"repobridge.taonet.tokenbench.projected128.scale.config.json","llm_synthetic_token","1440","","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.taonet.tokenbench.projected128.scale.config.json" +"repobridge.taonet.tokenbench.projected256.quality.previous.config.json","llm_synthetic_token","1545","","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.taonet.tokenbench.projected256.quality.previous.config.json" +"repobridge.taonet.tokenbench.projected64.broadspeed.config.json","llm_synthetic_token","1448","","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.taonet.tokenbench.projected64.broadspeed.config.json" +"repobridge.taonet.tokenbench.projected64.compare.config.json","llm_synthetic_token","1441","","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.taonet.tokenbench.projected64.compare.config.json" +"repobridge.taonet.tokenbench.projected64.config.json","llm_synthetic_token","1334","","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.taonet.tokenbench.projected64.config.json" +"repobridge.taonet.tokenbench.projected64.extendedscale.config.json","llm_synthetic_token","1457","","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.taonet.tokenbench.projected64.extendedscale.config.json" +"repobridge.taonet.tokenbench.projected64.localshift.broadquality.previous.config.json","llm_synthetic_token","1623","","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.taonet.tokenbench.projected64.localshift.broadquality.previous.config.json" +"repobridge.taonet.tokenbench.projected64.localshift.convtransfer.broadquality.previous.config.json","llm_synthetic_token","1646","","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.taonet.tokenbench.projected64.localshift.convtransfer.broadquality.previous.config.json" +"repobridge.taonet.tokenbench.projected64.localshift.hidden16.previous512.config.json","llm_synthetic_token","1625","","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.taonet.tokenbench.projected64.localshift.hidden16.previous512.config.json" +"repobridge.taonet.tokenbench.projected64.localshift.hidden16.randomspeed.config.json","llm_synthetic_token","1558","","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.taonet.tokenbench.projected64.localshift.hidden16.randomspeed.config.json" +"repobridge.taonet.tokenbench.projected64.localshift.hiddensweep.previous.config.json","llm_synthetic_token","2323","","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.taonet.tokenbench.projected64.localshift.hiddensweep.previous.config.json" +"repobridge.taonet.tokenbench.projected64.localshift.hiddensweep.small.previous.config.json","llm_synthetic_token","2333","","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.taonet.tokenbench.projected64.localshift.hiddensweep.small.previous.config.json" +"repobridge.taonet.tokenbench.projected64.localshift.previous512.hiddencompare.config.json","llm_synthetic_token","2320","","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.taonet.tokenbench.projected64.localshift.previous512.hiddencompare.config.json" +"repobridge.taonet.tokenbench.projected64.localshift.quality.previous.config.json","llm_synthetic_token","1603","","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.taonet.tokenbench.projected64.localshift.quality.previous.config.json" +"repobridge.taonet.tokenbench.projected64.quality.config.json","llm_synthetic_token","1540","","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.taonet.tokenbench.projected64.quality.config.json" +"repobridge.taonet.tokenbench.projected64.quality.increment.config.json","llm_synthetic_token","1552","","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.taonet.tokenbench.projected64.quality.increment.config.json" +"repobridge.taonet.tokenbench.projected64.quality.linear.config.json","llm_synthetic_token","1641","","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.taonet.tokenbench.projected64.quality.linear.config.json" +"repobridge.taonet.tokenbench.projected64.scale.config.json","llm_synthetic_token","1438","","C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge\repobridge.taonet.tokenbench.projected64.scale.config.json" diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.ssm.bench.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.ssm.bench.config.json new file mode 100644 index 0000000000000000000000000000000000000000..3f9fa5abb2dfe2a8797551edfa2f336510fe3a93 --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.ssm.bench.config.json @@ -0,0 +1,23 @@ +{ + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\Taotern_SSM", + "remote_host": "swinburneGPU", + "remote_user": "", + "remote_port": 22, + "ssh_key_path": "", + "ssh_backend": "paramiko", + "remote_repo_path": "/home/student/YouZheng/gamma_ssm_repo", + "remote_output_path": "/home/student/YouZheng/outputs-ssm", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "local_results_path": "output/repobridge-bench", + "run_label": "ssm-dplr-light-bench", + "create_run_subdir": true, + "branch": "main", + "setup_command": "", + "train_command": "", + "test_command": "PYTHONPATH=/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_ssm_variants.py --models dplr,gamma_s4,baseline --batch-sizes 1,4 --seq-lens 128,512 --d-model 128 --hidden-dim 256 --rank 1 --dtype bf16 --device cuda --kernel-mode conv --warmup 2 --repeats 3 --backward --output-dir \"$REPOBRIDGE_OUTPUT_DIR\"", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0 +} diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.ssm.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.ssm.config.json new file mode 100644 index 0000000000000000000000000000000000000000..637d3a68c002cd320e4fa1af53b6bb15690414d4 --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.ssm.config.json @@ -0,0 +1,23 @@ +{ + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\Taotern_SSM", + "remote_host": "swinburneGPU", + "remote_user": "", + "remote_port": 22, + "ssh_key_path": "", + "ssh_backend": "paramiko", + "remote_repo_path": "/home/student/YouZheng/gamma_ssm_repo", + "remote_output_path": "/home/student/YouZheng/outputs-ssm", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "local_results_path": "output/repobridge", + "run_label": "gamma-ssm-sync", + "create_run_subdir": true, + "branch": "main", + "setup_command": "", + "train_command": "", + "test_command": "", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0 +} diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.ssm.dplrdirectprofile.b32s128.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.ssm.dplrdirectprofile.b32s128.config.json new file mode 100644 index 0000000000000000000000000000000000000000..47c8ad3ccf3d2467cc1e6fc867262bcd48cc4207 --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.ssm.dplrdirectprofile.b32s128.config.json @@ -0,0 +1,23 @@ +{ + "ssh_backend": "paramiko", + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\Taotern_SSM", + "remote_repo_path": "/home/student/YouZheng/gamma_ssm_repo", + "test_command": "PYTHONPATH=/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/profile_dplr_frequency_path.py --device cuda --dtype bf16 --batch-size 32 --seq-len 128 --d-model 64 --hidden-dim 256 --rank 1 --warmup 2 --repeats 5 --method direct --profile --row-limit 35 --output \"$REPOBRIDGE_OUTPUT_DIR/dplr_direct_b32_s128_profile.json\"", + "remote_user": "", + "train_command": "", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0, + "run_label": "ssm-dplr-direct-b32-s128-profile", + "remote_output_path": "/home/student/YouZheng/outputs-ssm", + "remote_host": "swinburneGPU", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "create_run_subdir": true, + "remote_port": 22, + "branch": "main", + "setup_command": "", + "local_results_path": "output/repobridge-dplr-direct-profile-b32-s128", + "ssh_key_path": "" +} \ No newline at end of file diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.ssm.dplrprofile.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.ssm.dplrprofile.config.json new file mode 100644 index 0000000000000000000000000000000000000000..9aabda24538b8cc27bfed7dccf3b225ee5b1c4c0 --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.ssm.dplrprofile.config.json @@ -0,0 +1,23 @@ +{ + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\Taotern_SSM", + "remote_host": "swinburneGPU", + "remote_user": "", + "remote_port": 22, + "ssh_key_path": "", + "ssh_backend": "paramiko", + "remote_repo_path": "/home/student/YouZheng/gamma_ssm_repo", + "remote_output_path": "/home/student/YouZheng/outputs-ssm", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "local_results_path": "output/repobridge-dplr-profile", + "run_label": "ssm-dplr-frequency-profile", + "create_run_subdir": true, + "branch": "main", + "setup_command": "", + "train_command": "", + "test_command": "PYTHONPATH=/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/profile_dplr_frequency_path.py --device cuda --dtype bf16 --batch-size 4 --seq-len 512 --d-model 64 --hidden-dim 256 --rank 1 --warmup 2 --repeats 5 --profile --row-limit 25 --output \"$REPOBRIDGE_OUTPUT_DIR/dplr_frequency_profile.json\"", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0 +} \ No newline at end of file diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.ssm.dplrtransferprofile.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.ssm.dplrtransferprofile.config.json new file mode 100644 index 0000000000000000000000000000000000000000..fd095ce19220e377646365fec92bc51d21ddc05e --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.ssm.dplrtransferprofile.config.json @@ -0,0 +1,23 @@ +{ + "ssh_backend": "paramiko", + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\Taotern_SSM", + "remote_repo_path": "/home/student/YouZheng/gamma_ssm_repo", + "test_command": "PYTHONPATH=/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/profile_dplr_frequency_path.py --device cuda --dtype bf16 --batch-size 8 --seq-len 128 --d-model 64 --hidden-dim 256 --rank 1 --warmup 2 --repeats 5 --method direct --output \"$REPOBRIDGE_OUTPUT_DIR/dplr_direct_b8_s128.json\" \u0026\u0026 PYTHONPATH=/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/profile_dplr_frequency_path.py --device cuda --dtype bf16 --batch-size 16 --seq-len 128 --d-model 64 --hidden-dim 256 --rank 1 --warmup 2 --repeats 5 --method direct --output \"$REPOBRIDGE_OUTPUT_DIR/dplr_direct_b16_s128.json\" \u0026\u0026 PYTHONPATH=/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/profile_dplr_frequency_path.py --device cuda --dtype bf16 --batch-size 32 --seq-len 128 --d-model 64 --hidden-dim 256 --rank 1 --warmup 2 --repeats 5 --method direct --output \"$REPOBRIDGE_OUTPUT_DIR/dplr_direct_b32_s128.json\" \u0026\u0026 PYTHONPATH=/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/profile_dplr_frequency_path.py --device cuda --dtype bf16 --batch-size 64 --seq-len 128 --d-model 64 --hidden-dim 256 --rank 1 --warmup 2 --repeats 5 --method direct --output \"$REPOBRIDGE_OUTPUT_DIR/dplr_direct_b64_s128.json\" \u0026\u0026 PYTHONPATH=/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/profile_dplr_frequency_path.py --device cuda --dtype bf16 --batch-size 8 --seq-len 128 --d-model 64 --hidden-dim 256 --rank 1 --warmup 2 --repeats 5 --method transfer --output \"$REPOBRIDGE_OUTPUT_DIR/dplr_transfer_b8_s128.json\" \u0026\u0026 PYTHONPATH=/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/profile_dplr_frequency_path.py --device cuda --dtype bf16 --batch-size 16 --seq-len 128 --d-model 64 --hidden-dim 256 --rank 1 --warmup 2 --repeats 5 --method transfer --output \"$REPOBRIDGE_OUTPUT_DIR/dplr_transfer_b16_s128.json\" \u0026\u0026 PYTHONPATH=/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/profile_dplr_frequency_path.py --device cuda --dtype bf16 --batch-size 32 --seq-len 128 --d-model 64 --hidden-dim 256 --rank 1 --warmup 2 --repeats 5 --method transfer --output \"$REPOBRIDGE_OUTPUT_DIR/dplr_transfer_b32_s128.json\" \u0026\u0026 PYTHONPATH=/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/profile_dplr_frequency_path.py --device cuda --dtype bf16 --batch-size 64 --seq-len 128 --d-model 64 --hidden-dim 256 --rank 1 --warmup 2 --repeats 5 --method transfer --output \"$REPOBRIDGE_OUTPUT_DIR/dplr_transfer_b64_s128.json\"", + "remote_user": "", + "train_command": "", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0, + "run_label": "ssm-dplr-direct-vs-transfer-s128-profile", + "remote_output_path": "/home/student/YouZheng/outputs-ssm", + "remote_host": "swinburneGPU", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "create_run_subdir": true, + "remote_port": 22, + "branch": "main", + "setup_command": "", + "local_results_path": "output/repobridge-dplr-transfer-profile", + "ssh_key_path": "" +} \ No newline at end of file diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.ssm.recurrent.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.ssm.recurrent.config.json new file mode 100644 index 0000000000000000000000000000000000000000..1cec47ee139219a10798c9a47f7f53e21f4485da --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.ssm.recurrent.config.json @@ -0,0 +1,23 @@ +{ + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\Taotern_SSM", + "remote_host": "swinburneGPU", + "remote_user": "", + "remote_port": 22, + "ssh_key_path": "", + "ssh_backend": "paramiko", + "remote_repo_path": "/home/student/YouZheng/gamma_ssm_repo", + "remote_output_path": "/home/student/YouZheng/outputs-ssm", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "local_results_path": "output/repobridge-bench", + "run_label": "ssm-dplr-recurrent-bench", + "create_run_subdir": true, + "branch": "main", + "setup_command": "", + "train_command": "", + "test_command": "PYTHONPATH=/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_ssm_variants.py --models dplr --batch-sizes 1,4 --seq-lens 128,512 --d-model 128 --hidden-dim 256 --rank 1 --dtype bf16 --device cuda --kernel-mode conv --warmup 1 --repeats 3 --recurrent --output-dir \"$REPOBRIDGE_OUTPUT_DIR\"", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0 +} diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.ssm.tilelangdiag.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.ssm.tilelangdiag.config.json new file mode 100644 index 0000000000000000000000000000000000000000..0631779d12897c52c1a9117fab05098c22c04931 --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.ssm.tilelangdiag.config.json @@ -0,0 +1,23 @@ +{ + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\Taotern_SSM", + "remote_host": "swinburneGPU", + "remote_user": "", + "remote_port": 22, + "ssh_key_path": "", + "ssh_backend": "paramiko", + "remote_repo_path": "/home/student/YouZheng/gamma_ssm_repo", + "remote_output_path": "/home/student/YouZheng/outputs-ssm", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "local_results_path": "output/repobridge-tilelang-diag", + "run_label": "ssm-tilelang-diagnostic", + "create_run_subdir": true, + "branch": "main", + "setup_command": "", + "train_command": "", + "test_command": "PYTHONPATH=/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/diagnose_tilelang_acceleration.py --device cuda --dtype bf16 --batch-size 4 --seq-len 512 --d-model 128 --hidden-dim 256 --warmup 1 --repeats 3", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0 +} \ No newline at end of file diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taodata.tokenizer.pilot.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taodata.tokenizer.pilot.config.json new file mode 100644 index 0000000000000000000000000000000000000000..dbd1c6d97ecca60052777e456c6c25aa539c5599 --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taodata.tokenizer.pilot.config.json @@ -0,0 +1,23 @@ +{ + "ssh_backend": "paramiko", + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\TaoTrain", + "remote_repo_path": "/home/student/YouZheng/repo", + "test_command": "PYTHONPATH=/home/student/YouZheng/repo/src /home/student/.venv/bin/python -m taoTrain.cli train-tokenizer --config configs/tokenizer_taodata_pilot.yaml", + "remote_user": "", + "train_command": "", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0, + "run_label": "taodata-pilot-tokenizer-train", + "remote_output_path": "/home/student/YouZheng/outputs-taotrain", + "remote_host": "swinburneGPU", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "create_run_subdir": true, + "remote_port": 22, + "branch": "codex/taonet-ssm-core", + "setup_command": "", + "local_results_path": "results/repobridge-tokenizer-taodata-pilot", + "ssh_key_path": "" +} \ No newline at end of file diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.realbyte.taodata.pilot.b64.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.realbyte.taodata.pilot.b64.config.json new file mode 100644 index 0000000000000000000000000000000000000000..945ecb782738f8d2f572f83ec4dc3b2dd5c3bff7 --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.realbyte.taodata.pilot.b64.config.json @@ -0,0 +1,23 @@ +{ + "ssh_backend": "paramiko", + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\TaoTrain", + "remote_repo_path": "/home/student/YouZheng/repo", + "test_command": "PYTHONPATH=/home/student/YouZheng/repo/src:/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_taonet_real_tokens.py --data-path /home/student/Data/TaoData/pretrain.jsonl.fineweb.jsonl --text-field text --tokenizer-type byte --max-records 5000 --max-tokens 2000000 --eval-fraction 0.1 --architectures taonet,taonet_ssm --batch-sizes 64 --seq-len 512 --hidden-dim 256 --num-layers 4 --num-heads 4 --d-latent-kv 192 --hidden-dim-ff 1024 --ssm-core dplr --ssm-hidden-dims 16,64 --ssm-mixer-dim 64 --ssm-rank 1 --ssm-kernel-mode conv --dtype bf16 --device cuda --warmup 1 --repeats 2 --backward --train-steps 150 --learning-rate 0.0008 --weight-decay 0.01 --eval-batches 8 --ssm-local-shift --ssm-local-shift-init 0.1 --output-dir \"$REPOBRIDGE_OUTPUT_DIR\"", + "remote_user": "", + "train_command": "", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0, + "run_label": "taonet-vs-ssm-real-token-taodata-byte-pilot-b64", + "remote_output_path": "/home/student/YouZheng/outputs-taotrain", + "remote_host": "swinburneGPU", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "create_run_subdir": true, + "remote_port": 22, + "branch": "codex/taonet-ssm-core", + "setup_command": "", + "local_results_path": "results/repobridge-real-token-taodata-byte-pilot-b64", + "ssh_key_path": "" +} \ No newline at end of file diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.realbyte.taodata.pilot.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.realbyte.taodata.pilot.config.json new file mode 100644 index 0000000000000000000000000000000000000000..3f89b91c906512abdd04e04031b47439cee8d749 --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.realbyte.taodata.pilot.config.json @@ -0,0 +1,23 @@ +{ + "ssh_backend": "paramiko", + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\TaoTrain", + "remote_repo_path": "/home/student/YouZheng/repo", + "test_command": "PYTHONPATH=/home/student/YouZheng/repo/src:/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_taonet_real_tokens.py --data-path /home/student/Data/TaoData/pretrain.jsonl.fineweb.jsonl --text-field text --tokenizer-type byte --max-records 5000 --max-tokens 2000000 --eval-fraction 0.1 --architectures taonet,taonet_ssm --batch-sizes 16,32 --seq-len 512 --hidden-dim 256 --num-layers 4 --num-heads 4 --d-latent-kv 192 --hidden-dim-ff 1024 --ssm-core dplr --ssm-hidden-dims 16,64 --ssm-mixer-dim 64 --ssm-rank 1 --ssm-kernel-mode conv --dtype bf16 --device cuda --warmup 1 --repeats 2 --backward --train-steps 150 --learning-rate 0.0008 --weight-decay 0.01 --eval-batches 8 --ssm-local-shift --ssm-local-shift-init 0.1 --output-dir \"$REPOBRIDGE_OUTPUT_DIR\"", + "remote_user": "", + "train_command": "", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0, + "run_label": "taonet-vs-ssm-real-token-taodata-byte-pilot", + "remote_output_path": "/home/student/YouZheng/outputs-taotrain", + "remote_host": "swinburneGPU", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "create_run_subdir": true, + "remote_port": 22, + "branch": "codex/taonet-ssm-core", + "setup_command": "", + "local_results_path": "results/repobridge-real-token-taodata-byte-pilot", + "ssh_key_path": "" +} \ No newline at end of file diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.realspm.taodata.b32.500step.channelshift.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.realspm.taodata.b32.500step.channelshift.config.json new file mode 100644 index 0000000000000000000000000000000000000000..a68314801f6cc50781a10509e7a83587888d9301 --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.realspm.taodata.b32.500step.channelshift.config.json @@ -0,0 +1,23 @@ +{ + "ssh_backend": "paramiko", + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\TaoTrain", + "remote_repo_path": "/home/student/YouZheng/repo", + "test_command": "PYTHONPATH=/home/student/YouZheng/repo/src:/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_taonet_real_tokens.py --data-path /home/student/Data/TaoData/pretrain.jsonl.fineweb.jsonl --text-field text --tokenizer-type sentencepiece --tokenizer-path /home/student/YouZheng/tokenizers/taodata_pilot_8k/tokenizer.model --max-records 10000 --max-tokens 4000000 --eval-fraction 0.1 --architectures taonet,taonet_ssm --batch-sizes 32 --seq-len 512 --hidden-dim 256 --num-layers 4 --num-heads 4 --d-latent-kv 192 --hidden-dim-ff 1024 --ssm-core dplr --ssm-hidden-dims 16,64 --ssm-mixer-dim 64 --ssm-rank 1 --ssm-kernel-mode conv --dtype bf16 --device cuda --warmup 1 --repeats 2 --backward --train-steps 500 --learning-rate 0.0008 --weight-decay 0.01 --eval-batches 16 --ssm-local-shift --ssm-local-shift-per-channel --ssm-local-shift-init 0.1 --output-dir \"$REPOBRIDGE_OUTPUT_DIR\"", + "remote_user": "", + "train_command": "", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0, + "run_label": "taonet-vs-ssm-real-token-taodata-spm-b32-500step-channel-shift", + "remote_output_path": "/home/student/YouZheng/outputs-taotrain", + "remote_host": "swinburneGPU", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "create_run_subdir": true, + "remote_port": 22, + "branch": "codex/taonet-ssm-core", + "setup_command": "", + "local_results_path": "results/repobridge-real-token-taodata-spm-b32-500step-channel-shift", + "ssh_key_path": "" +} \ No newline at end of file diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.realspm.taodata.b32.500step.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.realspm.taodata.b32.500step.config.json new file mode 100644 index 0000000000000000000000000000000000000000..15d0d58f5f0659bb80f06738945ae1f401e506c7 --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.realspm.taodata.b32.500step.config.json @@ -0,0 +1,23 @@ +{ + "ssh_backend": "paramiko", + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\TaoTrain", + "remote_repo_path": "/home/student/YouZheng/repo", + "test_command": "PYTHONPATH=/home/student/YouZheng/repo/src:/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_taonet_real_tokens.py --data-path /home/student/Data/TaoData/pretrain.jsonl.fineweb.jsonl --text-field text --tokenizer-type sentencepiece --tokenizer-path /home/student/YouZheng/tokenizers/taodata_pilot_8k/tokenizer.model --max-records 10000 --max-tokens 4000000 --eval-fraction 0.1 --architectures taonet,taonet_ssm --batch-sizes 32 --seq-len 512 --hidden-dim 256 --num-layers 4 --num-heads 4 --d-latent-kv 192 --hidden-dim-ff 1024 --ssm-core dplr --ssm-hidden-dims 16,64 --ssm-mixer-dim 64 --ssm-rank 1 --ssm-kernel-mode conv --dtype bf16 --device cuda --warmup 1 --repeats 2 --backward --train-steps 500 --learning-rate 0.0008 --weight-decay 0.01 --eval-batches 16 --ssm-local-shift --ssm-local-shift-init 0.1 --output-dir \"$REPOBRIDGE_OUTPUT_DIR\"", + "remote_user": "", + "train_command": "", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0, + "run_label": "taonet-vs-ssm-real-token-taodata-spm-b32-500step", + "remote_output_path": "/home/student/YouZheng/outputs-taotrain", + "remote_host": "swinburneGPU", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "create_run_subdir": true, + "remote_port": 22, + "branch": "codex/taonet-ssm-core", + "setup_command": "", + "local_results_path": "results/repobridge-real-token-taodata-spm-b32-500step", + "ssh_key_path": "" +} \ No newline at end of file diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.realspm.taodata.b32.500step.mixersweep.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.realspm.taodata.b32.500step.mixersweep.config.json new file mode 100644 index 0000000000000000000000000000000000000000..bc59e535b2c8cc9695b68726dd536776d7828fca --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.realspm.taodata.b32.500step.mixersweep.config.json @@ -0,0 +1,23 @@ +{ + "ssh_backend": "paramiko", + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\TaoTrain", + "remote_repo_path": "/home/student/YouZheng/repo", + "test_command": "PYTHONPATH=/home/student/YouZheng/repo/src:/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_taonet_real_tokens.py --data-path /home/student/Data/TaoData/pretrain.jsonl.fineweb.jsonl --text-field text --tokenizer-type sentencepiece --tokenizer-path /home/student/YouZheng/tokenizers/taodata_pilot_8k/tokenizer.model --max-records 10000 --max-tokens 4000000 --eval-fraction 0.1 --architectures taonet,taonet_ssm --batch-sizes 32 --seq-len 512 --hidden-dim 256 --num-layers 4 --num-heads 4 --d-latent-kv 192 --hidden-dim-ff 1024 --ssm-core dplr --ssm-hidden-dims 16,64 --ssm-mixer-dim 64 --ssm-mixer-dims 64,96,128 --ssm-rank 1 --ssm-kernel-mode conv --dtype bf16 --device cuda --warmup 1 --repeats 2 --backward --train-steps 500 --learning-rate 0.0008 --weight-decay 0.01 --eval-batches 16 --ssm-local-shift --ssm-local-shift-per-channel --ssm-local-shift-init 0.1 --output-dir \"$REPOBRIDGE_OUTPUT_DIR\"", + "remote_user": "", + "train_command": "", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0, + "run_label": "taonet-vs-ssm-real-token-taodata-spm-b32-500step-mixersweep", + "remote_output_path": "/home/student/YouZheng/outputs-taotrain", + "remote_host": "swinburneGPU", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "create_run_subdir": true, + "remote_port": 22, + "branch": "codex/taonet-ssm-core", + "setup_command": "", + "local_results_path": "results/repobridge-real-token-taodata-spm-b32-500step-mixersweep", + "ssh_key_path": "" +} diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.realspm.taodata.b32.500step.noshift.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.realspm.taodata.b32.500step.noshift.config.json new file mode 100644 index 0000000000000000000000000000000000000000..a11a83d167d32018989e3480beabf921d5703c0a --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.realspm.taodata.b32.500step.noshift.config.json @@ -0,0 +1,23 @@ +{ + "ssh_backend": "paramiko", + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\TaoTrain", + "remote_repo_path": "/home/student/YouZheng/repo", + "test_command": "PYTHONPATH=/home/student/YouZheng/repo/src:/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_taonet_real_tokens.py --data-path /home/student/Data/TaoData/pretrain.jsonl.fineweb.jsonl --text-field text --tokenizer-type sentencepiece --tokenizer-path /home/student/YouZheng/tokenizers/taodata_pilot_8k/tokenizer.model --max-records 10000 --max-tokens 4000000 --eval-fraction 0.1 --architectures taonet_ssm --batch-sizes 32 --seq-len 512 --hidden-dim 256 --num-layers 4 --num-heads 4 --d-latent-kv 192 --hidden-dim-ff 1024 --ssm-core dplr --ssm-hidden-dims 16,64 --ssm-mixer-dim 64 --ssm-rank 1 --ssm-kernel-mode conv --dtype bf16 --device cuda --warmup 1 --repeats 2 --backward --train-steps 500 --learning-rate 0.0008 --weight-decay 0.01 --eval-batches 16 --no-ssm-local-shift --output-dir \"$REPOBRIDGE_OUTPUT_DIR\"", + "remote_user": "", + "train_command": "", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0, + "run_label": "taonet-ssm-real-token-taodata-spm-b32-500step-no-shift", + "remote_output_path": "/home/student/YouZheng/outputs-taotrain", + "remote_host": "swinburneGPU", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "create_run_subdir": true, + "remote_port": 22, + "branch": "codex/taonet-ssm-core", + "setup_command": "", + "local_results_path": "results/repobridge-real-token-taodata-spm-b32-500step-no-shift", + "ssh_key_path": "" +} \ No newline at end of file diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.realspm.taodata.h16m128.batchsweep.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.realspm.taodata.h16m128.batchsweep.config.json new file mode 100644 index 0000000000000000000000000000000000000000..71b55ce645160f33f9fb0b53dd6ff8e18110f1fe --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.realspm.taodata.h16m128.batchsweep.config.json @@ -0,0 +1,23 @@ +{ + "ssh_backend": "paramiko", + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\TaoTrain", + "remote_repo_path": "/home/student/YouZheng/repo", + "test_command": "PYTHONPATH=/home/student/YouZheng/repo/src:/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_taonet_real_tokens.py --data-path /home/student/Data/TaoData/pretrain.jsonl.fineweb.jsonl --text-field text --tokenizer-type sentencepiece --tokenizer-path /home/student/YouZheng/tokenizers/taodata_pilot_8k/tokenizer.model --max-records 10000 --max-tokens 4000000 --eval-fraction 0.1 --architectures taonet,taonet_ssm --batch-sizes 16,32,64 --seq-len 512 --hidden-dim 256 --num-layers 4 --num-heads 4 --d-latent-kv 192 --hidden-dim-ff 1024 --ssm-core dplr --ssm-hidden-dims 16 --ssm-mixer-dim 128 --ssm-mixer-dims 128 --ssm-rank 1 --ssm-kernel-mode conv --dtype bf16 --device cuda --warmup 1 --repeats 2 --backward --train-steps 500 --learning-rate 0.0008 --weight-decay 0.01 --eval-batches 16 --ssm-local-shift --ssm-local-shift-per-channel --ssm-local-shift-init 0.1 --output-dir \"$REPOBRIDGE_OUTPUT_DIR\"", + "remote_user": "", + "train_command": "", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0, + "run_label": "taonet-vs-ssm-real-token-taodata-spm-h16m128-batchsweep", + "remote_output_path": "/home/student/YouZheng/outputs-taotrain", + "remote_host": "swinburneGPU", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "create_run_subdir": true, + "remote_port": 22, + "branch": "codex/taonet-ssm-core", + "setup_command": "", + "local_results_path": "results/repobridge-real-token-taodata-spm-h16m128-batchsweep", + "ssh_key_path": "" +} diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.realspm.taodata.pilot.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.realspm.taodata.pilot.config.json new file mode 100644 index 0000000000000000000000000000000000000000..6375b642311505c1ba07fa3b5e521d58d23a4f13 --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.realspm.taodata.pilot.config.json @@ -0,0 +1,23 @@ +{ + "ssh_backend": "paramiko", + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\TaoTrain", + "remote_repo_path": "/home/student/YouZheng/repo", + "test_command": "PYTHONPATH=/home/student/YouZheng/repo/src:/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_taonet_real_tokens.py --data-path /home/student/Data/TaoData/pretrain.jsonl.fineweb.jsonl --text-field text --tokenizer-type sentencepiece --tokenizer-path /home/student/YouZheng/tokenizers/taodata_pilot_8k/tokenizer.model --max-records 5000 --max-tokens 2000000 --eval-fraction 0.1 --architectures taonet,taonet_ssm --batch-sizes 16,32,64 --seq-len 512 --hidden-dim 256 --num-layers 4 --num-heads 4 --d-latent-kv 192 --hidden-dim-ff 1024 --ssm-core dplr --ssm-hidden-dims 16,64 --ssm-mixer-dim 64 --ssm-rank 1 --ssm-kernel-mode conv --dtype bf16 --device cuda --warmup 1 --repeats 2 --backward --train-steps 150 --learning-rate 0.0008 --weight-decay 0.01 --eval-batches 8 --ssm-local-shift --ssm-local-shift-init 0.1 --output-dir \"$REPOBRIDGE_OUTPUT_DIR\"", + "remote_user": "", + "train_command": "", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0, + "run_label": "taonet-vs-ssm-real-token-taodata-spm-pilot", + "remote_output_path": "/home/student/YouZheng/outputs-taotrain", + "remote_host": "swinburneGPU", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "create_run_subdir": true, + "remote_port": 22, + "branch": "codex/taonet-ssm-core", + "setup_command": "", + "local_results_path": "results/repobridge-real-token-taodata-spm-pilot", + "ssh_key_path": "" +} \ No newline at end of file diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.config.json new file mode 100644 index 0000000000000000000000000000000000000000..8eff517639a3197e5f3e22c8d330d5655c0847d9 --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.config.json @@ -0,0 +1,23 @@ +{ + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\TaoTrain", + "remote_host": "swinburneGPU", + "remote_user": "", + "remote_port": 22, + "ssh_key_path": "", + "ssh_backend": "paramiko", + "remote_repo_path": "/home/student/YouZheng/repo", + "remote_output_path": "/home/student/YouZheng/outputs-taotrain", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "local_results_path": "results/repobridge-token-bench", + "run_label": "taonet-token-dplr-bench", + "create_run_subdir": true, + "branch": "codex/taonet-ssm-core", + "setup_command": "", + "train_command": "", + "test_command": "PYTHONPATH=/home/student/YouZheng/repo/src:/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_taonet_token_variants.py --architectures taonet,taonet_ssm --batch-sizes 1,4 --seq-lens 128,512 --vocab-size 8192 --hidden-dim 256 --num-layers 4 --num-heads 4 --d-latent-kv 192 --hidden-dim-ff 1024 --ssm-core dplr --ssm-hidden-dim 256 --ssm-rank 1 --ssm-kernel-mode conv --dtype bf16 --device cuda --warmup 2 --repeats 3 --backward --output-dir \"$REPOBRIDGE_OUTPUT_DIR\"", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0 +} diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected128.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected128.config.json new file mode 100644 index 0000000000000000000000000000000000000000..d48eb13710a34b900694e53b25bf92f10fcfa4c4 --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected128.config.json @@ -0,0 +1,23 @@ +{ + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\TaoTrain", + "remote_host": "swinburneGPU", + "remote_user": "", + "remote_port": 22, + "ssh_key_path": "", + "ssh_backend": "paramiko", + "remote_repo_path": "/home/student/YouZheng/repo", + "remote_output_path": "/home/student/YouZheng/outputs-taotrain", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "local_results_path": "results/repobridge-token-bench-projected", + "run_label": "taonet-token-dplr-proj128-bench", + "create_run_subdir": true, + "branch": "codex/taonet-ssm-core", + "setup_command": "", + "train_command": "", + "test_command": "PYTHONPATH=/home/student/YouZheng/repo/src:/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_taonet_token_variants.py --architectures taonet,taonet_ssm --batch-sizes 1,4 --seq-lens 128,512 --vocab-size 8192 --hidden-dim 256 --num-layers 4 --num-heads 4 --d-latent-kv 192 --hidden-dim-ff 1024 --ssm-core dplr --ssm-hidden-dim 256 --ssm-mixer-dim 128 --ssm-rank 1 --ssm-kernel-mode conv --dtype bf16 --device cuda --warmup 2 --repeats 3 --backward --output-dir \"$REPOBRIDGE_OUTPUT_DIR\"", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0 +} diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected128.quality.previous.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected128.quality.previous.config.json new file mode 100644 index 0000000000000000000000000000000000000000..1292f121224636f682f2584b71b2989788747c8b --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected128.quality.previous.config.json @@ -0,0 +1,23 @@ +{ + "remote_user": "", + "branch": "codex/taonet-ssm-core", + "remote_repo_path": "/home/student/YouZheng/repo", + "create_run_subdir": true, + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\TaoTrain", + "remote_host": "swinburneGPU", + "remote_write_root": "/home/student/YouZheng", + "run_label": "taonet-vs-dplr-proj128-previous-token-quality", + "ssh_key_path": "", + "setup_command": "", + "test_command": "PYTHONPATH=/home/student/YouZheng/repo/src:/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_taonet_token_variants.py --architectures taonet,taonet_ssm --batch-sizes 32 --seq-lens 128 --vocab-size 128 --hidden-dim 256 --num-layers 4 --num-heads 4 --d-latent-kv 192 --hidden-dim-ff 1024 --ssm-core dplr --ssm-hidden-dim 256 --ssm-mixer-dim 128 --ssm-rank 1 --ssm-kernel-mode conv --dtype bf16 --device cuda --warmup 1 --repeats 2 --backward --token-task previous --train-steps 100 --learning-rate 0.0008 --weight-decay 0.01 --eval-batches 4 --output-dir \"$REPOBRIDGE_OUTPUT_DIR\"", + "connect_timeout_seconds": 30, + "remote_port": 22, + "train_command": "", + "local_results_path": "results/repobridge-token-bench-proj128-quality", + "remote_output_path": "/home/student/YouZheng/outputs-taotrain", + "ssh_backend": "paramiko", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "command_timeout_seconds": 0 +} diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected128.scale.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected128.scale.config.json new file mode 100644 index 0000000000000000000000000000000000000000..05407f0f7f18f93cf1500b6b9916add7fec02270 --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected128.scale.config.json @@ -0,0 +1,23 @@ +{ + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\TaoTrain", + "remote_host": "swinburneGPU", + "remote_user": "", + "remote_port": 22, + "ssh_key_path": "", + "ssh_backend": "paramiko", + "remote_repo_path": "/home/student/YouZheng/repo", + "remote_output_path": "/home/student/YouZheng/outputs-taotrain", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "local_results_path": "results/repobridge-token-bench-projected-scale", + "run_label": "taonet-token-dplr-proj128-scale-bench", + "create_run_subdir": true, + "branch": "codex/taonet-ssm-core", + "setup_command": "", + "train_command": "", + "test_command": "PYTHONPATH=/home/student/YouZheng/repo/src:/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_taonet_token_variants.py --architectures taonet,taonet_ssm --batch-sizes 8,16 --seq-lens 512 --vocab-size 8192 --hidden-dim 256 --num-layers 4 --num-heads 4 --d-latent-kv 192 --hidden-dim-ff 1024 --ssm-core dplr --ssm-hidden-dim 256 --ssm-mixer-dim 128 --ssm-rank 1 --ssm-kernel-mode conv --dtype bf16 --device cuda --warmup 2 --repeats 3 --backward --output-dir \"$REPOBRIDGE_OUTPUT_DIR\"", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0 +} diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected256.quality.previous.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected256.quality.previous.config.json new file mode 100644 index 0000000000000000000000000000000000000000..686e9c16ec6d27f7db1ffaf9baa9dea2b731d311 --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected256.quality.previous.config.json @@ -0,0 +1,23 @@ +{ + "remote_user": "", + "branch": "codex/taonet-ssm-core", + "remote_repo_path": "/home/student/YouZheng/repo", + "create_run_subdir": true, + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\TaoTrain", + "remote_host": "swinburneGPU", + "remote_write_root": "/home/student/YouZheng", + "run_label": "taonet-vs-dplr-proj256-previous-token-quality", + "ssh_key_path": "", + "setup_command": "", + "test_command": "PYTHONPATH=/home/student/YouZheng/repo/src:/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_taonet_token_variants.py --architectures taonet,taonet_ssm --batch-sizes 32 --seq-lens 128 --vocab-size 128 --hidden-dim 256 --num-layers 4 --num-heads 4 --d-latent-kv 192 --hidden-dim-ff 1024 --ssm-core dplr --ssm-hidden-dim 256 --ssm-mixer-dim 256 --ssm-rank 1 --ssm-kernel-mode conv --dtype bf16 --device cuda --warmup 1 --repeats 2 --backward --token-task previous --train-steps 100 --learning-rate 0.0008 --weight-decay 0.01 --eval-batches 4 --output-dir \"$REPOBRIDGE_OUTPUT_DIR\"", + "connect_timeout_seconds": 30, + "remote_port": 22, + "train_command": "", + "local_results_path": "results/repobridge-token-bench-proj256-quality", + "remote_output_path": "/home/student/YouZheng/outputs-taotrain", + "ssh_backend": "paramiko", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "command_timeout_seconds": 0 +} diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.broadspeed.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.broadspeed.config.json new file mode 100644 index 0000000000000000000000000000000000000000..98ab92fd603cc3e6e6ef0962bb2f465d5b199f21 --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.broadspeed.config.json @@ -0,0 +1,23 @@ +{ + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\TaoTrain", + "remote_host": "swinburneGPU", + "remote_user": "", + "remote_port": 22, + "ssh_key_path": "", + "ssh_backend": "paramiko", + "remote_repo_path": "/home/student/YouZheng/repo", + "remote_output_path": "/home/student/YouZheng/outputs-taotrain", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "local_results_path": "results/repobridge-token-bench-proj64-broad-speed", + "run_label": "taonet-vs-dplr-proj64-broad-speed-bench", + "create_run_subdir": true, + "branch": "codex/taonet-ssm-core", + "setup_command": "", + "train_command": "", + "test_command": "PYTHONPATH=/home/student/YouZheng/repo/src:/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_taonet_token_variants.py --architectures taonet,taonet_ssm --batch-sizes 8,16,32,64 --seq-lens 512 --vocab-size 8192 --hidden-dim 256 --num-layers 4 --num-heads 4 --d-latent-kv 192 --hidden-dim-ff 1024 --ssm-core dplr --ssm-hidden-dim 256 --ssm-mixer-dim 64 --ssm-rank 1 --ssm-kernel-mode conv --dtype bf16 --device cuda --warmup 2 --repeats 3 --backward --output-dir \"$REPOBRIDGE_OUTPUT_DIR\"", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0 +} \ No newline at end of file diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.compare.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.compare.config.json new file mode 100644 index 0000000000000000000000000000000000000000..61106d65a16b6a932a8512fe3d64bed8fe024218 --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.compare.config.json @@ -0,0 +1,23 @@ +{ + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\TaoTrain", + "remote_host": "swinburneGPU", + "remote_user": "", + "remote_port": 22, + "ssh_key_path": "", + "ssh_backend": "paramiko", + "remote_repo_path": "/home/student/YouZheng/repo", + "remote_output_path": "/home/student/YouZheng/outputs-taotrain", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "local_results_path": "results/repobridge-token-bench-compare-proj64", + "run_label": "taonet-vs-dplr-proj64-shared-grid-bench", + "create_run_subdir": true, + "branch": "codex/taonet-ssm-core", + "setup_command": "", + "train_command": "", + "test_command": "PYTHONPATH=/home/student/YouZheng/repo/src:/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_taonet_token_variants.py --architectures taonet,taonet_ssm --batch-sizes 1,4 --seq-lens 128,512 --vocab-size 8192 --hidden-dim 256 --num-layers 4 --num-heads 4 --d-latent-kv 192 --hidden-dim-ff 1024 --ssm-core dplr --ssm-hidden-dim 256 --ssm-mixer-dim 64 --ssm-rank 1 --ssm-kernel-mode conv --dtype bf16 --device cuda --warmup 2 --repeats 3 --backward --output-dir \"$REPOBRIDGE_OUTPUT_DIR\"", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0 +} \ No newline at end of file diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.config.json new file mode 100644 index 0000000000000000000000000000000000000000..832a83d704e5ffdbded73dc54cfecfcf6d718f6c --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.config.json @@ -0,0 +1,23 @@ +{ + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\TaoTrain", + "remote_host": "swinburneGPU", + "remote_user": "", + "remote_port": 22, + "ssh_key_path": "", + "ssh_backend": "paramiko", + "remote_repo_path": "/home/student/YouZheng/repo", + "remote_output_path": "/home/student/YouZheng/outputs-taotrain", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "local_results_path": "results/repobridge-token-bench-projected", + "run_label": "taonet-token-dplr-proj64-bench", + "create_run_subdir": true, + "branch": "codex/taonet-ssm-core", + "setup_command": "", + "train_command": "", + "test_command": "PYTHONPATH=/home/student/YouZheng/repo/src:/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_taonet_token_variants.py --architectures taonet_ssm --batch-sizes 1,4 --seq-lens 128,512 --vocab-size 8192 --hidden-dim 256 --num-layers 4 --num-heads 4 --d-latent-kv 192 --hidden-dim-ff 1024 --ssm-core dplr --ssm-hidden-dim 256 --ssm-mixer-dim 64 --ssm-rank 1 --ssm-kernel-mode conv --dtype bf16 --device cuda --warmup 2 --repeats 3 --backward --output-dir \"$REPOBRIDGE_OUTPUT_DIR\"", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0 +} diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.extendedscale.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.extendedscale.config.json new file mode 100644 index 0000000000000000000000000000000000000000..a0c6796b4d6dce109d0eb0c080cd2985e212500b --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.extendedscale.config.json @@ -0,0 +1,23 @@ +{ + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\TaoTrain", + "remote_host": "swinburneGPU", + "remote_user": "", + "remote_port": 22, + "ssh_key_path": "", + "ssh_backend": "paramiko", + "remote_repo_path": "/home/student/YouZheng/repo", + "remote_output_path": "/home/student/YouZheng/outputs-taotrain", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "local_results_path": "results/repobridge-token-bench-projected64-extended-scale", + "run_label": "taonet-token-dplr-proj64-extended-scale-bench", + "create_run_subdir": true, + "branch": "codex/taonet-ssm-core", + "setup_command": "", + "train_command": "", + "test_command": "PYTHONPATH=/home/student/YouZheng/repo/src:/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_taonet_token_variants.py --architectures taonet,taonet_ssm --batch-sizes 32,64 --seq-lens 512 --vocab-size 8192 --hidden-dim 256 --num-layers 4 --num-heads 4 --d-latent-kv 192 --hidden-dim-ff 1024 --ssm-core dplr --ssm-hidden-dim 256 --ssm-mixer-dim 64 --ssm-rank 1 --ssm-kernel-mode conv --dtype bf16 --device cuda --warmup 2 --repeats 3 --backward --output-dir \"$REPOBRIDGE_OUTPUT_DIR\"", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0 +} \ No newline at end of file diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.localshift.broadquality.previous.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.localshift.broadquality.previous.config.json new file mode 100644 index 0000000000000000000000000000000000000000..71a996fc5f167bb7a861daa9a6c338888c930bb6 --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.localshift.broadquality.previous.config.json @@ -0,0 +1,23 @@ +{ + "ssh_backend": "paramiko", + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\TaoTrain", + "remote_repo_path": "/home/student/YouZheng/repo", + "test_command": "PYTHONPATH=/home/student/YouZheng/repo/src:/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_taonet_token_variants.py --architectures taonet,taonet_ssm --batch-sizes 8,16,32,64 --seq-lens 128 --vocab-size 128 --hidden-dim 256 --num-layers 4 --num-heads 4 --d-latent-kv 192 --hidden-dim-ff 1024 --ssm-core dplr --ssm-hidden-dim 256 --ssm-mixer-dim 64 --ssm-rank 1 --ssm-kernel-mode conv --dtype bf16 --device cuda --warmup 1 --repeats 2 --backward --token-task previous --train-steps 100 --learning-rate 0.0008 --weight-decay 0.01 --eval-batches 4 --ssm-local-shift --ssm-local-shift-init 0.1 --output-dir \"$REPOBRIDGE_OUTPUT_DIR\"", + "remote_user": "", + "train_command": "", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0, + "run_label": "taonet-vs-dplr-proj64-local-shift-previous-broad-quality", + "remote_output_path": "/home/student/YouZheng/outputs-taotrain", + "remote_host": "swinburneGPU", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "create_run_subdir": true, + "remote_port": 22, + "branch": "codex/taonet-ssm-core", + "setup_command": "", + "local_results_path": "results/repobridge-token-bench-proj64-local-shift-broad-quality", + "ssh_key_path": "" +} \ No newline at end of file diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.localshift.convtransfer.broadquality.previous.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.localshift.convtransfer.broadquality.previous.config.json new file mode 100644 index 0000000000000000000000000000000000000000..49ab23000d40dbbd7383b06563ba14501c48433b --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.localshift.convtransfer.broadquality.previous.config.json @@ -0,0 +1,23 @@ +{ + "ssh_backend": "paramiko", + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\TaoTrain", + "remote_repo_path": "/home/student/YouZheng/repo", + "test_command": "PYTHONPATH=/home/student/YouZheng/repo/src:/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_taonet_token_variants.py --architectures taonet,taonet_ssm --batch-sizes 8,16,32,64 --seq-lens 128 --vocab-size 128 --hidden-dim 256 --num-layers 4 --num-heads 4 --d-latent-kv 192 --hidden-dim-ff 1024 --ssm-core dplr --ssm-hidden-dim 256 --ssm-mixer-dim 64 --ssm-rank 1 --ssm-kernel-mode conv_transfer --dtype bf16 --device cuda --warmup 1 --repeats 2 --backward --token-task previous --train-steps 100 --learning-rate 0.0008 --weight-decay 0.01 --eval-batches 4 --ssm-local-shift --ssm-local-shift-init 0.1 --output-dir \"$REPOBRIDGE_OUTPUT_DIR\"", + "remote_user": "", + "train_command": "", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0, + "run_label": "taonet-vs-dplr-proj64-local-shift-conv-transfer-previous-broad-quality", + "remote_output_path": "/home/student/YouZheng/outputs-taotrain", + "remote_host": "swinburneGPU", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "create_run_subdir": true, + "remote_port": 22, + "branch": "codex/taonet-ssm-core", + "setup_command": "", + "local_results_path": "results/repobridge-token-bench-proj64-local-shift-conv-transfer", + "ssh_key_path": "" +} \ No newline at end of file diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.localshift.hidden16.previous512.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.localshift.hidden16.previous512.config.json new file mode 100644 index 0000000000000000000000000000000000000000..c958f37270f5c58ef255d6ca9c87fc5b25776ea7 --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.localshift.hidden16.previous512.config.json @@ -0,0 +1,23 @@ +{ + "ssh_backend": "paramiko", + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\TaoTrain", + "remote_repo_path": "/home/student/YouZheng/repo", + "test_command": "PYTHONPATH=/home/student/YouZheng/repo/src:/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_taonet_token_variants.py --architectures taonet,taonet_ssm --batch-sizes 16,32,64 --seq-lens 512 --vocab-size 128 --hidden-dim 256 --num-layers 4 --num-heads 4 --d-latent-kv 192 --hidden-dim-ff 1024 --ssm-core dplr --ssm-hidden-dim 16 --ssm-mixer-dim 64 --ssm-rank 1 --ssm-kernel-mode conv --dtype bf16 --device cuda --warmup 1 --repeats 2 --backward --token-task previous --train-steps 100 --learning-rate 0.0008 --weight-decay 0.01 --eval-batches 4 --ssm-local-shift --ssm-local-shift-init 0.1 --output-dir \"$REPOBRIDGE_OUTPUT_DIR\"", + "remote_user": "", + "train_command": "", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0, + "run_label": "taonet-vs-dplr-proj64-local-shift-hidden16-previous512", + "remote_output_path": "/home/student/YouZheng/outputs-taotrain", + "remote_host": "swinburneGPU", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "create_run_subdir": true, + "remote_port": 22, + "branch": "codex/taonet-ssm-core", + "setup_command": "", + "local_results_path": "results/repobridge-token-bench-proj64-local-shift-hidden16-previous512", + "ssh_key_path": "" +} \ No newline at end of file diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.localshift.hidden16.randomspeed.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.localshift.hidden16.randomspeed.config.json new file mode 100644 index 0000000000000000000000000000000000000000..24907a73998e9658c0529b1672e302033913a6f7 --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.localshift.hidden16.randomspeed.config.json @@ -0,0 +1,23 @@ +{ + "ssh_backend": "paramiko", + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\TaoTrain", + "remote_repo_path": "/home/student/YouZheng/repo", + "test_command": "PYTHONPATH=/home/student/YouZheng/repo/src:/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_taonet_token_variants.py --architectures taonet,taonet_ssm --batch-sizes 16,32,64 --seq-lens 512 --vocab-size 8192 --hidden-dim 256 --num-layers 4 --num-heads 4 --d-latent-kv 192 --hidden-dim-ff 1024 --ssm-core dplr --ssm-hidden-dim 16 --ssm-mixer-dim 64 --ssm-rank 1 --ssm-kernel-mode conv --dtype bf16 --device cuda --warmup 1 --repeats 2 --backward --token-task random --eval-batches 1 --ssm-local-shift --ssm-local-shift-init 0.1 --output-dir \"$REPOBRIDGE_OUTPUT_DIR\"", + "remote_user": "", + "train_command": "", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0, + "run_label": "taonet-vs-dplr-proj64-local-shift-hidden16-random-speed", + "remote_output_path": "/home/student/YouZheng/outputs-taotrain", + "remote_host": "swinburneGPU", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "create_run_subdir": true, + "remote_port": 22, + "branch": "codex/taonet-ssm-core", + "setup_command": "", + "local_results_path": "results/repobridge-token-bench-proj64-local-shift-hidden16-speed", + "ssh_key_path": "" +} \ No newline at end of file diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.localshift.hiddensweep.previous.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.localshift.hiddensweep.previous.config.json new file mode 100644 index 0000000000000000000000000000000000000000..de057b6f4b89d63d561228e7fae74b1aff47299e --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.localshift.hiddensweep.previous.config.json @@ -0,0 +1,23 @@ +{ + "ssh_backend": "paramiko", + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\TaoTrain", + "remote_repo_path": "/home/student/YouZheng/repo", + "test_command": "PYTHONPATH=/home/student/YouZheng/repo/src:/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_taonet_token_variants.py --architectures taonet,taonet_ssm --batch-sizes 8,16,32,64 --seq-lens 128 --vocab-size 128 --hidden-dim 256 --num-layers 4 --num-heads 4 --d-latent-kv 192 --hidden-dim-ff 1024 --ssm-core dplr --ssm-hidden-dim 64 --ssm-mixer-dim 64 --ssm-rank 1 --ssm-kernel-mode conv --dtype bf16 --device cuda --warmup 1 --repeats 2 --backward --token-task previous --train-steps 100 --learning-rate 0.0008 --weight-decay 0.01 --eval-batches 4 --ssm-local-shift --ssm-local-shift-init 0.1 --output-dir \"$REPOBRIDGE_OUTPUT_DIR/hidden_64\" \u0026\u0026 PYTHONPATH=/home/student/YouZheng/repo/src:/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_taonet_token_variants.py --architectures taonet,taonet_ssm --batch-sizes 8,16,32,64 --seq-lens 128 --vocab-size 128 --hidden-dim 256 --num-layers 4 --num-heads 4 --d-latent-kv 192 --hidden-dim-ff 1024 --ssm-core dplr --ssm-hidden-dim 128 --ssm-mixer-dim 64 --ssm-rank 1 --ssm-kernel-mode conv --dtype bf16 --device cuda --warmup 1 --repeats 2 --backward --token-task previous --train-steps 100 --learning-rate 0.0008 --weight-decay 0.01 --eval-batches 4 --ssm-local-shift --ssm-local-shift-init 0.1 --output-dir \"$REPOBRIDGE_OUTPUT_DIR/hidden_128\"", + "remote_user": "", + "train_command": "", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0, + "run_label": "taonet-vs-dplr-proj64-local-shift-hidden-sweep-previous", + "remote_output_path": "/home/student/YouZheng/outputs-taotrain", + "remote_host": "swinburneGPU", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "create_run_subdir": true, + "remote_port": 22, + "branch": "codex/taonet-ssm-core", + "setup_command": "", + "local_results_path": "results/repobridge-token-bench-proj64-local-shift-hidden-sweep", + "ssh_key_path": "" +} \ No newline at end of file diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.localshift.hiddensweep.small.previous.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.localshift.hiddensweep.small.previous.config.json new file mode 100644 index 0000000000000000000000000000000000000000..67cfad7551df485308bcc70c628ae48b779a06d4 --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.localshift.hiddensweep.small.previous.config.json @@ -0,0 +1,23 @@ +{ + "ssh_backend": "paramiko", + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\TaoTrain", + "remote_repo_path": "/home/student/YouZheng/repo", + "test_command": "PYTHONPATH=/home/student/YouZheng/repo/src:/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_taonet_token_variants.py --architectures taonet,taonet_ssm --batch-sizes 8,16,32,64 --seq-lens 128 --vocab-size 128 --hidden-dim 256 --num-layers 4 --num-heads 4 --d-latent-kv 192 --hidden-dim-ff 1024 --ssm-core dplr --ssm-hidden-dim 16 --ssm-mixer-dim 64 --ssm-rank 1 --ssm-kernel-mode conv --dtype bf16 --device cuda --warmup 1 --repeats 2 --backward --token-task previous --train-steps 100 --learning-rate 0.0008 --weight-decay 0.01 --eval-batches 4 --ssm-local-shift --ssm-local-shift-init 0.1 --output-dir \"$REPOBRIDGE_OUTPUT_DIR/hidden_16\" \u0026\u0026 PYTHONPATH=/home/student/YouZheng/repo/src:/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_taonet_token_variants.py --architectures taonet,taonet_ssm --batch-sizes 8,16,32,64 --seq-lens 128 --vocab-size 128 --hidden-dim 256 --num-layers 4 --num-heads 4 --d-latent-kv 192 --hidden-dim-ff 1024 --ssm-core dplr --ssm-hidden-dim 32 --ssm-mixer-dim 64 --ssm-rank 1 --ssm-kernel-mode conv --dtype bf16 --device cuda --warmup 1 --repeats 2 --backward --token-task previous --train-steps 100 --learning-rate 0.0008 --weight-decay 0.01 --eval-batches 4 --ssm-local-shift --ssm-local-shift-init 0.1 --output-dir \"$REPOBRIDGE_OUTPUT_DIR/hidden_32\"", + "remote_user": "", + "train_command": "", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0, + "run_label": "taonet-vs-dplr-proj64-local-shift-hidden-small-sweep-previous", + "remote_output_path": "/home/student/YouZheng/outputs-taotrain", + "remote_host": "swinburneGPU", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "create_run_subdir": true, + "remote_port": 22, + "branch": "codex/taonet-ssm-core", + "setup_command": "", + "local_results_path": "results/repobridge-token-bench-proj64-local-shift-hidden-sweep-small", + "ssh_key_path": "" +} \ No newline at end of file diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.localshift.previous512.hiddencompare.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.localshift.previous512.hiddencompare.config.json new file mode 100644 index 0000000000000000000000000000000000000000..f7ae474877c3ffef6bca3e62f1e3bf5adb140ac1 --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.localshift.previous512.hiddencompare.config.json @@ -0,0 +1,23 @@ +{ + "ssh_backend": "paramiko", + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\TaoTrain", + "remote_repo_path": "/home/student/YouZheng/repo", + "test_command": "PYTHONPATH=/home/student/YouZheng/repo/src:/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_taonet_token_variants.py --architectures taonet_ssm --batch-sizes 16,32,64 --seq-lens 512 --vocab-size 128 --hidden-dim 256 --num-layers 4 --num-heads 4 --d-latent-kv 192 --hidden-dim-ff 1024 --ssm-core dplr --ssm-hidden-dim 64 --ssm-mixer-dim 64 --ssm-rank 1 --ssm-kernel-mode conv --dtype bf16 --device cuda --warmup 1 --repeats 2 --backward --token-task previous --train-steps 100 --learning-rate 0.0008 --weight-decay 0.01 --eval-batches 4 --ssm-local-shift --ssm-local-shift-init 0.1 --output-dir \"$REPOBRIDGE_OUTPUT_DIR/hidden_64\" \u0026\u0026 PYTHONPATH=/home/student/YouZheng/repo/src:/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_taonet_token_variants.py --architectures taonet_ssm --batch-sizes 16,32,64 --seq-lens 512 --vocab-size 128 --hidden-dim 256 --num-layers 4 --num-heads 4 --d-latent-kv 192 --hidden-dim-ff 1024 --ssm-core dplr --ssm-hidden-dim 256 --ssm-mixer-dim 64 --ssm-rank 1 --ssm-kernel-mode conv --dtype bf16 --device cuda --warmup 1 --repeats 2 --backward --token-task previous --train-steps 100 --learning-rate 0.0008 --weight-decay 0.01 --eval-batches 4 --ssm-local-shift --ssm-local-shift-init 0.1 --output-dir \"$REPOBRIDGE_OUTPUT_DIR/hidden_256\"", + "remote_user": "", + "train_command": "", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0, + "run_label": "taonet-ssm-proj64-local-shift-previous512-hidden-compare", + "remote_output_path": "/home/student/YouZheng/outputs-taotrain", + "remote_host": "swinburneGPU", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "create_run_subdir": true, + "remote_port": 22, + "branch": "codex/taonet-ssm-core", + "setup_command": "", + "local_results_path": "results/repobridge-token-bench-proj64-local-shift-previous512-hidden-compare", + "ssh_key_path": "" +} \ No newline at end of file diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.localshift.quality.previous.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.localshift.quality.previous.config.json new file mode 100644 index 0000000000000000000000000000000000000000..af389bcf3e1aa0621257f9214ef16125bcbb50c8 --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.localshift.quality.previous.config.json @@ -0,0 +1,23 @@ +{ + "ssh_backend": "paramiko", + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\TaoTrain", + "remote_repo_path": "/home/student/YouZheng/repo", + "test_command": "PYTHONPATH=/home/student/YouZheng/repo/src:/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_taonet_token_variants.py --architectures taonet,taonet_ssm --batch-sizes 32 --seq-lens 128 --vocab-size 128 --hidden-dim 256 --num-layers 4 --num-heads 4 --d-latent-kv 192 --hidden-dim-ff 1024 --ssm-core dplr --ssm-hidden-dim 256 --ssm-mixer-dim 64 --ssm-rank 1 --ssm-kernel-mode conv --dtype bf16 --device cuda --warmup 1 --repeats 2 --backward --token-task previous --train-steps 100 --learning-rate 0.0008 --weight-decay 0.01 --eval-batches 4 --ssm-local-shift --ssm-local-shift-init 0.1 --output-dir \"$REPOBRIDGE_OUTPUT_DIR\"", + "remote_user": "", + "train_command": "", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0, + "run_label": "taonet-vs-dplr-proj64-local-shift-previous-quality", + "remote_output_path": "/home/student/YouZheng/outputs-taotrain", + "remote_host": "swinburneGPU", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "create_run_subdir": true, + "remote_port": 22, + "branch": "codex/taonet-ssm-core", + "setup_command": "", + "local_results_path": "results/repobridge-token-bench-proj64-local-shift-quality", + "ssh_key_path": "" +} \ No newline at end of file diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.quality.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.quality.config.json new file mode 100644 index 0000000000000000000000000000000000000000..839a22faa70727143b91148369012937ee848aa1 --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.quality.config.json @@ -0,0 +1,23 @@ +{ + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\TaoTrain", + "remote_host": "swinburneGPU", + "remote_user": "", + "remote_port": 22, + "ssh_key_path": "", + "ssh_backend": "paramiko", + "remote_repo_path": "/home/student/YouZheng/repo", + "remote_output_path": "/home/student/YouZheng/outputs-taotrain", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "local_results_path": "results/repobridge-token-bench-proj64-quality", + "run_label": "taonet-vs-dplr-proj64-previous-token-quality", + "create_run_subdir": true, + "branch": "codex/taonet-ssm-core", + "setup_command": "", + "train_command": "", + "test_command": "PYTHONPATH=/home/student/YouZheng/repo/src:/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_taonet_token_variants.py --architectures taonet,taonet_ssm --batch-sizes 32 --seq-lens 128 --vocab-size 128 --hidden-dim 256 --num-layers 4 --num-heads 4 --d-latent-kv 192 --hidden-dim-ff 1024 --ssm-core dplr --ssm-hidden-dim 256 --ssm-mixer-dim 64 --ssm-rank 1 --ssm-kernel-mode conv --dtype bf16 --device cuda --warmup 1 --repeats 2 --backward --token-task previous --train-steps 100 --learning-rate 0.0008 --weight-decay 0.01 --eval-batches 4 --output-dir \"$REPOBRIDGE_OUTPUT_DIR\"", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0 +} \ No newline at end of file diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.quality.increment.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.quality.increment.config.json new file mode 100644 index 0000000000000000000000000000000000000000..bb1ba4a80ee68dce8c6242c644e63d92f9e3893c --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.quality.increment.config.json @@ -0,0 +1,23 @@ +{ + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\TaoTrain", + "remote_host": "swinburneGPU", + "remote_user": "", + "remote_port": 22, + "ssh_key_path": "", + "ssh_backend": "paramiko", + "remote_repo_path": "/home/student/YouZheng/repo", + "remote_output_path": "/home/student/YouZheng/outputs-taotrain", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "local_results_path": "results/repobridge-token-bench-proj64-quality-increment", + "run_label": "taonet-vs-dplr-proj64-increment-token-quality", + "create_run_subdir": true, + "branch": "codex/taonet-ssm-core", + "setup_command": "", + "train_command": "", + "test_command": "PYTHONPATH=/home/student/YouZheng/repo/src:/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_taonet_token_variants.py --architectures taonet,taonet_ssm --batch-sizes 32 --seq-lens 128 --vocab-size 128 --hidden-dim 256 --num-layers 4 --num-heads 4 --d-latent-kv 192 --hidden-dim-ff 1024 --ssm-core dplr --ssm-hidden-dim 256 --ssm-mixer-dim 64 --ssm-rank 1 --ssm-kernel-mode conv --dtype bf16 --device cuda --warmup 1 --repeats 2 --backward --token-task increment --train-steps 100 --learning-rate 0.0008 --weight-decay 0.01 --eval-batches 4 --output-dir \"$REPOBRIDGE_OUTPUT_DIR\"", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0 +} \ No newline at end of file diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.quality.linear.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.quality.linear.config.json new file mode 100644 index 0000000000000000000000000000000000000000..f9b7e53fe171b030ecfcdb2734e94a5517276c61 --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.quality.linear.config.json @@ -0,0 +1,23 @@ +{ + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\TaoTrain", + "remote_host": "swinburneGPU", + "remote_user": "", + "remote_port": 22, + "ssh_key_path": "", + "ssh_backend": "paramiko", + "remote_repo_path": "/home/student/YouZheng/repo", + "remote_output_path": "/home/student/YouZheng/outputs-taotrain", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "local_results_path": "results/repobridge-token-bench-proj64-quality-linear", + "run_label": "taonet-vs-dplr-proj64-previous-token-linear-quality", + "create_run_subdir": true, + "branch": "codex/taonet-ssm-core", + "setup_command": "", + "train_command": "", + "test_command": "PYTHONPATH=/home/student/YouZheng/repo/src:/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_taonet_token_variants.py --architectures taonet,taonet_ssm --batch-sizes 32 --seq-lens 128 --vocab-size 128 --hidden-dim 256 --num-layers 4 --num-heads 4 --d-latent-kv 192 --hidden-dim-ff 1024 --ssm-core dplr --ssm-hidden-dim 256 --ssm-mixer-dim 64 --ssm-rank 1 --ssm-kernel-mode conv --ssm-activation identity --no-ssm-gate --no-ssm-input-gate --ssm-layer-scale-init 1.0 --dtype bf16 --device cuda --warmup 1 --repeats 2 --backward --token-task previous --train-steps 100 --learning-rate 0.0008 --weight-decay 0.01 --eval-batches 4 --output-dir \"$REPOBRIDGE_OUTPUT_DIR\"", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0 +} \ No newline at end of file diff --git a/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.scale.config.json b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.scale.config.json new file mode 100644 index 0000000000000000000000000000000000000000..72b6597ebe37d2a9371e3bb6f41f2694fe491ac0 --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/legacy_repobridge_configs/repobridge.taonet.tokenbench.projected64.scale.config.json @@ -0,0 +1,23 @@ +{ + "local_repo": "C:\\Users\\YouZheng\\Documents\\LYZ\\MyContent\\MyLLM\\Codebase\\Taotern\\TaoTrain", + "remote_host": "swinburneGPU", + "remote_user": "", + "remote_port": 22, + "ssh_key_path": "", + "ssh_backend": "paramiko", + "remote_repo_path": "/home/student/YouZheng/repo", + "remote_output_path": "/home/student/YouZheng/outputs-taotrain", + "remote_write_root": "/home/student/YouZheng", + "remote_write_roots": [ + "/home/student/YouZheng" + ], + "local_results_path": "results/repobridge-token-bench-projected64-scale", + "run_label": "taonet-token-dplr-proj64-scale-bench", + "create_run_subdir": true, + "branch": "codex/taonet-ssm-core", + "setup_command": "", + "train_command": "", + "test_command": "PYTHONPATH=/home/student/YouZheng/repo/src:/home/student/YouZheng/gamma_ssm_repo /home/student/.venv/bin/python scripts/benchmark_taonet_token_variants.py --architectures taonet,taonet_ssm --batch-sizes 8,16 --seq-lens 512 --vocab-size 8192 --hidden-dim 256 --num-layers 4 --num-heads 4 --d-latent-kv 192 --hidden-dim-ff 1024 --ssm-core dplr --ssm-hidden-dim 256 --ssm-mixer-dim 64 --ssm-rank 1 --ssm-kernel-mode conv --dtype bf16 --device cuda --warmup 2 --repeats 3 --backward --output-dir \"$REPOBRIDGE_OUTPUT_DIR\"", + "connect_timeout_seconds": 30, + "command_timeout_seconds": 0 +} \ No newline at end of file diff --git a/code/Taotern_LLM_Experiments/experiments/resources/tokenizers/taodata_pilot_8k.yaml b/code/Taotern_LLM_Experiments/experiments/resources/tokenizers/taodata_pilot_8k.yaml new file mode 100644 index 0000000000000000000000000000000000000000..8d7cecb9c4753ce5ae561ea18a066a9dfaf9018c --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/resources/tokenizers/taodata_pilot_8k.yaml @@ -0,0 +1,22 @@ +# Pilot SentencePiece tokenizer for remote TaoData benchmarks. +# +# This is intentionally smaller than full production tokenizer training so the +# model-comparison loop can validate attention vs SSM on realistic tokenization. + +jsonl_path: /home/student/Data/TaoData/pretrain.jsonl.fineweb.jsonl +text_field: text + +vocab_size: 8192 +model_type: unigram +character_coverage: 0.9995 + +output_dir: /home/student/YouZheng/tokenizers/taodata_pilot_8k +tokenizer_prefix: tokenizer + +unk_id: 0 +bos_id: 1 +eos_id: 2 +pad_id: 3 + +max_samples: 20000 +tokenizer_name: taodata_pilot_8k diff --git a/code/Taotern_LLM_Experiments/experiments/runs/2026-04-29_spm_b32_500step_channel_shift/manifest.yaml b/code/Taotern_LLM_Experiments/experiments/runs/2026-04-29_spm_b32_500step_channel_shift/manifest.yaml new file mode 100644 index 0000000000000000000000000000000000000000..a5213f5ab4f77f84a28262b0892418453c9598d8 --- /dev/null +++ b/code/Taotern_LLM_Experiments/experiments/runs/2026-04-29_spm_b32_500step_channel_shift/manifest.yaml @@ -0,0 +1,14 @@ +id: 2026-04-29_spm_b32_500step_channel_shift +date: 2026-04-29 +status: completed +task: TaoData SentencePiece per-channel shift, batch 32, 500 steps +dataset: /home/student/Data/TaoData/pretrain.jsonl.fineweb.jsonl +tokenizer: /home/student/YouZheng/tokenizers/taodata_pilot_8k/tokenizer.model +ssm_repo_commit: d4a59c6 +taotrain_commit: c519645 +remote_run: taonet-vs-ssm-real-token-taodata-spm-b32-500step-channel-shift-20260429-171917 +comparison: attention TaoNet vs SSM TaoNet with per-channel local shift +primary_artifacts: + - metrics.csv + - repobridge.config.json + diff --git a/code/Taotern_SSM/.gitignore b/code/Taotern_SSM/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..cb70be7859cac5a6bd3d6f9b29f66c700ce53c74 --- /dev/null +++ b/code/Taotern_SSM/.gitignore @@ -0,0 +1,127 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg + +# PyInstaller +*.manifest +*.spec + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# pyenv +.python-version + +# celery beat schedule file +celerybeat-schedule + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# OS +.DS_Store +Thumbs.db + +# CUDA +*.o +*.a +*.so + +# Checkpoints +checkpoints/ +*.pt +*.pth + +# Local testing +.local/ +tmp/ +temp/ +*.png + +# Generated benchmark and RepoBridge outputs +output/benchmarks/ +output/repobridge*/ diff --git a/code/Taotern_SSM/EXPERIMENT_RECORD.md b/code/Taotern_SSM/EXPERIMENT_RECORD.md new file mode 100644 index 0000000000000000000000000000000000000000..fe5f5148219806c575bdb2a73f5b4c1ea174328b --- /dev/null +++ b/code/Taotern_SSM/EXPERIMENT_RECORD.md @@ -0,0 +1,1947 @@ +# Gamma SSM / Gamma-S4 Experiment Record + +This file records the experiment versions saved as `_rN` notebooks under `output/jupyter-notebook/`. +It also records the later TaoNet-SSM LLM-wrapper and remote RTX benchmark iterations. + +The goal is to preserve: + +- which model version was tested +- which notebook/task configuration was used +- the main performance results +- what we learned from each run + +For runs where the saved notebook does not contain enough information, the version is marked as not recorded. + +## Model Names + +- `gamma_baseline`: original Gamma SSM using the fixed lower-bidiagonal Gamma transition and recurrent execution. +- `gamma_s4_minimal`: lighter S4-inspired Gamma block. Used in early experiments, later dropped from the main loop because it was not consistently strong. +- `gamma_s4_enhanced`: main S4-inspired Gamma model with learned `dt`, stable discretization, `D` skip, optional gating/output path, full-sequence/kernel mode, and recurrent stepping. + +## Metrics + +- `val_loss`: validation loss for forecasting tasks. Lower is better. +- `mean_epoch_time_s`: average training epoch time. Lower is better. +- `full_forward_ms` / `full_latency_ms`: whole-sequence forward/inference latency. Lower is better. +- `full_forward_tokens_per_s` / `full_tokens_per_s`: whole-sequence throughput. Higher is better. +- `recurrent_inference_ms` / `recurrent_latency_ms`: token-by-token recurrent latency. Lower is better. +- `recurrent_tokens_per_s`: token-by-token recurrent throughput. Higher is better. +- `deploy_*`: deployment-lite recurrent path. For the baseline, deployment and recurrent are the same path once baseline deploy metrics were enabled. +- `val_ce`: validation cross entropy for token prediction. Lower is better. +- `val_ppl`: validation perplexity for token prediction. Lower is better. + +## TaoNet-SSM LLM Wrapper Iterations + +This section records the work that moved the SSM from standalone/notebook benchmarks into the TaoNet LLM comparison loop. +The main implementation repo for SSM changes is this repo. The TaoNet wrapper lives in the local TaoTrain repo and branch listed below. + +Related repos and branches: + +- SSM repo: `https://github.com/StarMists/gamma_SSM_S4_enhanced.git` +- SSM local path: `C:\Users\YouZheng\Documents\LYZ\MyContent\MyLLM\Codebase\Taotern\Taotern_SSM` +- TaoTrain repo: `https://github.com/lobakkang/TaoTrain.git` +- TaoTrain local path: `C:\Users\YouZheng\Documents\LYZ\MyContent\MyLLM\Codebase\Taotern\TaoTrain` +- TaoTrain branch: `codex/taonet-ssm-core` +- Remote server path for SSM: `/home/student/YouZheng/gamma_ssm_repo` +- Remote server path for TaoTrain: `/home/student/YouZheng/repo` +- Remote execution tool: `C:\Users\YouZheng\Documents\LYZ\MyContent\MyComp\RepoBridge` + +### LLM Iteration 1 - Add TaoNet SSM Wrapper + +Implementation location: + +- TaoTrain: `src/taoTrain/models/taonet_ssm.py` +- TaoTrain: `src/taoTrain/config.py` +- TaoTrain: `src/taoTrain/models/registry.py` +- TaoTrain: `tests/test_taonet_ssm.py` +- TaoTrain: `scripts/benchmark_taonet_token_variants.py` + +TaoTrain commits: + +- `8b1c6fa Add TaoNet Gamma SSM architecture` +- `6edd09e Benchmark TaoNet token SSM variants` + +What changed: + +- Added a `taonet_ssm` model architecture for apples-to-apples comparison with original attention `taonet`. +- Kept the outer LLM stack close to TaoNet and replaced the sequence-mixing core with an SSM mixer. +- Supported both `gamma_s4` and `dplr` SSM cores. +- Added token-level synthetic CE benchmark comparing `taonet` and `taonet_ssm`. +- Added focused tests for SSM wrapper construction and forward passes. + +Local validation: + +- `python -m pytest tests\test_taonet_ssm.py -q` passed. +- Broader TaoTrain tests were not run locally because the local environment was missing `datasets`. + +Result: + +- Functional success. This established the comparison harness. +- Performance was not yet acceptable with full-width DPLR because the wrapper exposed dense DPLR frequency-transfer cost. + +### LLM Iteration 2 - Projected SSM Mixer Dimension + +Implementation location: + +- TaoTrain: `src/taoTrain/models/taonet_ssm.py` +- TaoTrain: `src/taoTrain/config.py` +- TaoTrain: `tests/test_taonet_ssm.py` + +TaoTrain commit: + +- `5e6b802 Add projected SSM mixer dimension` + +What changed: + +- Added `ssm_mixer_dim`. +- The SSM branch now supports `d_model -> ssm_mixer_dim -> SSM -> d_model`. +- This keeps the LLM interface the same while reducing the DPLR channel width. +- This is important because DPLR convolutional training cost scales strongly with the channel dimension. + +Remote benchmark config examples: + +- RepoBridge projected 128: `repobridge.taonet.tokenbench.projected128.config.json` +- RepoBridge projected 64: `repobridge.taonet.tokenbench.projected64.config.json` + +Important results before SSM-core optimization: + +| Variant | Batch | Seq | Forward tok/s | Backward tok/s | Peak MB | Interpretation | +|---|---:|---:|---:|---:|---:|---| +| attention TaoNet | 4 | 512 | about 1.24M | about 280k | about 376 | Baseline comparison point. | +| DPLR full-width mixer 256 | 4 | 512 | about 81k | about 20k | about 6200 | Failed: dense transfer path too slow and memory-heavy. | +| DPLR projected mixer 128 | 4 | 512 | about 214k | about 56k | about 3613 | Better memory, still much slower than attention. | +| DPLR projected mixer 64 | 4 | 512 | about 114k | about 54k | about 2500 | Lower memory but worse forward before core optimization. | + +Result: + +- Success as an architectural control: projection made DPLR usable enough to iterate. +- Not sufficient alone: the DPLR core still needed direct frequency-response optimization. + +### LLM Iteration 3 - Add Scripted SSM Benchmarks + +Implementation location: + +- SSM: `scripts/benchmark_ssm_variants.py` +- SSM: `.gitignore` + +SSM commits: + +- `7a90525 Add lightweight SSM benchmark script` +- `c0dede8 Ignore generated benchmark outputs` + +What changed: + +- Added a Python benchmark script for `baseline`, `gamma_s4`, and `dplr`. +- Measures forward, optional forward+backward, and optional recurrent stepping. +- Writes JSON and CSV outputs. +- Ignored generated benchmark result directories. + +Remote raw DPLR result: + +| Model | Batch | Seq | Mode | Tok/s | Peak MB | +|---|---:|---:|---|---:|---:| +| DPLR raw SSM | 4 | 512 | forward | about 841k | about 1310 | +| DPLR raw SSM | 4 | 512 | forward+backward | about 101k | about 1310 | +| DPLR raw recurrent | 4 | 512 | recurrent | about 97k | about 10 | + +Interpretation: + +- Raw DPLR SSM was promising. +- The wrapped LLM bottleneck came from how the DPLR convolutional path scaled under the TaoNet stack, not from the idea of DPLR alone. + +### LLM Iteration 4 - Direct DPLR Frequency-Response Application + +Implementation location: + +- SSM: `gamma_space_model/modules/s4_ternary_dplr_ssm.py` + +SSM commit: + +- `2b204e8 Apply DPLR frequency response directly` + +What changed: + +- Added a direct training path that applies the DPLR frequency response to the FFT input. +- Avoided materializing the full dense transfer tensor shaped roughly `freq x channels x channels` during training/grad runs. +- Kept the old dense transfer path for eval/no-grad caching. + +Validation: + +- `python -m pytest tests\test_s4_ternary_dplr_ssm.py -q` passed. +- Local CPU smoke benchmark with backward passed. + +Projected-128 remote result after this change: + +| Variant | Batch | Seq | Forward tok/s | Backward tok/s | Peak MB | +|---|---:|---:|---:|---:|---:| +| attention TaoNet | 4 | 512 | about 1.32M | about 532k | about 376 | +| DPLR projected mixer 128 | 4 | 512 | about 151k | about 91k | about 508 | + +Interpretation: + +- Major memory success: projected-128 DPLR dropped from about 3613 MB to about 508 MB. +- Training throughput improved from about 56k to about 91k tok/s. +- Forward-only became slower than the previous projected-128 run, so this change helped training/backward much more than no-grad forward timing. + +### LLM Iteration 5 - Specialize Rank-One DPLR Solve + +Implementation location: + +- SSM: `gamma_space_model/modules/s4_ternary_dplr_ssm.py` + +SSM commit: + +- `5a0abad Specialize rank-one DPLR solve` + +What changed: + +- Current best DPLR configuration uses `rank=1`. +- Replaced the batched `torch.linalg.inv` for `1 x 1` low-rank systems with scalar reciprocal math. +- Applied the specialization to both direct training and cached dense response paths. +- Left the general rank path intact for `rank > 1`. + +Validation: + +- `python -m pytest tests\test_s4_ternary_dplr_ssm.py -q` passed. +- Local CPU smoke benchmark with backward passed. + +Projected-128 remote result: + +| Variant | Batch | Seq | Forward tok/s | Backward tok/s | Peak MB | +|---|---:|---:|---:|---:|---:| +| attention TaoNet | 4 | 512 | about 1.33M | about 545k | about 376 | +| DPLR projected mixer 128 | 4 | 512 | about 485k | about 142k | about 508 | + +Projected-64 remote result after this change: + +| Variant | Batch | Seq | Forward tok/s | Backward tok/s | Peak MB | +|---|---:|---:|---:|---:|---:| +| DPLR projected mixer 64 | 4 | 512 | about 618k | about 192k | about 494 | + +Scaling probe for projected-64: + +| Variant | Batch | Seq | Forward tok/s | Backward tok/s | Peak MB | +|---|---:|---:|---:|---:|---:| +| attention TaoNet | 16 | 512 | about 1.16M | about 990k | about 1332 | +| DPLR projected mixer 64 | 16 | 512 | about 2.12M | about 702k | about 1684 | + +Interpretation: + +- Major success. +- DPLR projected-64 became the best current SSM LLM configuration. +- At batch 16, DPLR projected-64 forward throughput exceeded attention in this synthetic benchmark. +- Backward was still behind attention, but the gap narrowed substantially. +- The SSM now scales much better with batch size, suggesting fixed frequency-response overhead is being amortized. + +### LLM Iteration 6 - Precompose Finite Response Projection + +Implementation location: + +- SSM: `gamma_space_model/modules/s4_ternary_dplr_ssm.py` + +SSM commits: + +- `f09a71b Precompose DPLR finite response projection` +- `648a32e Revert "Precompose DPLR finite response projection"` + +What changed: + +- Tried replacing `C @ (I - z^L A^L) @ response` with two projected terms: + - `C @ response` + - `(C @ A^L) @ response` +- The goal was to reduce one batch/frequency hidden-state multiplication in the direct path. + +Validation: + +- `python -m pytest tests\test_s4_ternary_dplr_ssm.py -q` passed. +- Local smoke benchmark passed. +- Direct-vs-cached convolution comparison had max absolute difference around `2.4e-7`. + +Remote result: + +| Variant | Batch | Seq | Forward tok/s | Backward tok/s | Peak MB | +|---|---:|---:|---:|---:|---:| +| DPLR projected mixer 64 before this change | 4 | 512 | about 618k | about 192k | about 494 | +| DPLR projected mixer 64 with this change | 4 | 512 | about 495k | about 162k | about 478 | + +Interpretation: + +- Failed on real GPU token benchmark. +- It saved a little memory but reduced speed too much. +- The commit was intentionally reverted, so current SSM `main` is back to the best-performing rank-one direct-response core. + +### LLM Iteration 7 - Rank-One Matmul Fast Path + +Implementation location: + +- SSM: `gamma_space_model/modules/s4_ternary_dplr_ssm.py` + +SSM commits: + +- `43de801 Use matmul fast path for rank-one DPLR` +- `9ffa5a7 Gate rank-one matmul path by batch size` +- `4e130b6 Limit rank-one matmul path to small batches` +- `8969916 Revert "Limit rank-one matmul path to small batches"` +- `5b3a957 Revert "Gate rank-one matmul path by batch size"` +- `a46a2af Revert "Use matmul fast path for rank-one DPLR"` + +What changed: + +- Tried a deeper `rank=1` direct-application specialization. +- Replaced several generic `einsum` operations with batched `matmul` and vector reductions. +- The goal was to reduce Python/operator overhead and improve backward throughput for the current best DPLR rank. +- A follow-up tried to gate the path by batch size after the batch-16 scaling run regressed. + +Validation: + +- `python -m pytest tests\test_s4_ternary_dplr_ssm.py -q` passed. +- Local CPU smoke benchmark passed. +- Direct-vs-cached convolution comparison had max absolute difference around `2.4e-7`. + +Remote result: + +| Variant | Batch | Seq | Forward tok/s | Backward tok/s | Peak MB | +|---|---:|---:|---:|---:|---:| +| DPLR projected mixer 64 before this change | 4 | 512 | about 618k | about 192k | about 494 | +| DPLR projected mixer 64 first matmul run | 4 | 512 | about 643k | about 208k | about 494 | +| DPLR projected mixer 64 repeated small-batch gated run | 4 | 512 | about 470k-472k | about 161k-175k | about 494 | +| DPLR projected mixer 64 matmul at batch 16 | 16 | 512 | about 1.47M | about 388k | about 1684 | +| DPLR projected mixer 64 previous best at batch 16 | 16 | 512 | about 2.12M | about 702k | about 1684 | + +Interpretation: + +- Failed overall. +- The first batch-4 run looked promising, but repeated remote results were worse. +- The matmul formulation regressed the larger-batch scaling behavior that matters for GPU utilization. +- All matmul fast-path commits were reverted, so current SSM `main` returns to the best-known `5a0abad` rank-one scalar-solve behavior plus the experiment-record commits. + +### LLM Iteration 8 - TileLang Capability Detection + +Implementation location: + +- SSM: `csrc/tilelang/selective_scan.py` +- SSM: `csrc/tilelang/__init__.py` +- SSM: `gamma_space_model/ops/selective_scan_interface.py` +- SSM: `gamma_space_model/modules/ssm_gamma.py` +- SSM: `scripts/diagnose_tilelang_acceleration.py` + +SSM commit: + +- `4784856 Make TileLang acceleration detection explicit` + +What changed: + +- Made TileLang capability reporting explicit and conservative. +- Before this change, `HAS_TILELANG_OPS` became true whenever the Python fallback module imported. +- That was misleading because `csrc/tilelang` did not actually dispatch to a real TileLang kernel; it used PyTorch fallback code. +- Added `TILELANG_BACKEND` and `HAS_TILELANG_ACCELERATION` flags. +- Added `scripts/diagnose_tilelang_acceleration.py` to print package availability, repo backend flags, and a small Gamma forward timing. +- Fixed `SSMGamma.step` dtype/device casting after the honest fallback path exposed a float64 failure in the normal PyTorch path. + +Validation: + +- `python -m pytest tests\test_ssm_gamma.py tests\test_s4_ternary_dplr_ssm.py -q` passed locally: `22 passed`. +- Local diagnostic reported: + - `has_tilelang_ops=false` + - `tilelang_backend=pytorch_fallback` + - `triton_available=false` + - `tilelang_available=false` + +Remote RTX 5090 diagnostic: + +| Field | Value | +|---|---| +| Torch | `2.11.0+cu130` | +| CUDA | available | +| GPU | `NVIDIA GeForce RTX 5090` | +| Triton package | available | +| TileLang package | not available | +| Repo `HAS_TILELANG_OPS` | `false` | +| Repo `TILELANG_BACKEND` | `pytorch_fallback` | +| Gamma fallback forward | about `76.7k` tok/s at batch 4, seq 512, bf16 | + +Remote raw SSM benchmark after this change: + +| Model | Batch | Seq | Forward tok/s | Backward tok/s | Peak MB | +|---|---:|---:|---:|---:|---:| +| DPLR raw SSM | 4 | 512 | about 3.16M | about 1.03M | about 57 | +| Gamma-S4 raw SSM | 4 | 512 | about 100.6k | about 45.5k | about 467 | +| Baseline Gamma raw SSM | 4 | 512 | about 85.2k | about 32.3k | about 120 | + +Interpretation: + +- This iteration did not add a real TileLang kernel yet. +- It fixed an important measurement and dispatch problem: fallback code is no longer reported as hardware acceleration. +- The remote server has Triton installed but does not have the TileLang package installed. +- The current DPLR path is frequency-domain PyTorch/cuBLAS and does not use `csrc/tilelang`. +- The next hardware-acceleration step should be explicit: either install/use real TileLang on the remote server or write a Triton/TileLang kernel for a clearly scoped hot path. The best candidate hot path is not the old baseline Gamma fallback; it is the DPLR direct frequency-response/backward path used by `taonet_ssm`. + +### LLM Iteration 9 - DPLR Frequency-Path Profiling And Root Cache + +Implementation location: + +- SSM: `gamma_space_model/modules/s4_ternary_dplr_ssm.py` +- SSM: `scripts/profile_dplr_frequency_path.py` + +SSM commit: + +- `92643c5 Cache DPLR frequency roots` + +What changed: + +- Added a per-module cache for FFT roots and `roots^seq_len`. +- These tensors are constants for a given `(seq_len, fft_len, dtype, device)`, so rebuilding them every forward/layer is unnecessary GPU work. +- Added `scripts/profile_dplr_frequency_path.py` to profile the DPLR convolutional path directly on the remote server. + +Validation: + +- `python -m pytest tests\test_s4_ternary_dplr_ssm.py -q` passed locally. +- `python -m pytest tests\test_ssm_gamma.py tests\test_s4_ternary_dplr_ssm.py -q` passed locally: `22 passed`. +- Local profiler smoke passed and showed `frequency_grid_cache_entries=1`. + +Remote profiler result for raw DPLR at batch 4, seq 512, d_model 64, hidden_dim 256: + +| Mode | Mean ms | Tok/s | Peak MB | +|---|---:|---:|---:| +| forward | about 2.58 | about 793k | not measured | +| forward+backward | about 3.27 | about 626k | about 52 | + +Remote profiler interpretation: + +- The largest CUDA entries were `aten::bmm`, `aten::mm`, and their backward paths. +- `aten::linalg_matrix_power` was visible but small in this configuration. +- Root generation was not the dominant cost, so the cache is a modest cleanup rather than a major acceleration. +- A future TileLang/Triton kernel should target fused rank-1 DPLR frequency-response application and its backward, especially around the small complex BMM/MM pattern. Replacing the old Gamma Python fallback is not the right priority for the TaoNet-SSM goal. + +TaoNet projected-64 check after this change: + +| Variant | Batch | Seq | Forward tok/s | Backward tok/s | Peak MB | +|---|---:|---:|---:|---:|---:| +| DPLR projected mixer 64 | 4 | 512 | about 656k | about 163k | about 494 | + +Scaling probe after this change: + +| Variant | Batch | Seq | Forward tok/s | Backward tok/s | Peak MB | +|---|---:|---:|---:|---:|---:| +| DPLR projected mixer 64 | 8 | 512 | about 983k | about 341k | about 889 | +| DPLR projected mixer 64 | 16 | 512 | about 1.03M | about 414k | about 1684 | + +Interpretation: + +- The root cache is correct and removes repeated constant construction. +- End-to-end results remain noisy; this is not a breakthrough optimization. +- The main value of this iteration is the profiler evidence: the next real hardware acceleration should fuse the DPLR rank-1 complex frequency-response operations, not spend effort on the older baseline Gamma fallback path. + +### LLM Iteration 10 - Shared DPLR Frequency Grid Cache + +Implementation location: + +- SSM: `gamma_space_model/modules/s4_ternary_dplr_ssm.py` + +SSM commit: + +- `a9e5d3e Share DPLR frequency grid cache` + +What changed: + +- Promoted the DPLR FFT root cache from per-module to class-level shared cache. +- The previous cache avoided rebuilding roots inside a single SSM module, but a multi-layer TaoNet creates one SSM module per layer. +- The shared cache lets all layers reuse the same `(roots, roots^seq_len)` tensors for a given `(seq_len, fft_len, dtype, device)`. + +Validation: + +- `python -m pytest tests\test_s4_ternary_dplr_ssm.py -q` passed locally. +- Local `scripts/profile_dplr_frequency_path.py` smoke passed and still reported one frequency-grid cache entry. + +Required TaoNet comparison after this iteration: + +Remote benchmark: + +- RepoBridge run: `taonet-vs-dplr-proj64-shared-grid-bench-20260429-101304` +- Config: projected DPLR mixer dim 64, DPLR rank 1, 4 layers, bf16, synthetic next-token CE + +| Architecture | Batch | Seq | Mode | Tok/s | Peak MB | Loss | +|---|---:|---:|---|---:|---:|---:| +| attention TaoNet | 4 | 512 | forward | about 1.30M | about 193 | 9.064 | +| attention TaoNet | 4 | 512 | forward+backward | about 513k | about 376 | 9.064 | +| SSM TaoNet, DPLR projected 64 | 4 | 512 | forward | about 499k | about 190 | 9.059 | +| SSM TaoNet, DPLR projected 64 | 4 | 512 | forward+backward | about 162k | about 492 | 9.059 | + +Comparison: + +- SSM forward throughput was about `38%` of attention at batch 4, seq 512. +- SSM forward+backward throughput was about `32%` of attention. +- SSM forward memory was slightly lower than attention, but backward peak memory was higher. +- Loss was comparable because this is a random synthetic token benchmark, not a trained quality result. + +Interpretation: + +- The shared cache is correct and small, but it did not create a clear end-to-end speed breakthrough. +- This reinforces the profiler conclusion: constant/root setup is not the dominant TaoNet-SSM bottleneck. +- Future iterations should include the attention-vs-SSM table directly, and hardware work should focus on the DPLR rank-1 complex BMM/MM and backward pattern. + +### LLM Iteration 11 - Re-anchor On Projected-64 Scaling Regime + +Reason for this iteration: + +- The strongest previous result came from a scaling probe, not from batch-4 timing. +- Later iterations over-emphasized batch 4, which made the SSM look worse and encouraged the wrong optimization target. +- This iteration re-established the primary benchmark as attention TaoNet vs SSM TaoNet under larger projected-64 batches. + +Implementation change: + +- No model-code change. +- Benchmark-policy change: projected-64 scaling comparisons should be treated as primary acceptance tests for throughput work. + +Remote benchmark: + +- RepoBridge run: `taonet-token-dplr-proj64-scale-bench-20260429-111150` +- RepoBridge run: `taonet-token-dplr-proj64-extended-scale-bench-20260429-111350` +- Config: projected DPLR mixer dim 64, DPLR rank 1, 4 layers, bf16, synthetic next-token CE + +Required TaoNet comparison: + +| Architecture | Batch | Seq | Mode | Tok/s | Peak MB | Loss | +|---|---:|---:|---|---:|---:|---:| +| attention TaoNet | 8 | 512 | forward | about 1.09M | about 319 | 9.061 | +| attention TaoNet | 8 | 512 | forward+backward | about 468k | about 697 | 9.061 | +| SSM TaoNet, DPLR projected 64 | 8 | 512 | forward | about 1.17M | about 320 | 9.058 | +| SSM TaoNet, DPLR projected 64 | 8 | 512 | forward+backward | about 318k | about 889 | 9.058 | +| attention TaoNet | 16 | 512 | forward | about 1.60M | about 596 | 9.059 | +| attention TaoNet | 16 | 512 | forward+backward | about 503k | about 1332 | 9.059 | +| SSM TaoNet, DPLR projected 64 | 16 | 512 | forward | about 1.03M | about 580 | 9.060 | +| SSM TaoNet, DPLR projected 64 | 16 | 512 | forward+backward | about 427k | about 1684 | 9.060 | +| attention TaoNet | 32 | 512 | forward | about 1.88M | about 1124 | 9.062 | +| attention TaoNet | 32 | 512 | forward+backward | about 632k | about 2590 | 9.062 | +| SSM TaoNet, DPLR projected 64 | 32 | 512 | forward | about 2.62M | about 1100 | 9.061 | +| SSM TaoNet, DPLR projected 64 | 32 | 512 | forward+backward | about 705k | about 3273 | 9.061 | +| attention TaoNet | 64 | 512 | forward | about 3.53M | about 2204 | 9.061 | +| attention TaoNet | 64 | 512 | forward+backward | about 683k | about 5121 | 9.061 | +| SSM TaoNet, DPLR projected 64 | 64 | 512 | forward | about 1.30M | about 2140 | 9.060 | +| SSM TaoNet, DPLR projected 64 | 64 | 512 | forward+backward | about 618k | about 6451 | 9.060 | + +Comparison: + +- Batch 8: SSM forward is slightly faster than attention, but backward is slower. +- Batch 16: SSM backward is closer to attention than in batch-4 runs, but still slower. +- Batch 32: SSM beats attention in both forward and forward+backward throughput in this run. +- Batch 64: SSM falls off sharply, so the useful scaling point is not simply the largest batch. +- SSM backward memory remains higher than attention, especially at larger batches. + +Interpretation: + +- The projected-64 DPLR SSM should be optimized and evaluated around the scaling sweet spot, currently batch 32 for this synthetic benchmark on the RTX 5090. +- Batch-4 timing is still useful for smoke tests, but it should not be treated as the main performance target. +- This is a configuration-level breakthrough: SSM can outperform attention at the right batch size even before custom TileLang/Triton kernels. +- Next improvement directions should either preserve or improve the batch-32 scaling result, not merely improve batch-4 microbenchmarks. + +### LLM Iteration 12 - Token Accuracy Benchmark And Causal Memory Check + +Reason for this iteration: + +- Throughput alone is not sufficient; the SSM TaoNet must also learn useful token tasks. +- The benchmark script previously reported only random synthetic CE, which is not an inference accuracy signal. +- This iteration adds lightweight trained token tasks and reports `eval_accuracy`. + +Implementation location: + +- TaoTrain: `scripts/benchmark_taonet_token_variants.py` + +TaoTrain commit: + +- `59b84cd Add token task accuracy benchmark` + +What changed: + +- Added `--token-task` with: + - `random`: original random next-token timing task + - `increment`: deterministic token mapping, label is current token plus one modulo vocab + - `previous`: causal memory task, label is the previous token +- Added optional short training with `--train-steps`, `--learning-rate`, `--weight-decay`. +- Added eval metrics: + - `eval_loss` + - `eval_accuracy` + - `train_final_loss` + - `train_seconds` + +Validation: + +- Local TaoTrain smoke passed on CPU. +- `python -m pytest tests\test_taonet_ssm.py -q` passed locally. + +Broad speed comparison after adding accuracy columns: + +- RepoBridge run: `taonet-vs-dplr-proj64-broad-speed-bench-20260429-112432` +- Config: projected DPLR mixer dim 64, DPLR rank 1, 4 layers, bf16, random token task, batch sweep + +| Architecture | Batch | Seq | Mode | Tok/s | Peak MB | +|---|---:|---:|---|---:|---:| +| attention TaoNet | 8 | 512 | forward+backward | about 873k | about 697 | +| SSM TaoNet, DPLR projected 64 | 8 | 512 | forward+backward | about 244k | about 956 | +| attention TaoNet | 16 | 512 | forward+backward | about 589k | about 1332 | +| SSM TaoNet, DPLR projected 64 | 16 | 512 | forward+backward | about 646k | about 1748 | +| attention TaoNet | 32 | 512 | forward+backward | about 680k | about 2592 | +| SSM TaoNet, DPLR projected 64 | 32 | 512 | forward+backward | about 816k | about 3338 | +| attention TaoNet | 64 | 512 | forward+backward | about 763k | about 5121 | +| SSM TaoNet, DPLR projected 64 | 64 | 512 | forward+backward | about 544k | about 6516 | + +Speed interpretation: + +- SSM remains poor at batch 8. +- SSM wins forward+backward throughput at batch 16 and batch 32 in this run. +- SSM falls off again at batch 64. +- Batch 16-32 remains the useful projected-64 scaling range. + +Token accuracy comparison: + +- Previous-token task run: `taonet-vs-dplr-proj64-previous-token-quality-20260429-112456` +- Linear/ungated SSM ablation run: `taonet-vs-dplr-proj64-previous-token-linear-quality-20260429-112623` +- Increment task run: `taonet-vs-dplr-proj64-increment-token-quality-20260429-112719` +- All quality runs used batch 32, seq 128, vocab 128, 100 train steps, bf16. + +| Task | Architecture | Eval loss | Eval accuracy | Forward+backward tok/s | +|---|---|---:|---:|---:| +| previous | attention TaoNet | about 0.033 | about 0.999 | about 551k | +| previous | SSM TaoNet, DPLR projected 64 | about 4.858 | about 0.009 | about 292k | +| previous, linear ungated SSM | attention TaoNet | about 0.046 | about 0.999 | about 990k | +| previous, linear ungated SSM | SSM TaoNet, DPLR projected 64 | about 4.626 | about 0.026 | about 346k | +| increment | attention TaoNet | about 0.007 | 1.000 | about 1.09M | +| increment | SSM TaoNet, DPLR projected 64 | about 0.009 | 1.000 | about 344k | + +Failed SSM-core improvement: + +- SSM commit `2e974c9 Add delayed DPLR skip` added a learnable one-step diagonal delayed skip to help causal memory. +- Remote previous-token run after this change: `taonet-vs-dplr-proj64-previous-token-quality-20260429-112953`. +- Result: SSM remained near random, eval accuracy about `0.008`, and speed worsened. +- The change was reverted by `3fc0575 Revert "Add delayed DPLR skip"`. + +Interpretation: + +- Projected-64 DPLR SSM can learn simple token mappings (`increment`) to perfect accuracy. +- It currently fails a short causal memory/copy task (`previous`) under the same 100-step setting where attention TaoNet reaches about 99.9% accuracy. +- The failure is not solved by removing SSM activation/gates or by a simple delayed diagonal skip. +- Future improvements must include both: + - speed comparison across batch 8/16/32/64 + - trained token accuracy, especially on causal memory tasks +- The next quality-focused direction should investigate the SSM wrapper/core's ability to expose previous-token information, not only low-level GPU speed. + +### LLM Iteration 13 - Local Shift Register For Causal Token Memory + +Reason for this iteration: + +- Projected-64 was the strongest SSM speed configuration, but it failed the `previous` token-memory task. +- Capacity probes showed the failure was not caused by the projected-64 bottleneck alone: + - projected-128 SSM eval accuracy stayed near random, about `0.007` + - full-width projected-256 SSM eval accuracy stayed near random, about `0.008` +- The next improvement therefore targeted explicit short causal memory while preserving the DPLR SSM as the main sequence mixer. + +Implementation location: + +- TaoTrain commit: `bb3bf90 Add SSM local shift mixer option` +- TaoTrain: `src/taoTrain/models/taonet_ssm.py` +- TaoTrain: `src/taoTrain/config.py` +- TaoTrain: `scripts/benchmark_taonet_token_variants.py` +- TaoTrain: `tests/test_taonet_ssm.py` + +What changed: + +- Added opt-in `ssm_local_shift`. +- The SSM mixer can now add a one-token causal shift/register branch: + - `shifted[:, 1:] = x_norm[:, :-1]` + - output contribution is controlled by a single learned scalar `ssm_local_shift_init`. +- The branch is deliberately cheap and ternary-friendly in structure: it is a causal shift plus scalar gain, not another dense attention mechanism. +- The default remains off, so older SSM benchmarks are still comparable. + +Validation: + +- Local TaoTrain: + - `PYTHONPATH=...\TaoTrain\src;...\Taotern_SSM python -m pytest tests\test_taonet_ssm.py -q` passed, `4 passed`. + - CPU smoke for `benchmark_taonet_token_variants.py --ssm-local-shift` passed. + +Capacity diagnostic before the change: + +| Architecture | Mixer dim | Batch | Seq | Eval loss | Eval accuracy | Forward+backward tok/s | +|---|---:|---:|---:|---:|---:|---:| +| attention TaoNet | n/a | 32 | 128 | about 0.025 | 1.000 | about 1.04M | +| SSM TaoNet, DPLR | 128 | 32 | 128 | about 4.857 | about 0.007 | about 379k | +| attention TaoNet | n/a | 32 | 128 | about 0.042 | about 0.999 | about 556k | +| SSM TaoNet, DPLR | 256 | 32 | 128 | about 4.856 | about 0.008 | about 389k | + +Required TaoNet comparison after the change: + +- RepoBridge run: `taonet-vs-dplr-proj64-local-shift-previous-quality-20260429-144930` +- RepoBridge broad run: `taonet-vs-dplr-proj64-local-shift-previous-broad-quality-20260429-145014` +- Config: previous-token task, seq 128, vocab 128, 100 train steps, bf16, projected DPLR mixer dim 64, local shift enabled. + +| Architecture | Batch | Eval loss | Eval accuracy | Forward tok/s | Forward+backward tok/s | Peak MB | +|---|---:|---:|---:|---:|---:|---:| +| attention TaoNet | 8 | about 4.376 | about 0.096 | about 695k | about 238k | about 103 | +| SSM TaoNet, DPLR projected 64 + local shift | 8 | about 0.010 | 1.000 | about 226k | about 89k | about 181 | +| attention TaoNet | 16 | about 1.048 | about 0.847 | about 1.26M | about 508k | about 166 | +| SSM TaoNet, DPLR projected 64 + local shift | 16 | about 0.008 | 1.000 | about 520k | about 189k | about 299 | +| attention TaoNet | 32 | about 0.043 | 1.000 | about 2.54M | about 555k | about 297 | +| SSM TaoNet, DPLR projected 64 + local shift | 32 | about 0.008 | 1.000 | about 1.16M | about 353k | about 513 | +| attention TaoNet | 64 | about 0.020 | 1.000 | about 4.75M | about 1.73M | about 553 | +| SSM TaoNet, DPLR projected 64 + local shift | 64 | about 0.007 | 1.000 | about 2.43M | about 403k | about 956 | + +Interpretation: + +- Success: this is the first projected-64 SSM TaoNet result that solves the `previous` causal-memory task. +- The result is not only a batch-32 spot check. SSM reached perfect eval accuracy at batch 8, 16, 32, and 64. +- The quality gain is large: plain projected-64, projected-128, and projected-256 DPLR all stayed near random on the same task. +- Speed tradeoff: local-shift SSM is slower than attention on this short-sequence previous-token benchmark, especially backward. +- This should be treated as a quality architecture fix, not a hardware-acceleration fix. The next hardware iteration should still target fused DPLR frequency/backward kernels. + +### LLM Iteration 14 - Explicit DPLR Transfer-Mode Probe + +Reason for this iteration: + +- After the local-shift quality fix, the next bottleneck was speed. +- The DPLR direct frequency path applies the finite correction to batch-dependent hidden responses. +- A possible alternative was to materialize the full frequency transfer matrix, then multiply by the input FFT. +- This could be faster for some batch/sequence shapes, but it risks high memory and repeated transfer construction. + +Implementation location: + +- SSM commit: `749a4cf Add DPLR transfer profiling mode` +- SSM commit: `e34b67c Add DPLR conv transfer mode` +- TaoTrain commit: `ceb08e6 Expose SSM conv transfer mode` +- SSM: `gamma_space_model/modules/s4_ternary_dplr_ssm.py` +- SSM: `scripts/profile_dplr_frequency_path.py` +- TaoTrain: `scripts/benchmark_taonet_token_variants.py` + +What changed: + +- Added profiler support for comparing: + - direct DPLR frequency response application + - materialized transfer matrix application +- Added explicit `kernel_mode="conv_transfer"` to `S4TernaryDPLRSSM`. +- Exposed `conv_transfer` through TaoTrain config/benchmark CLI. +- The mode is opt-in only. The default/recommended projected-64 path remains `conv`. + +Local validation: + +- SSM: `python -m pytest tests\test_s4_ternary_dplr_ssm.py tests\test_ssm_gamma.py -q` passed, `23 passed`. +- TaoTrain: `PYTHONPATH=...\TaoTrain\src;...\Taotern_SSM python -m pytest tests\test_taonet_ssm.py -q` passed, `5 passed`. + +Isolated SSM-core remote profile: + +- RepoBridge run: `ssm-dplr-direct-vs-transfer-s128-profile-20260429-145555` +- Config: DPLR state/mixer dim 64, hidden dim 256, seq 128, bf16, rank 1. + +| Method | Batch | Forward tok/s | Forward+backward tok/s | Peak MB | Interpretation | +|---|---:|---:|---:|---:|---| +| direct | 8 | about 555k | about 332k | about 34 | baseline direct path | +| transfer | 8 | about 1.24M | about 440k | about 247 | faster but much higher memory | +| direct | 16 | about 790k | about 1.13M | about 47 | direct wins | +| transfer | 16 | about 737k | about 481k | about 248 | transfer loses | +| direct | 32 | about 6.73M | about 1.86M | about 74 | direct wins | +| transfer | 32 | about 4.89M | about 1.68M | about 250 | transfer loses | +| direct | 64 | about 6.90M | about 2.20M | about 128 | baseline direct path | +| transfer | 64 | about 2.93M | about 3.06M | about 253 | backward faster, forward slower | + +TaoNet comparison after exposing `conv_transfer`: + +- RepoBridge run: `taonet-vs-dplr-proj64-local-shift-conv-transfer-previous-broad-quality-20260429-145946` +- Config: previous-token task, seq 128, vocab 128, 100 train steps, bf16, projected DPLR mixer dim 64, local shift enabled, `ssm_kernel_mode=conv_transfer`. + +| Architecture | Batch | Eval loss | Eval accuracy | Forward tok/s | Forward+backward tok/s | Peak MB | +|---|---:|---:|---:|---:|---:|---:| +| attention TaoNet | 8 | about 4.431 | about 0.082 | about 699k | about 279k | about 103 | +| SSM TaoNet, DPLR projected 64 + local shift + conv_transfer | 8 | about 0.010 | 1.000 | about 52k | about 14k | about 195 | +| attention TaoNet | 16 | about 1.098 | about 0.862 | about 1.24M | about 303k | about 166 | +| SSM TaoNet, DPLR projected 64 + local shift + conv_transfer | 16 | about 0.008 | 1.000 | about 79k | about 24k | about 270 | +| attention TaoNet | 32 | about 0.061 | about 0.998 | about 1.24M | about 674k | about 297 | +| SSM TaoNet, DPLR projected 64 + local shift + conv_transfer | 32 | about 0.007 | 1.000 | about 157k | about 45k | about 420 | +| attention TaoNet | 64 | about 0.015 | 1.000 | about 4.48M | about 1.05M | about 553 | +| SSM TaoNet, DPLR projected 64 + local shift + conv_transfer | 64 | about 0.007 | 1.000 | about 370k | about 97k | about 719 | + +Comparison to the previous direct-conv local-shift run: + +| Batch | Direct-conv SSM forward+backward tok/s | Transfer-mode SSM forward+backward tok/s | +|---:|---:|---:| +| 8 | about 89k | about 14k | +| 16 | about 189k | about 24k | +| 32 | about 353k | about 45k | +| 64 | about 403k | about 97k | + +Interpretation: + +- Failed as an end-to-end TaoNet acceleration. +- The isolated SSM profile suggested transfer mode could help in some cases, but inside the LLM wrapper it is much slower across all tested batch sizes. +- Accuracy remains solved because the local shift branch is still active, but speed regresses badly. +- Keep `conv_transfer` only as an explicit diagnostic/experimental mode for now. +- Recommended mode remains `ssm_kernel_mode=conv` with `ssm_local_shift=True`. +- The next hardware target should not be materializing the whole transfer each layer/step. It should focus on fusing or custom-autograding the current direct DPLR response path, especially the complex rank-1 frequency operations and backward. + +### LLM Iteration 15 - Shrink DPLR Hidden State After Local-Shift Quality Fix + +Reason for this iteration: + +- The local-shift branch solved the `previous` token-memory task, but the quality-fixed SSM was still slower than attention on short seq-128 training. +- The profiler for the recommended direct DPLR path at batch 32, seq 128 showed many small complex BMM/MM calls; there was no single obvious Python-only bottleneck. +- Since local shift now carries exact one-token memory, the DPLR hidden dimension may not need to remain at 256 for this token-memory regime. +- This iteration tested smaller DPLR hidden states as a ternary-friendly architecture/config improvement. + +Remote profiler context: + +- RepoBridge run: `ssm-dplr-direct-b32-s128-profile-20260429-154242` +- Config: DPLR mixer/state dim 64, hidden dim 256, batch 32, seq 128, bf16, rank 1, direct path. +- Result: forward+backward about `2.25M` core tok/s. +- Profiler top CUDA cost was small complex BMM/MM work; `aten::bmm` accounted for about `48%` of self CUDA time. +- `aten::linalg_matrix_power` was visible but small, about `40us` CUDA total. + +Remote hidden-dim sweeps: + +- RepoBridge run: `taonet-vs-dplr-proj64-local-shift-hidden-sweep-previous-20260429-154546` +- RepoBridge run: `taonet-vs-dplr-proj64-local-shift-hidden-small-sweep-previous-20260429-155028` +- Config: previous-token task, seq 128, vocab 128, 100 train steps, bf16, projected DPLR mixer dim 64, local shift enabled, direct `conv` path. + +| SSM hidden dim | Batch | SSM eval accuracy | SSM forward+backward tok/s | SSM peak MB | Attention eval accuracy | Attention forward+backward tok/s | +|---:|---:|---:|---:|---:|---:|---:| +| 256 | 8 | 1.000 | about 89k | about 181 | about 0.096 | about 238k | +| 256 | 16 | 1.000 | about 189k | about 299 | about 0.847 | about 508k | +| 256 | 32 | 1.000 | about 353k | about 513 | 1.000 | about 555k | +| 256 | 64 | 1.000 | about 403k | about 956 | 1.000 | about 1.73M | +| 64 | 8 | 1.000 | about 95k | about 145 | about 0.102 | about 278k | +| 64 | 16 | 1.000 | about 184k | about 239 | about 0.932 | about 300k | +| 64 | 32 | 1.000 | about 370k | about 404 | about 0.999 | about 895k | +| 64 | 64 | 1.000 | about 564k | about 750 | about 0.999 | about 920k | +| 32 | 8 | 1.000 | about 91k | about 139 | about 0.097 | about 245k | +| 32 | 16 | 1.000 | about 187k | about 227 | about 0.941 | about 460k | +| 32 | 32 | 1.000 | about 302k | about 393 | about 0.998 | about 863k | +| 32 | 64 | 1.000 | about 787k | about 716 | 1.000 | about 1.75M | +| 16 | 8 | 1.000 | about 86k | about 138 | about 0.083 | about 260k | +| 16 | 16 | 1.000 | about 187k | about 223 | about 0.844 | about 495k | +| 16 | 32 | 1.000 | about 357k | about 378 | about 0.999 | about 550k | +| 16 | 64 | 1.000 | about 795k | about 705 | 1.000 | about 1.76M | + +Seq-512 speed check for hidden dim 16: + +- RepoBridge run: `taonet-vs-dplr-proj64-local-shift-hidden16-random-speed-20260429-155346` +- Config: random next-token timing task, seq 512, vocab 8192, projected DPLR mixer dim 64, hidden dim 16, local shift enabled. + +| Architecture | Batch | Forward tok/s | Forward+backward tok/s | Peak MB | Loss | +|---|---:|---:|---:|---:|---:| +| attention TaoNet | 16 | about 1.30M | about 601k | about 1332 | about 9.055 | +| SSM TaoNet, DPLR projected 64, hidden 16 + local shift | 16 | about 2.18M | about 728k | about 1511 | about 9.069 | +| attention TaoNet | 32 | about 3.87M | about 1.37M | about 2590 | about 9.060 | +| SSM TaoNet, DPLR projected 64, hidden 16 + local shift | 32 | about 3.52M | about 1.14M | about 2887 | about 9.061 | +| attention TaoNet | 64 | about 4.16M | about 1.45M | about 5121 | about 9.065 | +| SSM TaoNet, DPLR projected 64, hidden 16 + local shift | 64 | about 4.03M | about 1.31M | about 5649 | about 9.060 | + +Interpretation: + +- Success for the short token-memory benchmark: hidden dim 16 kept perfect `previous` accuracy and improved batch-64 backward throughput from about `403k` to about `795k` tok/s while reducing peak memory. +- Hidden dim 64 was also strong and slightly better at batch 32 than hidden dim 16. +- This did not become a universal seq-512 speed replacement. On random seq-512 timing, hidden dim 16 beat attention at batch 16 but lost at batch 32 and 64. +- Recommended quality-aware short-memory config is now `ssm_mixer_dim=64`, `ssm_hidden_dim=16`, `ssm_local_shift=True`, `ssm_kernel_mode=conv`. +- Recommended longer seq-512 throughput config should remain benchmark-driven; the older hidden-256 projected-64 regime still has stronger evidence around batch 16-32. + +### LLM Iteration 16 - Seq-512 Previous-Token Robustness And Hidden-State Selection + +Reason for this iteration: + +- Iteration 15 showed hidden dim 16 was excellent for seq-128 `previous` memory and mixed for seq-512 random timing. +- The missing check was a longer trained token-memory task: seq 512 `previous`, where accuracy and training speed both matter. +- This iteration tested whether the local-shift quality fix holds at seq 512 and whether hidden dim 16, 64, or 256 is the best state size at this longer context. + +Remote benchmark: + +- RepoBridge run with attention comparison: `taonet-vs-dplr-proj64-local-shift-hidden16-previous512-20260429-161213` +- RepoBridge SSM-only hidden comparison: `taonet-ssm-proj64-local-shift-previous512-hidden-compare-20260429-161306` +- Config: previous-token task, seq 512, vocab 128, 100 train steps, bf16, projected DPLR mixer dim 64, local shift enabled, direct `conv` path. + +Required TaoNet comparison: + +| Architecture | SSM hidden dim | Batch | Eval loss | Eval accuracy | Forward tok/s | Forward+backward tok/s | Peak MB | +|---|---:|---:|---:|---:|---:|---:|---:| +| attention TaoNet | n/a | 16 | about 4.614 | about 0.048 | about 2.04M | about 1.39M | about 575 | +| SSM TaoNet, DPLR projected 64 + local shift | 16 | 16 | about 0.007 | 1.000 | about 2.57M | about 701k | about 754 | +| attention TaoNet | n/a | 32 | about 2.090 | about 0.629 | about 4.79M | about 899k | about 1099 | +| SSM TaoNet, DPLR projected 64 + local shift | 16 | 32 | about 0.007 | 1.000 | about 4.32M | about 944k | about 1391 | +| attention TaoNet | n/a | 64 | about 0.239 | about 0.962 | about 4.08M | about 1.18M | about 2157 | +| SSM TaoNet, DPLR projected 64 + local shift | 16 | 64 | about 0.007 | 1.000 | about 2.57M | about 961k | about 2677 | + +SSM hidden-state comparison at seq 512: + +| SSM hidden dim | Batch | Eval accuracy | Forward tok/s | Forward+backward tok/s | Peak MB | +|---:|---:|---:|---:|---:|---:| +| 16 | 16 | 1.000 | about 2.57M | about 701k | about 754 | +| 16 | 32 | 1.000 | about 4.32M | about 944k | about 1391 | +| 16 | 64 | 1.000 | about 2.57M | about 961k | about 2677 | +| 64 | 16 | 1.000 | about 1.18M | about 494k | about 800 | +| 64 | 32 | 1.000 | about 4.26M | about 1.36M | about 1491 | +| 64 | 64 | 1.000 | about 4.70M | about 1.46M | about 2874 | +| 256 | 16 | 1.000 | about 2.49M | about 748k | about 1032 | +| 256 | 32 | 1.000 | about 3.36M | about 705k | about 1914 | +| 256 | 64 | 1.000 | about 3.62M | about 788k | about 3681 | + +Interpretation: + +- Quality success: local-shift DPLR SSM keeps perfect `previous` accuracy at seq 512 for all tested hidden sizes and batches. +- Attention did not fully learn the same task in 100 steps at batch 16/32 and reached about `0.962` accuracy at batch 64. +- Speed depends on batch: + - batch 16: hidden 256 is fastest among SSM variants, about `748k` backward tok/s; attention is still faster at about `1.39M`. + - batch 32: hidden 64 is fastest, about `1.36M` backward tok/s, beating attention's about `899k`. + - batch 64: hidden 64 is fastest, about `1.46M` backward tok/s, beating attention's about `1.18M`. +- This gives a better longer-memory recommendation than Iteration 15: + - use `ssm_hidden_dim=16` for short seq-128 memory and lower memory pressure + - use `ssm_hidden_dim=64` for seq-512 trained memory around batch 32/64 + - keep hidden 256 as a possible batch-16 or legacy speed point, but not the general quality-aware default + +### LLM Iteration 17 - TaoData Real-Text Byte-Token Pilot + +Reason for this iteration: + +- Synthetic `previous` and `increment` tasks were useful diagnostics, but they are not enough to judge LLM capability. +- The remote server has a TaoData corpus at `/home/student/Data/TaoData/pretrain.jsonl.fineweb.jsonl`. +- No SentencePiece tokenizer artifact was found at the expected remote TaoTrain/TaoData tokenizer paths, so the first real-text benchmark used dependency-free byte tokenization. +- Byte tokenization is not the final deployment tokenizer, but it gives a real-corpus next-token signal and exercises the same TaoNet model paths. + +Implementation location: + +- TaoTrain commit: `b8c4f3d Add real token TaoNet benchmark` +- TaoTrain: `scripts/benchmark_taonet_real_tokens.py` + +What changed: + +- Added a remote-friendly real-token benchmark script that: + - reads JSONL or plain text + - supports TaoData-style `text` records + - supports byte tokenization and optional SentencePiece tokenization + - builds contiguous next-token batches from one long token stream + - reports eval loss, perplexity, token accuracy, throughput, and memory + - compares attention TaoNet against multiple SSM hidden sizes in one run + +Validation: + +- Local CPU smoke passed on a plain text file with byte tokenization. +- Remote RepoBridge runs completed on TaoData JSONL. + +Remote benchmark: + +- RepoBridge run: `taonet-vs-ssm-real-token-taodata-byte-pilot-20260429-164623` +- RepoBridge run: `taonet-vs-ssm-real-token-taodata-byte-pilot-b64-20260429-164720` +- Data: `/home/student/Data/TaoData/pretrain.jsonl.fineweb.jsonl` +- Tokenization: byte-level, vocab size 259 +- Data limit: first `2,000,000` byte tokens from up to `5,000` records +- Config: seq 512, 4 layers, hidden dim 256, bf16, 150 train steps, batch 16/32/64, projected DPLR mixer dim 64, local shift enabled. + +Required TaoNet comparison: + +| Architecture | SSM hidden dim | Batch | Eval loss | Eval PPL | Eval accuracy | Forward tok/s | Forward+backward tok/s | Peak MB | +|---|---:|---:|---:|---:|---:|---:|---:|---:| +| attention TaoNet | n/a | 16 | about 2.549 | about 12.80 | about 0.260 | about 2.03M | about 1.40M | about 585 | +| SSM TaoNet, DPLR projected 64 + local shift | 16 | 16 | about 1.982 | about 7.26 | about 0.423 | about 2.42M | about 564k | about 757 | +| SSM TaoNet, DPLR projected 64 + local shift | 64 | 16 | about 1.928 | about 6.88 | about 0.440 | about 2.16M | about 488k | about 803 | +| attention TaoNet | n/a | 32 | about 2.523 | about 12.47 | about 0.266 | about 2.13M | about 809k | about 1115 | +| SSM TaoNet, DPLR projected 64 + local shift | 16 | 32 | about 1.879 | about 6.55 | about 0.455 | about 4.43M | about 1.38M | about 1396 | +| SSM TaoNet, DPLR projected 64 + local shift | 64 | 32 | about 1.848 | about 6.35 | about 0.457 | about 3.97M | about 1.25M | about 1496 | +| attention TaoNet | n/a | 64 | about 2.529 | about 12.54 | about 0.265 | about 5.98M | about 2.03M | about 2190 | +| SSM TaoNet, DPLR projected 64 + local shift | 16 | 64 | about 1.807 | about 6.10 | about 0.471 | about 4.92M | about 1.67M | about 2686 | +| SSM TaoNet, DPLR projected 64 + local shift | 64 | 64 | about 1.834 | about 6.26 | about 0.466 | about 2.54M | about 1.52M | about 2882 | + +Interpretation: + +- First real-corpus quality success: both SSM candidates beat attention on validation loss, perplexity, and byte-token accuracy after the same number of train steps. +- Hidden 64 was best quality at batch 16/32, while hidden 16 was best quality at batch 64 and generally faster among SSM variants. +- Speed tradeoff depends on batch: + - batch 16: attention backward is faster, but SSM has much better validation quality. + - batch 32: hidden-16 SSM wins both quality and backward throughput versus attention. + - batch 64: attention wins backward throughput, while SSM wins validation quality. +- This benchmark is byte-level, so it should be treated as a real-text pilot rather than the final TaoData tokenizer benchmark. +- Next real-data step: train or locate the intended SentencePiece tokenizer, then rerun the same script with `--tokenizer-type sentencepiece`. + +### LLM Iteration 18 - TaoData SentencePiece Pilot And Per-Channel Local Shift + +Reason for this iteration: + +- Byte-level TaoData results were encouraging but not the intended LLM tokenization. +- No pre-existing tokenizer artifact was found on the remote server, so a pilot SentencePiece tokenizer was trained from TaoData. +- The first 500-step SentencePiece run showed attention still ahead on validation loss at batch 32, even though SSM retained a token-accuracy edge. +- Because no-shift SSM was worse, the local shift branch was helping; the next lightweight improvement was making the shift gain per-channel instead of one scalar. + +Implementation location: + +- TaoTrain commit: `33747c1 Add TaoData pilot tokenizer config` +- TaoTrain commit: `c519645 Add per-channel SSM local shift` +- TaoTrain: `configs/tokenizer_taodata_pilot.yaml` +- TaoTrain: `src/taoTrain/models/taonet_ssm.py` +- TaoTrain: `scripts/benchmark_taonet_real_tokens.py` + +What changed: + +- Added a pilot tokenizer config: + - input: `/home/student/Data/TaoData/pretrain.jsonl.fineweb.jsonl` + - output: `/home/student/YouZheng/tokenizers/taodata_pilot_8k` + - vocab size: `8192` + - max samples: `20000` +- Trained the remote tokenizer; output files: + - `/home/student/YouZheng/tokenizers/taodata_pilot_8k/tokenizer.model` + - `/home/student/YouZheng/tokenizers/taodata_pilot_8k/tokenizer.vocab` +- Added opt-in `ssm_local_shift_per_channel`. +- The previous shift branch used one learned scalar for all model channels. +- The new branch can use one learned gain per model channel while keeping the operation cheap: shift plus elementwise multiply. + +Validation: + +- TaoTrain local tests: `python -m pytest tests\test_taonet_ssm.py -q` passed, `6 passed`. +- Local real-token smoke with `--ssm-local-shift-per-channel` passed. +- Remote tokenizer training completed. RepoBridge's local print path initially hit a Windows emoji encoding issue, but the tokenizer files were created successfully. + +SentencePiece 150-step pilot: + +- RepoBridge run: `taonet-vs-ssm-real-token-taodata-spm-pilot-20260429-171228` +- Data: TaoData FineWeb JSONL +- Tokenization: pilot SentencePiece 8k +- Config: seq 512, 4 layers, hidden dim 256, bf16, 150 train steps, batch 16/32/64, projected DPLR mixer dim 64, local shift enabled. + +| Architecture | SSM hidden dim | Batch | Eval loss | Eval PPL | Eval accuracy | Forward+backward tok/s | +|---|---:|---:|---:|---:|---:|---:| +| attention TaoNet | n/a | 16 | about 5.718 | about 304 | about 0.150 | about 1.01M | +| SSM TaoNet | 16 | 16 | about 5.723 | about 306 | about 0.149 | about 743k | +| SSM TaoNet | 64 | 16 | about 5.728 | about 307 | about 0.146 | about 381k | +| attention TaoNet | n/a | 32 | about 5.533 | about 253 | about 0.156 | about 842k | +| SSM TaoNet | 16 | 32 | about 5.505 | about 246 | about 0.165 | about 771k | +| SSM TaoNet | 64 | 32 | about 5.561 | about 260 | about 0.158 | about 1.09M | +| attention TaoNet | n/a | 64 | about 5.414 | about 225 | about 0.163 | about 623k | +| SSM TaoNet | 16 | 64 | about 5.427 | about 227 | about 0.169 | about 1.12M | +| SSM TaoNet | 64 | 64 | about 5.395 | about 220 | about 0.171 | about 623k | + +SentencePiece 500-step batch-32 follow-up: + +- RepoBridge run: `taonet-vs-ssm-real-token-taodata-spm-b32-500step-20260429-171338` +- RepoBridge run without shift: `taonet-ssm-real-token-taodata-spm-b32-500step-no-shift-20260429-171451` +- RepoBridge run with per-channel shift: `taonet-vs-ssm-real-token-taodata-spm-b32-500step-channel-shift-20260429-171917` +- Config: batch 32, seq 512, 500 train steps, eval batches 16. + +| Variant | SSM hidden dim | Shift type | Eval loss | Eval PPL | Eval accuracy | Forward+backward tok/s | +|---|---:|---|---:|---:|---:|---:| +| attention TaoNet | n/a | n/a | about 4.715 | about 112 | about 0.211 | about 1.23M in first run, about 892k in per-channel run | +| SSM TaoNet | 16 | scalar | about 4.798 | about 121 | about 0.217 | about 1.13M | +| SSM TaoNet | 64 | scalar | about 4.830 | about 125 | about 0.215 | about 968k | +| SSM TaoNet | 16 | none | about 5.088 | about 162 | about 0.171 | about 554k | +| SSM TaoNet | 64 | none | about 5.102 | about 164 | about 0.169 | about 580k | +| SSM TaoNet | 16 | per-channel | about 4.782 | about 119 | about 0.218 | about 784k | +| SSM TaoNet | 64 | per-channel | about 4.818 | about 124 | about 0.215 | about 1.08M | + +Interpretation: + +- The SentencePiece pilot is more realistic and less favorable to SSM than the byte-level pilot. +- SSM has a small token-accuracy edge at batch 32, but attention has the best 500-step validation loss/perplexity. +- Removing local shift is clearly worse, so local shift is useful for real-token modeling too. +- Per-channel shift is a small quality improvement over scalar shift: + - hidden 16 eval loss improved from about `4.798` to `4.782` + - hidden 64 eval loss improved from about `4.830` to `4.818` +- Per-channel shift is not enough to surpass attention on 500-step SentencePiece validation loss. +- Next model-improvement direction should target SSM language-modeling capacity or optimization, not just exact one-token memory: + - try larger `ssm_mixer_dim` such as 96/128 with h16/h64 + - tune SSM learning rate/weight decay separately from attention + - test a small gated local convolution/projection branch if ternary deployment accepts it + +### LLM Iteration 19 - TaoData SentencePiece Mixer-Dimension Sweep + +Reason for this iteration: + +- The 500-step SentencePiece batch-32 pilot showed SSM had a small token-accuracy edge, but attention still had better validation loss/perplexity. +- The prior best SSM used `ssm_mixer_dim=64`, originally chosen from speed-focused scaling probes. +- Because real-token quality may need more SSM channel capacity, this iteration swept projected mixer dimensions while keeping the same outer TaoNet dimensions. + +Implementation location: + +- TaoTrain commit: `357336e Sweep SSM mixer dims in real token benchmark` +- TaoTrain: `scripts/benchmark_taonet_real_tokens.py` +- RepoBridge config: `repobridge.taonet.realspm.taodata.b32.500step.mixersweep.config.json` + +What changed: + +- Added `--ssm-mixer-dims` to the real-token benchmark. +- The benchmark now records `ssm_mixer_dim` in the printed table and CSV. +- Attention TaoNet is still evaluated once per batch, while SSM TaoNet can sweep multiple hidden and mixer dimensions in the same run. + +Validation: + +- TaoTrain local syntax check: `python -m py_compile scripts\benchmark_taonet_real_tokens.py` passed. +- TaoTrain local tests with the SSM repo on `PYTHONPATH`: `python -m pytest tests\test_taonet_ssm.py -q` passed, `6 passed`. +- Local byte-token smoke with `--ssm-mixer-dims 8,12` passed and wrote CSV/JSON outputs. + +Remote benchmark: + +- RepoBridge run: `taonet-vs-ssm-real-token-taodata-spm-b32-500step-mixersweep-20260429-193729` +- Data: TaoData FineWeb JSONL +- Tokenization: pilot SentencePiece 8k +- Config: batch 32, seq 512, 4 layers, hidden dim 256, bf16, 500 train steps, 16 eval batches, local shift enabled, per-channel shift enabled. + +| Architecture | SSM hidden dim | SSM mixer dim | Eval loss | Eval PPL | Eval accuracy | Forward+backward tok/s | Peak allocated MB | +|---|---:|---:|---:|---:|---:|---:|---:| +| attention TaoNet | n/a | n/a | 4.715 | 111.633 | 0.211 | 618k | 2590 | +| SSM TaoNet | 16 | 64 | 4.780 | 119.046 | 0.218 | 1.13M | 2887 | +| SSM TaoNet | 16 | 96 | 4.759 | 116.643 | 0.222 | 973k | 3029 | +| SSM TaoNet | 16 | 128 | 4.719 | 112.088 | 0.224 | 782k | 3192 | +| SSM TaoNet | 64 | 64 | 4.824 | 124.475 | 0.214 | 982k | 2987 | +| SSM TaoNet | 64 | 96 | 4.761 | 116.917 | 0.219 | 479k | 3131 | +| SSM TaoNet | 64 | 128 | 4.784 | 119.589 | 0.218 | 457k | 3292 | + +Interpretation: + +- Increasing the projected mixer dimension helped the best SSM real-token validation loss. +- The best quality SSM in this run was `ssm_hidden_dim=16`, `ssm_mixer_dim=128`: + - validation loss `4.719`, very close to attention `4.715` + - token accuracy `0.224`, above attention `0.211` + - forward+backward throughput about `782k` tok/s, above attention about `618k` tok/s +- Hidden dim `64` did not help this batch-32 500-step SentencePiece setting; it was slower and worse than hidden dim `16` at mixer dim 128. +- Mixer dim `64` remains the best SSM speed/quality tradeoff, but mixer dim `128` is now the best SSM quality candidate on real SentencePiece token modeling. +- Next step should test whether `hidden_dim=16`, `mixer_dim=128` remains strong at batch 16/64 and longer training, then try a narrow learning-rate sweep around it. + +### LLM Iteration 20 - Attempted h16/m128 Batch Generalization Sweep + +Reason for this iteration: + +- Iteration 19 found a strong real-token batch-32 point: `ssm_hidden_dim=16`, `ssm_mixer_dim=128`. +- The user noted earlier that a single batch-size sweet spot can be misleading. +- This iteration was meant to compare attention TaoNet vs SSM TaoNet at batch 16, 32, and 64 with the same 500-step SentencePiece protocol. + +Implementation location: + +- TaoTrain commit used remotely: `357336e Sweep SSM mixer dims in real token benchmark` +- RepoBridge config: `repobridge.taonet.realspm.taodata.h16m128.batchsweep.config.json` + +Planned remote benchmark: + +- Data: TaoData FineWeb JSONL +- Tokenization: pilot SentencePiece 8k +- Config: batch 16/32/64, seq 512, 4 layers, hidden dim 256, bf16, 500 train steps, 16 eval batches +- Attention baseline: `taonet` +- SSM candidate: `taonet_ssm`, DPLR, `ssm_hidden_dim=16`, `ssm_mixer_dim=128`, local shift enabled, per-channel shift enabled + +Remote status before run: + +- RepoBridge write guard passed. +- RepoBridge preflight passed. +- Remote GPU: RTX 5090 with about 21 GB free VRAM. +- A same-user `taodata` process was present and using about 10.9 GB VRAM; no other users were detected. + +Outcome: + +- RepoBridge `full` began, but the SFTP download phase failed with: + - `Socket exception: An existing connection was forcibly closed by the remote host (10054)` + - `paramiko.ssh_exception.SSHException: Server connection dropped` +- Subsequent read-only RepoBridge SSH checks timed out with WinError `10060`. +- The new result folder did not appear in the partial local download, so no valid benchmark table was available to record. + +Interpretation: + +- This was an infrastructure interruption, not a model failure. +- Do not infer anything about h16/m128 batch generalization from this attempted run. +- Next action when the remote server is reachable: rerun or download the run for `taonet-vs-ssm-real-token-taodata-spm-h16m128-batchsweep`. + +### Current LLM-Wrapper Best Configuration + +Best current speed benchmark configuration: + +- architecture: `taonet_ssm` +- SSM core: `dplr` +- mixer projection: `ssm_mixer_dim=64` +- SSM hidden dimension: `256` +- DPLR rank: `1` +- kernel mode: `conv` +- dtype: `bf16` +- benchmark task: synthetic next-token CE through TaoNet wrapper + +Best current quality-aware token-memory configuration: + +- architecture: `taonet_ssm` +- SSM core: `dplr` +- mixer projection: `ssm_mixer_dim=64` +- SSM hidden dimension: `16` +- DPLR rank: `1` +- kernel mode: `conv` +- dtype: `bf16` +- local shift: `ssm_local_shift=True` +- benchmark task: `previous` token memory through TaoNet wrapper +- evidence: perfect eval accuracy at batch 8, 16, 32, and 64 after 100 steps; best observed short-memory batch-64 SSM backward throughput about `795k` tok/s + +Best current longer token-memory configuration: + +- architecture: `taonet_ssm` +- SSM core: `dplr` +- mixer projection: `ssm_mixer_dim=64` +- SSM hidden dimension: `64` +- DPLR rank: `1` +- kernel mode: `conv` +- dtype: `bf16` +- local shift: `ssm_local_shift=True` +- benchmark task: seq-512 `previous` token memory through TaoNet wrapper +- evidence: perfect eval accuracy at batch 16, 32, and 64 after 100 steps; best observed batch-32 and batch-64 SSM backward throughput about `1.36M` and `1.46M` tok/s, both above attention in the same task + +Best current TaoData real-text pilot configuration: + +- architecture: `taonet_ssm` +- SSM core: `dplr` +- mixer projection: `ssm_mixer_dim=128` for best current SentencePiece validation loss; `ssm_mixer_dim=64` for speed/quality balance +- SSM hidden dimension: `16` +- DPLR rank: `1` +- kernel mode: `conv` +- dtype: `bf16` +- local shift: `ssm_local_shift=True` +- local shift gain: `ssm_local_shift_per_channel=True` +- benchmark task: TaoData FineWeb JSONL, byte-level and pilot SentencePiece next-token prediction, seq 512 +- evidence: + - byte-level: lower validation loss/perplexity than attention at batch 16/32/64 after 150 steps; hidden-16 also beat attention backward throughput at batch 32 + - SentencePiece batch 32, 500 steps: `ssm_hidden_dim=16`, `ssm_mixer_dim=128` reached eval loss about `4.719` vs attention about `4.715`, with better token accuracy (`0.224` vs `0.211`) and higher backward throughput (`782k` vs `618k` tok/s) + +Current best evidence: + +- At batch 4, seq 512, projected-64 DPLR reaches about `618k` forward tok/s and `192k` backward tok/s. +- At batch 16, seq 512, projected-64 DPLR reaches about `2.12M` forward tok/s and `702k` backward tok/s. +- Attention is still faster for backward at batch 16 in the same run: about `990k` tok/s. +- DPLR projected-64 forward can exceed attention in this benchmark, but training/backward still needs improvement. +- Newer scaling rerun found a batch-32 sweet spot where projected-64 DPLR exceeded attention in both forward and forward+backward throughput: + - SSM forward about `2.62M` tok/s vs attention about `1.88M` + - SSM forward+backward about `705k` tok/s vs attention about `632k` + +Important local artifact paths: + +- `C:\Users\YouZheng\Documents\LYZ\MyContent\MyLLM\Codebase\Taotern\TaoTrain\results\repobridge-token-bench-projected\outputs-taotrain\taonet-token-dplr-proj64-bench-20260429-091624\taonet_token_benchmark.csv` +- `C:\Users\YouZheng\Documents\LYZ\MyContent\MyLLM\Codebase\Taotern\TaoTrain\results\repobridge-token-bench-projected64-scale\outputs-taotrain\taonet-token-dplr-proj64-scale-bench-20260429-091738\taonet_token_benchmark.csv` +- `C:\Users\YouZheng\Documents\LYZ\MyContent\MyLLM\Codebase\Taotern\TaoTrain\results\repobridge-token-bench-projected\outputs-taotrain\taonet-token-dplr-proj64-bench-20260429-091956\taonet_token_benchmark.csv` + +Recommended next LLM-wrapper targets: + +1. Rerun the real SentencePiece benchmark for `ssm_hidden_dim=16`, `ssm_mixer_dim=128` at batch 16/32/64 to check whether the gain generalizes beyond the batch-32 spot. +2. Optimize backward throughput in `S4TernaryDPLRSSM`; the forward path is now competitive at larger batch sizes. +3. Run a learning-rate and weight-decay sweep around the current best SSM real-token config, because the SSM and attention cores may not share the same optimum optimizer settings. +4. Investigate whether FFT/direct-response intermediates can be checkpointed or custom-autograded to improve backward speed. +5. Keep ternary deployment constraints in view: rank-1 DPLR factors still use ternary masks with learned amplitudes, and projected mixer dimensions should remain friendly to ternary compute layouts. + +## Version Timeline + +| Run | Notebook(s) | Commit printed in notebook | Device | Main purpose | +|---|---|---:|---|---| +| `_r1` | `gamma_s4_sinewave_benchmark_r1.ipynb` | not printed | CUDA | First comparison of baseline, minimal, enhanced on simple sinewave task. | +| `_r2` | `gamma_s4_sinewave_benchmark_r2.ipynb` | not printed | CUDA | Harder multivariate long-range task; enhanced first became clearly promising. | +| `_r3` | `gamma-s4-sinewave-benchmark_r3.ipynb` | `6df3777` | CUDA | Quick benchmark after deployment-cache import fix; recurrent enhanced still very slow. | +| `_r4` | `gamma-s4-sinewave-benchmark_r4.ipynb` | `d6ebddc` | CUDA | Triangular-solve recurrent optimization; large recurrent speedup. | +| `_r5` | `gamma-s4-sinewave-benchmark_r5.ipynb` | `78ae31f` | CUDA | Added recurrent/full-output agreement metrics. | +| `_r6` | quick + research notebooks | `a2474cc` / `5952546` | CPU for quick, CUDA for research | Split quick/research benchmark; first practical long-context run showed conv path was too slow. | +| `_r7` | quick + research notebooks | `4b977c1` / `b17f72a` | CUDA | Faster conv kernel generation and cheaper research defaults. | +| `_r8` | quick + research notebooks | `73e76a7` | CUDA | Skipped unused final states, enabled baseline deploy metrics, enabled token-lite. | +| `_r9` | quick + research notebooks | `8738675` / `60562bd` | CUDA | Added research visuals; performance similar to `_r8`, now presentation-friendly. | +| `_r10` | quick + research notebooks | `09db0da` / `9ff7e4e` | CUDA | Added balanced deployment metrics to test a speed/fidelity point between full recurrent and deployment-lite. | +| `_r11` | quick + research + challenge notebooks | `64f8632` / `4842762` / `bfc6e26` | CUDA | Fixed AMP FFT path, split result tables, and added challenge benchmarks for permuted MNIST, selective copying, and induction-style recall. | +| `_r12` | quick + research + challenge notebooks | `740a9ef` / `0c6ecb8` / `11bd2e6` | CUDA | Tested the input-selection gate. Forecasting stayed strong, but challenge recall tasks remained near random. | + +## `_r1` - First Simple Sinewave Comparison + +Saved notebook: + +- `output/jupyter-notebook/gamma_s4_sinewave_benchmark_r1.ipynb` + +Configuration recovered from notebook: + +- device: CUDA +- task: simple 1D sinewave next-step prediction +- `seq_len=128` +- `train_samples=512` +- `val_samples=128` +- `batch_size=32` +- `epochs=10` +- `d_model=1` +- `hidden_dim=32` +- `num_layers=2` + +Results: + +| Model | Params | Final val loss | Mean epoch s | Full ms | Full tokens/s | Recurrent ms | Recurrent tokens/s | +|---|---:|---:|---:|---:|---:|---:|---:| +| `gamma_baseline` | 134 | 0.170722 | 2.063 | 24.604 | 166477 | 51.177 | 80036 | +| `gamma_s4_minimal` | 138 | 0.019148 | 1.282 | 23.545 | 173967 | 54.462 | 75209 | +| `gamma_s4_enhanced` | 146 | 1.154002 | 1.330 | 23.389 | 175127 | 82.343 | 49743 | + +Interpretation: + +- `gamma_s4_minimal` was best on this very simple task. +- `gamma_s4_enhanced` was unstable/underfit badly here. +- This run showed that the richer enhanced block can be harmful on small/simple tasks. + +## `_r2` - Harder Multivariate Forecasting + +Saved notebook: + +- `output/jupyter-notebook/gamma_s4_sinewave_benchmark_r2.ipynb` + +Configuration recovered from notebook: + +- device: CUDA +- task: harder multivariate synthetic forecasting +- `seq_len=512` +- `num_features=8` +- `train_samples=768` +- `val_samples=192` +- `batch_size=32` +- `epochs=12` +- `d_model=8` +- `hidden_dim=64` +- `num_layers=3` + +Results: + +| Model | Params | Final val loss | Mean epoch s | Full ms | Full tokens/s | Recurrent ms | Recurrent tokens/s | +|---|---:|---:|---:|---:|---:|---:|---:| +| `gamma_baseline` | 3192 | 0.006972 | 28.916 | 146.644 | 111726 | 305.446 | 53640 | +| `gamma_s4_minimal` | 3243 | 0.110654 | 17.194 | 121.234 | 135144 | 343.394 | 47712 | +| `gamma_s4_enhanced` | 3675 | 0.006302 | 17.191 | 131.929 | 124188 | 492.576 | 33262 | + +Interpretation: + +- `gamma_s4_enhanced` became the best-quality model. +- Enhanced training was much faster than baseline on this task. +- Recurrent inference was still significantly slower than baseline. +- This was the first strong evidence that the enhanced model is useful on harder sequence tasks. + +## `_r3` - Quick Benchmark With Deployment Cache Available + +Saved notebook: + +- `output/jupyter-notebook/gamma-s4-sinewave-benchmark_r3.ipynb` + +Configuration: + +- device: CUDA +- commit: `6df3777` +- quick tasks: + - `simple`: `seq_len=192`, `features=4`, `epochs=4` + - `moderate`: `seq_len=320`, `features=6`, `epochs=5` +- models: `gamma_baseline`, `gamma_s4_enhanced` +- enhanced: `kernel_mode="auto"`, `kernel_threshold=384`, bilinear discretization + +Results: + +| Task | Model | Val loss | Mean epoch s | Full tokens/s | Recurrent ms | Recurrent tokens/s | Deploy recurrent ms | +|---|---|---:|---:|---:|---:|---:|---:| +| simple | baseline | 0.637628 | 2.199 | 5779 | 75.092 | 5114 | not available | +| simple | enhanced | 0.045667 | 2.450 | 9671 | 1024.471 | 375 | 997.631 | +| moderate | baseline | 0.533364 | 6.544 | 5729 | 192.084 | 3332 | not available | +| moderate | enhanced | 0.021113 | 6.584 | 6995 | 2815.223 | 227 | 2346.986 | + +Interpretation: + +- Enhanced quality was much better than baseline. +- Full-sequence throughput was better for enhanced. +- Recurrent enhanced path was catastrophically slow. +- This run motivated recurrent-path optimization. + +## `_r4` - Triangular-Solve Recurrent Optimization + +Saved notebook: + +- `output/jupyter-notebook/gamma-s4-sinewave-benchmark_r4.ipynb` + +Configuration: + +- device: CUDA +- commit: `d6ebddc` +- same quick tasks as `_r3` +- key code change: bilinear recurrent stepping switched to a triangular-solve path + +Results: + +| Task | Model | Val loss | Mean epoch s | Full tokens/s | Recurrent ms | Recurrent tokens/s | Deploy recurrent ms | +|---|---|---:|---:|---:|---:|---:|---:| +| simple | baseline | 0.637628 | 2.219 | 6186 | 69.398 | 5533 | not available | +| simple | enhanced | 0.045667 | 2.288 | 9728 | 139.394 | 2755 | 104.623 | +| moderate | baseline | 0.533364 | 6.409 | 6182 | 110.415 | 5796 | not available | +| moderate | enhanced | 0.021113 | 6.630 | 9896 | 240.392 | 2662 | 185.037 | + +Interpretation: + +- This was a major recurrent-inference improvement. +- Enhanced recurrent latency dropped from seconds to hundreds of milliseconds. +- Enhanced still remained slower than baseline in recurrent mode. + +## `_r5` - Agreement Metrics Added + +Saved notebook: + +- `output/jupyter-notebook/gamma-s4-sinewave-benchmark_r5.ipynb` + +Configuration: + +- device: CUDA +- commit: `78ae31f` +- same quick tasks as `_r4` +- added: + - `recurrent_match_mse` + - `deploy_match_mse` + +Results: + +| Task | Model | Val loss | Mean epoch s | Full tokens/s | Recurrent ms | Recurrent match MSE | Deploy recurrent ms | Deploy match MSE | +|---|---|---:|---:|---:|---:|---:|---:|---:| +| simple | baseline | 0.637628 | 2.317 | 6097 | 71.296 | 0.000000 | not available | not available | +| simple | enhanced | 0.045667 | 2.381 | 9963 | 141.656 | 0.008500 | 107.361 | 0.031251 | +| moderate | baseline | 0.533364 | 6.603 | 5912 | 114.832 | 0.000000 | not available | not available | +| moderate | enhanced | 0.021113 | 7.199 | 9465 | 242.692 | 0.007549 | 178.070 | 0.029995 | + +Interpretation: + +- Enhanced remained much better in quality. +- Full-sequence throughput favored enhanced. +- Recurrent/deployment-lite speed improved but still trailed baseline. +- Agreement metrics showed normal enhanced recurrent output was close to full forward; deployment-lite was faster but less faithful. + +## `_r6` - Split Quick/Research Benchmark Era + +### `_r6` Quick Notebook + +Saved notebook: + +- `output/jupyter-notebook/gamma-s4-sinewave-benchmark_r6.ipynb` + +Configuration: + +- device: CPU +- commit: `a2474cc` +- same quick tasks as `_r5` + +Results: + +| Task | Model | Val loss | Mean epoch s | Full tokens/s | Recurrent tokens/s | +|---|---|---:|---:|---:|---:| +| simple | baseline | 0.240532 | 1.444 | 15225 | 8656 | +| simple | enhanced | 0.045714 | 2.598 | 20066 | 4278 | +| moderate | baseline | 0.056279 | 5.613 | 20720 | 11785 | +| moderate | enhanced | 0.021122 | 8.653 | 12149 | 2875 | + +Interpretation: + +- This was a CPU run, so speed conclusions are not treated as primary benchmark evidence. +- It was useful as a smoke test only. +- The CPU result reminded us to warn clearly when notebooks are not running on GPU. + +### `_r6` Research Notebook + +Saved notebook: + +- `output/jupyter-notebook/gamma-s4-research-benchmark_r6.ipynb` + +Configuration: + +- device: CUDA +- commit: `5952546` +- research tasks: + - `current_reference`: `seq_len=320`, `features=6`, `epochs=5` + - `long_context`: `seq_len=768`, `features=8`, `epochs=4` +- `RUN_ABLATIONS=True` +- `RUN_TOKEN_TASK=False` + +Results: + +| Task | Model | Val loss | Mean epoch s | Expected mode | Full tokens/s | Recurrent tokens/s | Deploy tokens/s | +|---|---|---:|---:|---|---:|---:|---:| +| current_reference | baseline | 0.709749 | 6.844 | recurrent_like | 6157 | 5522 | not available | +| current_reference | enhanced | 0.020500 | 7.366 | recurrent_like | 8431 | 2594 | 3408 | +| long_context | baseline | 27.229956 | 36.239 | recurrent_like | 2819 | 2939 | not available | +| long_context | enhanced | 0.012164 | 634.387 | conv | 358 | 1876 | 2501 | + +Interpretation: + +- Enhanced crushed baseline in quality. +- But the long-context conv path was extremely slow. +- Ablation section was too expensive and was stopped mid-way. +- This run motivated the later kernel-generation speedup and disabling ablations by default. + +## `_r7` - Conv Kernel Generation Improved + +### `_r7` Quick Notebook + +Saved notebook: + +- `output/jupyter-notebook/gamma-s4-sinewave-benchmark_r7.ipynb` + +Configuration: + +- device: CUDA +- commit: `4b977c1` +- same quick tasks + +Results: + +| Task | Model | Val loss | Mean epoch s | Full tokens/s | Recurrent tokens/s | Deploy tokens/s | +|---|---|---:|---:|---:|---:|---:| +| simple | baseline | 0.637628 | 2.417 | 4977 | 5155 | not available | +| simple | enhanced | 0.045667 | 2.565 | 8583 | 2500 | 3260 | +| moderate | baseline | 0.533364 | 7.405 | 5413 | 5186 | not available | +| moderate | enhanced | 0.021113 | 7.796 | 7465 | 2414 | 3226 | + +Interpretation: + +- Quick benchmark remained stable. +- Enhanced retained quality and full-sequence throughput advantages. +- Recurrent remained slower than baseline. + +### `_r7` Research Notebook + +Saved notebook: + +- `output/jupyter-notebook/gamma-s4-research-benchmark_r7.ipynb` + +Configuration: + +- device: CUDA +- commit: `b17f72a` +- `RUN_ABLATIONS=False` +- `RUN_TOKEN_TASK=False` + +Results: + +| Task | Model | Val loss | Mean epoch s | Expected mode | Full tokens/s | Recurrent tokens/s | Deploy tokens/s | +|---|---|---:|---:|---|---:|---:|---:| +| current_reference | baseline | 0.709749 | 7.351 | recurrent_like | 3821 | 4616 | not available | +| current_reference | enhanced | 0.020500 | 7.530 | recurrent_like | 9289 | 2780 | 3339 | +| long_context | baseline | 27.229956 | 39.236 | recurrent_like | 3523 | 3282 | not available | +| long_context | enhanced | 0.012029 | 44.189 | conv | 5971 | 1776 | 2229 | + +Interpretation: + +- The conv speed issue was dramatically improved versus `_r6`. +- Enhanced long-context epoch time dropped from about 634s to about 44s. +- Enhanced was still slightly slower than baseline per epoch on long_context, but had much better loss and better full-sequence throughput. + +## `_r8` - No-State Full Forward, Baseline Deploy Metrics, Token-Lite Enabled + +### `_r8` Quick Notebook + +Saved notebook: + +- `output/jupyter-notebook/gamma-s4-sinewave-benchmark_r8.ipynb` + +Configuration: + +- device: CUDA +- commit: `73e76a7` +- same quick tasks +- baseline deploy metrics became available +- full-sequence training/inference skips unused final-state computation + +Results: + +| Task | Model | Val loss | Mean epoch s | Full tokens/s | Recurrent tokens/s | Deploy tokens/s | Deploy match MSE | +|---|---|---:|---:|---:|---:|---:|---:| +| simple | baseline | 0.637628 | 2.261 | 5711 | 5076 | 5241 | 0.000000 | +| simple | enhanced | 0.044817 | 2.550 | 8204 | 2621 | 3367 | 0.022886 | +| moderate | baseline | 0.533364 | 7.011 | 5782 | 5447 | 4519 | 0.000000 | +| moderate | enhanced | 0.020569 | 7.010 | 8926 | 2503 | 3390 | 0.018165 | + +Interpretation: + +- Baseline deploy columns now populate. +- Enhanced full-sequence throughput remained ahead. +- Training time was tied on moderate. + +### `_r8` Research Notebook + +Saved notebook: + +- `output/jupyter-notebook/gamma-s4-research-benchmark_r8.ipynb` + +Configuration: + +- device: CUDA +- commit: `73e76a7` +- `RUN_ABLATIONS=False` +- `RUN_TOKEN_TASK=True` + +Forecasting results: + +| Task | Model | Val loss | Mean epoch s | Expected mode | Full tokens/s | Recurrent tokens/s | Deploy tokens/s | +|---|---|---:|---:|---|---:|---:|---:| +| current_reference | baseline | 0.709749 | 7.235 | recurrent_like | 5941 | 5581 | 5702 | +| current_reference | enhanced | 0.019951 | 7.177 | recurrent_like | 7431 | 1918 | 2336 | +| long_context | baseline | 27.229956 | 35.557 | recurrent_like | 3969 | 3759 | 3842 | +| long_context | enhanced | 0.011708 | 14.235 | conv | 19544 | 1860 | 2406 | + +Token-lite results: + +| Model | Train CE | Val CE | Val PPL | Seq len | Train samples | +|---|---:|---:|---:|---:|---:| +| baseline | 3.587260 | 3.132184 | 22.924 | 192 | 1200 | +| enhanced | 2.483611 | 2.486829 | 12.023 | 192 | 1200 | + +Interpretation: + +- This was the strongest practical result so far. +- On long_context, enhanced was both much more accurate and much faster per epoch. +- Token-lite showed enhanced also transferred better to a language-like task. + +## `_r9` - Presentation Visuals Added + +### `_r9` Quick Notebook + +Saved notebook: + +- `output/jupyter-notebook/gamma-s4-sinewave-benchmark_r9.ipynb` + +Configuration: + +- device: CUDA +- commit: `8738675` +- same quick tasks as `_r8` + +Results: + +| Task | Model | Val loss | Mean epoch s | Full tokens/s | Recurrent tokens/s | Deploy tokens/s | +|---|---|---:|---:|---:|---:|---:| +| simple | baseline | 0.637628 | 2.249 | 6058 | 5478 | 5502 | +| simple | enhanced | 0.044817 | 2.344 | 9550 | 2617 | 3644 | +| moderate | baseline | 0.533364 | 6.672 | 6324 | 5686 | 5599 | +| moderate | enhanced | 0.020569 | 6.571 | 9304 | 2771 | 3416 | + +Interpretation: + +- Similar to `_r8`, with slightly improved timing variation. +- Enhanced still wins on quality and full-sequence throughput. +- Baseline still wins recurrent throughput. + +### `_r9` Research Notebook + +Saved notebook: + +- `output/jupyter-notebook/gamma-s4-research-benchmark_r9.ipynb` + +Configuration: + +- device: CUDA +- commit printed in notebook: `60562bd` +- visual sections added: + - task visual preview + - prediction comparison plots + - error comparison plots + +Forecasting results: + +| Task | Model | Val loss | Mean epoch s | Expected mode | Full tokens/s | Recurrent tokens/s | Deploy tokens/s | +|---|---|---:|---:|---|---:|---:|---:| +| current_reference | baseline | 0.709749 | 7.294 | recurrent_like | 6111 | 4981 | 5359 | +| current_reference | enhanced | 0.019951 | 7.494 | recurrent_like | 8099 | 2185 | 3343 | +| long_context | baseline | 27.229956 | 37.885 | recurrent_like | 3576 | 3728 | 3695 | +| long_context | enhanced | 0.011708 | 14.717 | conv | 15654 | 1810 | 2327 | + +Token-lite results: + +| Model | Train CE | Val CE | Val PPL | Seq len | Train samples | +|---|---:|---:|---:|---:|---:| +| baseline | 3.587260 | 3.132184 | 22.924 | 192 | 1200 | +| enhanced | 2.483611 | 2.486829 | 12.023 | 192 | 1200 | + +Interpretation: + +- `_r9` is the most presentation-friendly record. +- It confirms the `_r8` story: + - enhanced wins quality strongly + - enhanced wins full-sequence/conv long-context training and throughput + - baseline still wins recurrent deployment throughput + - token-lite favors enhanced + +## `_r10` - Balanced Deployment Path Added + +### `_r10` Quick Notebook + +Saved notebook: + +- `output/jupyter-notebook/gamma-s4-sinewave-benchmark_r10.ipynb` + +Configuration: + +- device: CUDA +- commit: `09db0da` +- same quick tasks as `_r9` +- new metrics: + - `balanced_deploy_recurrent_latency_ms` + - `balanced_deploy_recurrent_tokens_per_s` + - `balanced_deploy_match_mse` + +Results: + +| Task | Model | Val loss | Mean epoch s | Full tokens/s | Recurrent tokens/s | Deploy-lite tokens/s | Balanced deploy tokens/s | Deploy-lite match MSE | Balanced match MSE | +|---|---|---:|---:|---:|---:|---:|---:|---:|---:| +| simple | baseline | 0.637628 | 2.134 | 6053 | 5891 | 6034 | 5938 | 0.000000 | 0.000000 | +| simple | enhanced | 0.044817 | 2.532 | 9973 | 2507 | 3763 | 3123 | 0.022886 | 0.000986 | +| moderate | baseline | 0.533364 | 6.331 | 6134 | 5835 | 5512 | 5816 | 0.000000 | 0.000000 | +| moderate | enhanced | 0.020569 | 6.601 | 10045 | 2778 | 3510 | 2862 | 0.018165 | 0.000468 | + +Interpretation: + +- Enhanced quality and full-sequence throughput remain strong. +- Deployment-lite is still the fastest enhanced deployment variant. +- Balanced deployment is slower than deployment-lite, but much more faithful to full forward. +- Balanced deployment is useful as a fidelity-preserving approximation, not as a pure speed win. + +### `_r10` Research Notebook + +Saved notebook: + +- `output/jupyter-notebook/gamma-s4-research-benchmark_r10.ipynb` + +Configuration: + +- device: CUDA +- commit printed in notebook: `9ff7e4e` +- same research tasks as `_r9` +- balanced deployment metrics added + +Forecasting results: + +| Task | Model | Val loss | Mean epoch s | Expected mode | Full tokens/s | Recurrent tokens/s | Deploy-lite tokens/s | Balanced deploy tokens/s | Deploy-lite match MSE | Balanced match MSE | +|---|---|---:|---:|---|---:|---:|---:|---:|---:|---:| +| current_reference | baseline | 0.709749 | 7.648 | recurrent_like | 4933 | not recorded in compact table | 5092 | 4987 | 0.000000 | 0.000000 | +| current_reference | enhanced | 0.019951 | 8.193 | recurrent_like | 8152 | not recorded in compact table | 3404 | 2687 | 0.027752 | 0.000315 | +| long_context | baseline | 27.229956 | 40.350 | recurrent_like | 2395 | not recorded in compact table | 3397 | 3285 | 0.000000 | 0.000000 | +| long_context | enhanced | 0.011708 | 15.862 | conv | 16957 | not recorded in compact table | 2245 | 1886 | 0.200325 | 0.001692 | + +Token-lite results: + +| Model | Train CE | Val CE | Val PPL | Seq len | Train samples | +|---|---:|---:|---:|---:|---:| +| baseline | 3.587260 | 3.132184 | 22.924 | 192 | 1200 | +| enhanced | 2.483611 | 2.486829 | 12.023 | 192 | 1200 | + +Interpretation: + +- Long-context enhanced still wins strongly on validation loss and full-sequence throughput. +- Balanced deployment drastically improves fidelity relative to deployment-lite on enhanced: + - long_context deploy-lite match MSE: `0.200325` + - long_context balanced match MSE: `0.001692` +- However, balanced deployment is slower than deployment-lite. +- This suggests the output projection is important for fidelity, while the input-dependent gate is a major recurrent-time cost. + +## `_r11` - FFT Fix, Split Tables, And Challenge Benchmarks + +### `_r11` Quick Notebook + +Saved notebook: + +- `output/jupyter-notebook/gamma-s4-sinewave-benchmark_r11.ipynb` + +Configuration: + +- device: CUDA +- commit printed in notebook: `64f8632` +- same quick tasks as `_r10` +- notebook tables split into normal, deployment-lite, and balanced deployment views + +Results: + +| Task | Model | Val loss | Mean epoch s | Full tokens/s | Recurrent tokens/s | Deploy-lite tokens/s | Balanced deploy tokens/s | Deploy-lite match MSE | Balanced match MSE | +|---|---|---:|---:|---:|---:|---:|---:|---:|---:| +| simple | baseline | 0.637628 | 2.353 | 6162 | 5776 | 5524 | 5649 | 0.000000 | 0.000000 | +| simple | enhanced | 0.044817 | 2.113 | 11279 | 2625 | 3618 | 3112 | 0.022886 | 0.000986 | +| moderate | baseline | 0.533364 | 6.527 | 6187 | 5337 | 4572 | 5563 | 0.000000 | 0.000000 | +| moderate | enhanced | 0.020569 | 6.264 | 11434 | 2598 | 3338 | 2809 | 0.018165 | 0.000468 | + +Interpretation: + +- Enhanced remains much better on validation loss and full-sequence throughput. +- Baseline remains faster for exact recurrent stepping. +- Deployment-lite is still the fastest enhanced recurrent approximation, while balanced is much more faithful. + +### `_r11` Research Notebook + +Saved notebook: + +- `output/jupyter-notebook/gamma-s4-research-benchmark_r11.ipynb` + +Configuration: + +- device: CUDA +- commit printed in notebook: `4842762` +- includes AMP FFT fix and split benchmark tables + +Forecasting results: + +| Task | Model | Val loss | Mean epoch s | Expected mode | Full tokens/s | Recurrent tokens/s | Deploy-lite tokens/s | Balanced deploy tokens/s | Deploy-lite match MSE | Balanced match MSE | +|---|---|---:|---:|---|---:|---:|---:|---:|---:|---:| +| current_reference | baseline | 0.709749 | 6.922 | recurrent_like | 5898 | 5494 | 5162 | 5523 | 0.000000 | 0.000000 | +| current_reference | enhanced | 0.019951 | 6.383 | recurrent_like | 11200 | 2665 | 3522 | 2931 | 0.027752 | 0.000315 | +| long_context | baseline | 27.229956 | 36.928 | recurrent_like | 2994 | 2725 | 2513 | 2866 | 0.000000 | 0.000000 | +| long_context | enhanced | 0.011593 | 10.419 | conv | 235772 | 1849 | 2477 | 1542 | 0.193474 | 0.001699 | + +Token-lite results: + +| Model | Train CE | Val CE | Val PPL | Seq len | Train samples | +|---|---:|---:|---:|---:|---:| +| baseline | 3.587260 | 3.132184 | 22.924 | 192 | 1200 | +| enhanced | 2.483604 | 2.486901 | 12.024 | 192 | 1200 | + +Interpretation: + +- The AMP FFT fix worked: the long-context enhanced conv path completed and showed very high cached full-sequence throughput. +- Enhanced long-context training is now much faster than baseline in this setup and far more accurate. +- Recurrent deployment remains the weak point: enhanced exact recurrent throughput is still lower than baseline. +- Balanced deployment remains the best fidelity-preserving approximation, but it is slower than deployment-lite. + +### `_r11` Challenge Notebook + +Saved notebook: + +- `output/jupyter-notebook/gamma-s4-challenge-benchmark_r11.ipynb` + +Configuration: + +- device: CUDA +- commit printed in notebook: `bfc6e26` +- first saved run for the challenge benchmark notebook +- tasks: + - permuted MNIST + - selective copying + - induction-style associative recall + +Results: + +| Task | Model | Val loss | Val accuracy | Epoch s | Forward ms | Forward tokens/s | +|---|---|---:|---:|---:|---:|---:| +| permuted_mnist | baseline | 2.760003 | 0.206000 | 112.318 | 425.084 | 118038 | +| permuted_mnist | enhanced | 2.041562 | 0.232000 | 35.042 | 7.950 | 6311750 | +| selective_copying | baseline | 3.529677 | 0.039551 | 6.509 | 73.482 | 222965 | +| selective_copying | enhanced | 3.468455 | 0.029622 | 2.149 | 2.739 | 5981919 | +| induction_recall | baseline | 3.615992 | 0.040039 | 6.424 | 72.235 | 226816 | +| induction_recall | enhanced | 3.519182 | 0.033203 | 2.061 | 2.673 | 6130411 | + +Interpretation: + +- Enhanced is much faster on the challenge forward benchmark because the full-sequence conv path is active. +- Permuted MNIST slightly favors enhanced on both loss and accuracy, but both accuracies are still low. +- Selective copying and induction recall are near random accuracy: + - selective copying random accuracy is about `1 / 32 = 0.03125` + - induction recall random accuracy is about `1 / 32 = 0.03125` +- Enhanced often has lower CE but not consistently higher accuracy, suggesting it is learning distributional smoothing before reliable exact recall. +- This is the clearest evidence so far that pure LTI Gamma SSM structure is not enough for Mamba-style selective memory tasks. The next model improvement should add selective input flow while keeping the fixed Gamma transition. + +## `_r12` - Input-Selection Gate Tested + +### `_r12` Quick Notebook + +Saved notebook: + +- `output/jupyter-notebook/gamma-s4-sinewave-benchmark_r12.ipynb` + +Configuration: + +- device: CUDA +- commit printed in notebook: `740a9ef` +- enhanced model includes the new pre-SSM input-selection gate + +Results: + +| Task | Model | Val loss | Mean epoch s | Full tokens/s | Recurrent tokens/s | Deploy-lite tokens/s | Balanced deploy tokens/s | Deploy-lite match MSE | Balanced match MSE | +|---|---|---:|---:|---:|---:|---:|---:|---:|---:| +| simple | baseline | 0.637628 | 2.249 | 5923 | 4449 | 5323 | 5568 | 0.000000 | 0.000000 | +| simple | enhanced | 0.043149 | 2.184 | 10904 | 2438 | 3751 | 3099 | 0.021473 | 0.001503 | +| moderate | baseline | 0.450424 | 6.747 | 5908 | 4689 | 5084 | 5381 | 0.000000 | 0.000000 | +| moderate | enhanced | 0.020161 | 6.264 | 8135 | 2357 | 3771 | 2944 | 0.076783 | 0.001143 | + +Interpretation: + +- The input-selection gate did not hurt quick-task quality; enhanced still wins validation loss clearly. +- Exact recurrent enhanced slowed slightly due to the extra gate. +- Deployment-lite mismatch worsened on moderate, but balanced deployment remained much more faithful. + +### `_r12` Research Notebook + +Saved notebook: + +- `output/jupyter-notebook/gamma-s4-research-benchmark_r12.ipynb` + +Configuration: + +- device: CUDA +- commit printed in notebook: `0c6ecb8` + +Forecasting results: + +| Task | Model | Val loss | Mean epoch s | Expected mode | Full tokens/s | Recurrent tokens/s | Deploy-lite tokens/s | Balanced deploy tokens/s | Deploy-lite match MSE | Balanced match MSE | +|---|---|---:|---:|---|---:|---:|---:|---:|---:|---:| +| current_reference | baseline | 0.709749 | 7.298 | recurrent_like | 5513 | 5460 | 5212 | 5506 | 0.000000 | 0.000000 | +| current_reference | enhanced | 0.020813 | 6.753 | recurrent_like | 10218 | 2261 | 3414 | 3018 | 0.023053 | 0.000478 | +| long_context | baseline | 12.850342 | 37.374 | recurrent_like | 3720 | 3776 | 3661 | 3706 | 0.000000 | 0.000000 | +| long_context | enhanced | 0.011039 | 11.212 | conv | 229320 | 1589 | 2390 | 2043 | 0.034069 | 0.001689 | + +Token-lite results: + +| Model | Train CE | Val CE | Val PPL | Seq len | Train samples | +|---|---:|---:|---:|---:|---:| +| baseline | 2.943133 | 6.186983 | 486.377 | 192 | 1200 | +| enhanced | 2.489687 | 2.490702 | 12.070 | 192 | 1200 | + +Interpretation: + +- Enhanced remains excellent for long-context forecasting. +- Input-selection slightly improved long_context val loss versus `_r11` (`0.011039` vs `0.011593`) but worsened exact recurrent speed. +- Token-lite strongly favors enhanced in this run, though baseline appears unstable. + +### `_r12` Challenge Notebook + +Saved notebook: + +- `output/jupyter-notebook/gamma-s4-challenge-benchmark_r12.ipynb` + +Configuration: + +- device: CUDA +- commit printed in notebook: `11bd2e6` +- same challenge tasks as `_r11`, with input-selection gate active in enhanced + +Results: + +| Task | Model | Val loss | Val accuracy | Epoch s | Forward ms | Forward tokens/s | +|---|---|---:|---:|---:|---:|---:| +| permuted_mnist | baseline | 2.760003 | 0.206000 | 114.183 | 511.946 | 98010 | +| permuted_mnist | enhanced | 2.052564 | 0.209000 | 34.080 | 8.393 | 5978110 | +| selective_copying | baseline | 3.514275 | 0.028320 | 7.319 | 73.808 | 221983 | +| selective_copying | enhanced | 3.468793 | 0.029785 | 2.353 | 2.988 | 5482614 | +| induction_recall | baseline | 3.607873 | 0.038086 | 7.439 | 72.952 | 224585 | +| induction_recall | enhanced | 3.535175 | 0.039062 | 2.788 | 2.925 | 5600445 | + +Interpretation: + +- The input-selection gate did not produce a meaningful challenge-task accuracy breakthrough. +- Permuted MNIST accuracy stayed low and did not improve over `_r11`. +- Selective copying and induction recall are still near random. With 32 classes, random accuracy is about `0.03125`. +- The enhanced model still has much better forward throughput and somewhat lower CE, but accuracy shows it is not performing reliable exact recall. +- This suggests two things: + - permuted MNIST likely needs more epochs and/or more samples + - selective copying and induction need a stronger selective/content-dependent memory mechanism or a curriculum diagnostic, not just more epochs + +## Versions Not Recorded + +The following are not recorded as complete benchmark versions: + +- Research notebooks before `_r6`: no saved research `_r1` to `_r5` notebooks exist in the repo. +- Any temporary failed Colab runs during error debugging: tracebacks were discussed in chat, but they are not treated as experiment records. +- Partial long-context ablation run in `_r6`: only partial output is present, so it is not summarized as a completed ablation result. + +## Current Best Summary + +Best presentable run: + +- `_r12` research benchmark + +Most important result: + +- On `long_context`, `gamma_s4_enhanced` achieved much lower validation loss than baseline and substantially better full-sequence throughput. +- `_r11` shows the fixed AMP FFT conv path completing successfully and producing very high cached full-sequence throughput on long_context. +- `_r12` confirms the input-selection gate alone is not enough to solve selective copying or induction recall beyond near-random accuracy. + +Current limitation: + +- `gamma_s4_enhanced` still trails `gamma_baseline` in recurrent token-by-token deployment throughput. +- Challenge benchmarks show that the current model needs stronger selective/content-dependent memory mechanisms. + +Recommended next improvement targets: + +1. Add challenge-task curriculum diagnostics and longer token-memory epochs. +2. Explore stronger content-dependent memory beyond static LTI convolution, while preserving the fixed Gamma transition when possible. +3. Recurrent/deployment optimization for `gamma_s4_enhanced`. +4. Deployment-lite fidelity improvement, especially on long_context. +5. Better structured Gamma kernel generation for the conv/full-sequence path. diff --git a/code/Taotern_SSM/LICENSE b/code/Taotern_SSM/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..4463b28921ea5f7ca92d95cde9165372c0102843 --- /dev/null +++ b/code/Taotern_SSM/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 Gamma Space Model Contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/code/Taotern_SSM/MANIFEST.in b/code/Taotern_SSM/MANIFEST.in new file mode 100644 index 0000000000000000000000000000000000000000..c5bacff6977076d9ab3c5f456f24cba2f72f0d51 --- /dev/null +++ b/code/Taotern_SSM/MANIFEST.in @@ -0,0 +1,17 @@ +# Include license and readme +include LICENSE +include README.md +include pyproject.toml + +# Include optional pure-Python TileLang/Triton helper package +recursive-include csrc *.py + +# Include benchmarks and examples +recursive-include benchmarks *.py +recursive-include examples *.py +recursive-include tests *.py + +# Exclude bytecode and build artifacts +global-exclude __pycache__ +global-exclude *.py[cod] +global-exclude .DS_Store diff --git a/code/Taotern_SSM/README.md b/code/Taotern_SSM/README.md new file mode 100644 index 0000000000000000000000000000000000000000..6a0c55fd549eb34d0ce2653c9bb37a854445ea43 --- /dev/null +++ b/code/Taotern_SSM/README.md @@ -0,0 +1,666 @@ +# Gamma Space Model + +Gamma Space Model is a PyTorch codebase for experimenting with a Gamma-structured state space model (SSM) and an S4-inspired enhanced Gamma SSM while preserving a fixed lower-bidiagonal ternary-friendly transition matrix. + +This repository is now organized as an installable Python package: + +1. `gamma_space_model/` contains the models we are actively developing. +2. `csrc/` contains optional pure-Python acceleration helpers used when the runtime supports them. +3. `output/jupyter-notebook/` contains the benchmark notebooks and saved Colab runs. + +Earlier versions of this repository included a copied `s4-main/` reference tree. That vendored copy has been removed so the project can behave like a normal package. S4 remains an external theory/reference dependency, cited below, rather than source code we ship inside this repo. + +The current project direction is: + +- keep the Gamma / ternary transition structure for deployment compatibility +- borrow the most useful ideas from S4 for stability and full-sequence efficiency +- benchmark both training-time full-sequence behavior and deployment-time recurrent behavior + +## Repository Layout + +```text +gamma_ssm_s4_v2/ +|-- gamma_space_model/ +| |-- modules/ +| | |-- ssm_gamma.py # original Gamma SSM core +| | |-- block.py # original residual Gamma block +| | |-- ssm_gamma_s4.py # S4-inspired enhanced Gamma SSM core +| | |-- block_s4.py # enhanced Gamma blocks +| | `-- normalization.py # LayerNorm, RMSNorm +| |-- ops/ +| | `-- selective_scan_interface.py +| `-- __init__.py +|-- csrc/ +| `-- tilelang/ # optional acceleration helpers +|-- output/jupyter-notebook/ +| |-- gamma-s4-sinewave-benchmark.ipynb +| |-- gamma-s4-research-benchmark.ipynb +| |-- gamma-s4-challenge-benchmark.ipynb +| `-- *_rN.ipynb # saved Colab benchmark runs +|-- scripts/ +| |-- generate_gamma_benchmark_notebook.py +| `-- generate_gamma_challenge_benchmark_notebook.py +|-- tests/ +|-- EXPERIMENT_RECORD.md # run-by-run experiment history +|-- pyproject.toml # package metadata for pip install +|-- setup.py # compatibility shim for editable installs +`-- Gamma Distributed Ternary HiPPO.pdf +``` + +## What We Are Modeling + +At the highest level, all variants in this repo are state space models. The standard continuous-time form is + +```math +\dot{h}(t) = A h(t) + B u(t), \qquad y(t) = C h(t) + D u(t) +``` + +where: + +- `u(t)` is the input sequence +- `h(t)` is the latent state +- `y(t)` is the output sequence +- `A` controls the state dynamics +- `B` injects the input into the state +- `C` reads the state back out +- `D` is a direct skip term + +The main design choice in this project is to keep `A` structured and deployment-friendly. + +## The Gamma Transition Matrix + +The original Gamma SSM in this repo uses a fixed lower-bidiagonal matrix: + +```math +A_{n,n} = -1, \qquad A_{n,n-1} = 1 +``` + +and zero everywhere else. + +In matrix form: + +```text +[-1 0 0 ...] +[ 1 -1 0 ...] +[ 0 1 -1 ...] +[ . . . . ] +``` + +This is important for the project because: + +- it is sparse +- it only uses the values `-1`, `0`, and `1` +- it maps naturally to the ternary computing direction we care about + +That structural constraint is the main reason we do not simply replace Gamma with a standard S4 parameterization. + +## The Original Gamma SSM + +The original implementation is in [`gamma_space_model/modules/ssm_gamma.py`](./gamma_space_model/modules/ssm_gamma.py). + +It uses Euler discretization: + +```math +h_{t+1} = h_t + \Delta t \, (A h_t + B u_t) +``` + +and output readout: + +```math +y_t = C h_{t+1} +``` + +Key properties of the baseline: + +- fixed Gamma `A` +- learned `B` and `C` +- scalar fixed `delta_t` +- recurrent forward pass +- optional TileLang/Triton accelerated scan path when available + +This version is the simplest and most deployment-aligned baseline in the repo. + +## The S4-Inspired Enhanced Gamma SSM + +The enhanced implementation is in [`gamma_space_model/modules/ssm_gamma_s4.py`](./gamma_space_model/modules/ssm_gamma_s4.py). + +The goal is not to become full S4. The goal is to keep the Gamma transition structure while borrowing ideas that made S4 powerful and stable: + +- learned positive timestep `dt` +- stable discretization +- optional direct skip term `D` +- full-sequence kernel view for parallel training/inference +- recurrent stepping for deployment +- Mamba-inspired input selection before the Gamma SSM + +### Discretization + +The enhanced model supports three discretizations: + +#### Euler + +```math +\bar{A} = I + \Delta t A, \qquad \bar{B} = \Delta t B +``` + +#### Bilinear (Tustin) + +```math +\bar{A} = (I - \tfrac{1}{2}\Delta t A)^{-1}(I + \tfrac{1}{2}\Delta t A) +``` + +```math +\bar{B} = (I - \tfrac{1}{2}\Delta t A)^{-1}\Delta t B +``` + +#### ZOH + +```math +\bar{A} = e^{\Delta t A} +``` + +```math +\bar{B} = A^{-1}(\bar{A} - I)B +``` + +The default practical choice is bilinear discretization, because it has been the most stable and effective in our current experiments. + +### Kernel View + +For a linear time-invariant discrete SSM, the output can also be written as a causal convolution: + +```math +y_t = \sum_{\ell=0}^{t} K_{\ell} u_{t-\ell} + D u_t +``` + +with kernel + +```math +K_{\ell} = C \bar{A}^{\ell} \bar{B} +``` + +This gives us two useful execution styles for the same model: + +- recurrent stepping: useful for deployment and streaming +- full-sequence kernel/convolution view: useful for parallel whole-sequence computation + +In this repo, the enhanced model exposes: + +- `kernel_mode="recurrent"` +- `kernel_mode="conv"` +- `kernel_mode="auto"` + +The `auto` mode switches to the kernel path only when the sequence is long enough to justify it. + +## Why This Is Not "Full S4" + +This is the central design tradeoff of the project. + +S4 gets its strongest speedups from a structured parameterization of `A` that can be diagonalized or reduced to efficient kernel computations such as Cauchy/Vandermonde operations. + +Our Gamma model intentionally keeps: + +- a fixed lower-bidiagonal `A` +- ternary-friendly values +- deployment-oriented structure + +So we borrow selected S4 ideas, but we do not inherit the entire original S4 kernel machinery. + +That means: + +- we can improve stability and full-sequence performance substantially +- but the exact original S4 fast-kernel theory does not transfer directly + +## Block Design + +### Original Block + +[`gamma_space_model/modules/block.py`](./gamma_space_model/modules/block.py) defines `GammaSingleBlock`. + +Its structure is: + +```text +x +-> LayerNorm (if prenorm) +-> Gamma SSM +-> Dropout +-> Residual add +-> optional postnorm +``` + +### Enhanced Block + +[`gamma_space_model/modules/block_s4.py`](./gamma_space_model/modules/block_s4.py) defines `GammaS4Block`. + +Its structure is: + +```text +x +-> LayerNorm +-> optional input-selection gate +-> SSMGammaS4 +-> activation +-> optional gate +-> optional output linear +-> layer scale +-> dropout +-> residual add +``` + +In equations, the enhanced block is roughly: + +```math +\tilde{x} = \mathrm{Norm}(x) +``` + +```math +u = \tilde{x} \odot \sigma(W_{in\_gate}\tilde{x} + b_{in\_gate}) +``` + +```math +s = \mathrm{SSMGammaS4}(u) +``` + +```math +z = \mathrm{OutputLinear}(\sigma(s) \odot \mathrm{Gate}(\tilde{x})) +``` + +```math +\mathrm{Block}(x) = x + \alpha z +``` + +where: + +- `sigma` is the chosen activation +- the input-selection gate is a per-token channel gate inspired by Mamba's selective input flow +- `Gate` may be absent +- `alpha` is a learnable layer-scale parameter + +The input-selection gate does not change the fixed Gamma transition matrix `A`. It modulates the input before it enters the state, so the model can learn to emphasize information-bearing tokens and suppress blanks/noise while keeping the ternary-friendly state transition intact. + +There is also a lighter variant: + +- `GammaS4MinimalBlock` + +which removes the richer input-gating/output-gating/output-linear pathway and keeps only the core S4-inspired stability changes. + +## Stacked Model Pattern + +The benchmark notebooks use a simple stacked forecaster pattern: + +```math +x_0 = W_{in} u +``` + +```math +x_{\ell+1} = \mathrm{Block}_{\ell}(x_{\ell}) +``` + +```math +\hat{y} = W_{out} x_L +``` + +This pattern is implemented inside the notebooks rather than as a dedicated package module because we are still iterating rapidly on benchmark design. + +## Full-Sequence vs Recurrent vs Deployment-Lite + +The benchmarks report several distinct execution modes. + +### 1. Full-sequence + +The whole sequence is passed to `forward(...)` in one call. + +This is the relevant mode for: + +- standard training +- offline batch inference +- full-sequence throughput comparisons + +Important detail: + +- full-sequence does not always mean convolution is being used +- it only means the whole sequence is evaluated in one forward pass + +### 2. Recurrent + +The model is stepped token by token using `step(...)` while carrying state. + +This is the relevant mode for: + +- streaming inference +- autoregressive deployment +- hardware-style stateful execution + +### 3. Deployment-lite + +This is an experimental recurrent inference mode for `GammaS4Block`. + +It uses the same trained weights but simplifies part of the block-time recurrent computation to reduce runtime. The current lite path is intentionally aggressive: it skips the input-selection gate and post-SSM gate/output branch during recurrent stepping. The benchmark reports both: + +- speed improvement +- output mismatch versus the standard full-sequence prediction + +For the baseline model, deployment and recurrent are effectively the same path, so those numbers match exactly. + +### 4. Balanced deployment + +This is a middle-ground recurrent inference mode for `GammaS4Block`. + +It keeps the trained output projection, but replaces the input-selection and post-SSM gates with static gates derived from the learned gate biases. This is meant to test whether we can recover more fidelity than deployment-lite while still avoiding the full gate cost at every token. + +In the notebooks, these metrics appear as `balanced_deploy_*`. + +## Current Empirical Status + +The benchmark notebooks live in: + +- [`output/jupyter-notebook/gamma-s4-sinewave-benchmark.ipynb`](./output/jupyter-notebook/gamma-s4-sinewave-benchmark.ipynb) +- [`output/jupyter-notebook/gamma-s4-research-benchmark.ipynb`](./output/jupyter-notebook/gamma-s4-research-benchmark.ipynb) +- [`output/jupyter-notebook/gamma-s4-challenge-benchmark.ipynb`](./output/jupyter-notebook/gamma-s4-challenge-benchmark.ipynb) + +The challenge notebook is separate from the quick and research notebooks. It tracks harder capability-style tests: + +- permuted MNIST for long-range image-as-sequence memory +- selective copying for sparse content recall +- induction-style recall for key-value association across a sequence +- token-memory curriculum tiers for easy, moderate, and hard selective/induction diagnostics + +The research and challenge notebooks also include inference-oriented sections. These separate full-sequence prefill-style inference from recurrent decode-style inference, report deployment-lite and balanced deployment variants where available, and include quality/fidelity columns so speed is not interpreted independently from accuracy or output mismatch. + +Saved Colab runs are also committed in the same folder using `_rN` suffixes. + +### Experiment record guide + +The run-by-run history is summarized in [`EXPERIMENT_RECORD.md`](./EXPERIMENT_RECORD.md). + +Use that file when you want to answer: + +- what changed between `_r1`, `_r2`, ..., `_r10` +- which model variants were tested in each run +- which notebook and task configuration produced each result +- which results are complete, partial, or not recorded +- what we learned from each run + +The saved notebooks under `output/jupyter-notebook/` are the raw experiment artifacts. They include the actual Colab outputs, plots, printed metrics, and configuration cells. The experiment record is the human-readable index over those artifacts. + +The naming convention is: + +- `gamma_s4_sinewave_benchmark_r1.ipynb` and `gamma_s4_sinewave_benchmark_r2.ipynb` + - early single-notebook experiments before the quick/research split +- `gamma-s4-sinewave-benchmark_rN.ipynb` + - saved quick benchmark runs + - use these for fast regression history +- `gamma-s4-research-benchmark_rN.ipynb` + - saved practical/research benchmark runs + - use these for presentation and deeper analysis +- `gamma-s4-challenge-benchmark_rN.ipynb` + - saved challenge benchmark runs + - use these for permuted MNIST, selective copying, and induction-style recall history + +For the current project state, the most useful records are: + +- `_r9` research benchmark: best presentation artifact +- `_r10` quick/research benchmarks: latest deployment fidelity comparison with balanced deployment metrics +- `_r8` research benchmark: first mature run with token-lite enabled and strong long-context conv results +- `_r2`: early evidence that `gamma_s4_enhanced` could outperform baseline on harder sequence tasks + +When presenting to others, start with the README for theory and architecture, then use `EXPERIMENT_RECORD.md` for the experiment timeline, then open the latest `_rN` research notebook for plots and raw outputs. + +### What the quick benchmark is for + +The sinewave/quick notebook is the fast regression loop. It is used to answer: + +- does the model still train correctly? +- does full-sequence performance remain strong? +- does recurrent/deployment behavior regress? + +### What the research benchmark is for + +The research notebook is the more presentable and more practical benchmark. It currently includes: + +- `current_reference`: medium practical forecasting task +- `long_context`: harder long-range forecasting task +- `token-lite`: lightweight character-level next-token benchmark + +### Latest recorded highlights + +From the latest committed `_r10` GPU runs: + +- Quick benchmark: + - enhanced val loss is much lower than baseline on both `simple` and `moderate` + - enhanced full-sequence throughput is higher than baseline + - enhanced recurrent inference is still slower than baseline + +- Research benchmark: + - `current_reference` + - enhanced validation loss: `0.019951` + - baseline validation loss: `0.709749` + - `long_context` + - enhanced validation loss: `0.011708` + - baseline validation loss: `27.229956` + - enhanced mean epoch time: `15.86s` + - baseline mean epoch time: `40.35s` + - enhanced full-sequence throughput: `16957 tokens/s` + - baseline full-sequence throughput: `2395 tokens/s` + - enhanced balanced deployment match MSE: `0.001692` + - enhanced deployment-lite match MSE: `0.200325` + - `token-lite` + - enhanced validation CE: `2.4868` + - baseline validation CE: `3.1322` + - enhanced perplexity: `12.02` + - baseline perplexity: `22.92` + +The challenge notebook has been added after `_r10`, so its first saved run should be treated as the first challenge-task record. + +### Practical interpretation + +The current picture is: + +- the enhanced Gamma SSM is now clearly the stronger model for full-sequence training and harder tasks +- the long-context conv/full-sequence path is finally showing meaningful advantages +- recurrent deployment remains the main remaining weakness +- challenge recall tasks remain near random, so the next question is whether the model can solve easier curriculum tiers before investing in harder selective-memory variants + +## Installation + +The distribution package is named `gamma-ssm-s4-enhanced`; the Python import package remains `gamma_space_model`. + +### Install From This Checkout + +```bash +pip install -e . +``` + +### Install From GitHub + +```bash +pip install "git+https://github.com/StarMists/gamma_SSM_S4_enhanced.git" +``` + +### Install From A Private GitHub Repo + +Use a GitHub personal access token with read access to the private repository. In Colab or a shell, prefer keeping the token in an environment variable instead of hard-coding it into notebooks: + +```bash +export GITHUB_TOKEN="ghp_your_token_here" +pip install "git+https://${GITHUB_TOKEN}@github.com/StarMists/gamma_SSM_S4_enhanced.git" +``` + +In Google Colab: + +```python +import os + +os.environ["GITHUB_TOKEN"] = "ghp_your_token_here" +!pip install "git+https://${GITHUB_TOKEN}@github.com/StarMists/gamma_SSM_S4_enhanced.git" +``` + +### Install Optional Extras + +For development: + +```bash +pip install -e ".[dev]" +``` + +For benchmark notebooks: + +```bash +pip install -e ".[notebook]" +``` + +For optional performance dependencies: + +```bash +pip install -e ".[performance]" +``` + +For a private GitHub install with extras, use the PEP 508 form: + +```bash +pip install "gamma-ssm-s4-enhanced[notebook,performance] @ git+https://${GITHUB_TOKEN}@github.com/StarMists/gamma_SSM_S4_enhanced.git" +``` + +Notes: + +- CUDA / Triton / TileLang acceleration is optional +- the code automatically falls back to pure PyTorch paths when those kernels are unavailable +- installing from GitHub gives downstream LLM code access to the latest committed package without cloning the repo manually + +## Quick Start + +### Original Gamma block + +```python +import torch +from gamma_space_model import GammaSingleBlock + +block = GammaSingleBlock( + d_model=64, + hidden_dim=128, + delta_t=0.1, + prenorm=True, +) + +x = torch.randn(2, 128, 64) +y, h_T = block(x) +print(y.shape, h_T.shape) +``` + +### Enhanced Gamma block + +```python +import torch +from gamma_space_model import GammaS4Block + +block = GammaS4Block( + d_model=64, + hidden_dim=128, + discretization="bilinear", + kernel_mode="auto", + kernel_threshold=384, + input_gate=True, + gate=True, + use_D=True, +) + +x = torch.randn(2, 512, 64) +y, h_T = block(x) +print(y.shape, h_T.shape) +``` + +### Export discretized matrices for deployment + +```python +from gamma_space_model import SSMGammaS4 + +ssm = SSMGammaS4(state_dim=64, hidden_dim=128) +deployment_mats = ssm.export_inference_matrices() +print(deployment_mats.keys()) +``` + +## Tests + +The main test files are: + +- [`tests/test_ssm_gamma.py`](./tests/test_ssm_gamma.py) +- [`tests/test_block.py`](./tests/test_block.py) +- [`tests/test_ssm_gamma_s4.py`](./tests/test_ssm_gamma_s4.py) + +These cover: + +- forward and step behavior +- state initialization +- recurrent/full-sequence agreement +- enhanced conv vs recurrent consistency +- deployment cache paths + +## Roadmap / Next Improvement Points + +These are the main next-step items identified from the latest benchmark runs. They are intentionally listed as a to-do record, not yet implemented in this README update. + +1. Improve enhanced recurrent inference further. + - Full-sequence behavior is now strong. + - Recurrent deployment remains the largest performance gap. + +2. Improve deployment-lite fidelity. + - It speeds up recurrent inference, but its output mismatch on `long_context` is still too large. + +3. Improve structured kernel generation further. + - The current conv path is much better than before, but it still uses a direct kernel-building loop rather than the strongest possible structured kernel derivation. + +4. Strengthen the token benchmark. + - The current token-lite task is useful for relative comparison, but still too small to serve as a final language-model benchmark. + +5. Add more presentation-oriented result summaries. + - The research notebook now includes task previews and prediction/error plots. + - A future pass could add automated summary tables or figure exports for slide decks. + +## References + +### Internal project note + +- `Gamma Distributed Ternary HiPPO.pdf` in the repository root + +### External references + +- Albert Gu, Karan Goel, Christopher Re. *Efficiently Modeling Long Sequences with Structured State Spaces*. ICLR 2022. + - [arXiv](https://arxiv.org/abs/2111.00396) + - [official S4 repository](https://github.com/state-spaces/s4) + +- Albert Gu, Tri Dao, Stefano Ermon, Atri Rudra, Christopher Re. *HiPPO: Recurrent Memory with Optimal Polynomial Projections*. NeurIPS 2020. + - [arXiv](https://arxiv.org/abs/2008.07669) + +- Albert Gu, Tri Dao. *Mamba: Linear-Time Sequence Modeling with Selective State Spaces*. 2023. + - [arXiv](https://arxiv.org/abs/2312.00752) + +## Citation + +Yes, adding citations is good practice here. This repo builds directly on ideas from HiPPO and S4, and the README should make that explicit. + +If you use this repository in academic or technical writing, please cite the upstream S4, HiPPO, and Mamba papers above, and mention that this codebase studies a Gamma-structured SSM with S4-inspired enhancements. + +Example BibTeX entries: + +```bibtex +@inproceedings{gu2022s4, + title={Efficiently Modeling Long Sequences with Structured State Spaces}, + author={Gu, Albert and Goel, Karan and Re, Christopher}, + booktitle={International Conference on Learning Representations}, + year={2022} +} + +@inproceedings{gu2020hippo, + title={HiPPO: Recurrent Memory with Optimal Polynomial Projections}, + author={Gu, Albert and Dao, Tri and Ermon, Stefano and Rudra, Atri and Re, Christopher}, + booktitle={Advances in Neural Information Processing Systems}, + year={2020} +} + +@article{gu2023mamba, + title={Mamba: Linear-Time Sequence Modeling with Selective State Spaces}, + author={Gu, Albert and Dao, Tri}, + journal={arXiv preprint arXiv:2312.00752}, + year={2023} +} +``` diff --git a/code/Taotern_SSM/gamma_space_model/modules/__init__.py b/code/Taotern_SSM/gamma_space_model/modules/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..4f73fa57c8e60bec5717e9d5b5386b7f7302a944 --- /dev/null +++ b/code/Taotern_SSM/gamma_space_model/modules/__init__.py @@ -0,0 +1,21 @@ +"""Core modules for Gamma Space Model.""" + +from .ssm_gamma import SSMGamma +from .block import GammaSingleBlock +from .ssm_gamma_s4 import SSMGammaS4 +from .block_s4 import GammaS4Block, GammaS4MinimalBlock +from .s4_ternary_dplr_ssm import S4TernaryDPLRSSM +from .block_s4_ternary import S4TernaryDPLRBlock +from .normalization import LayerNorm, RMSNorm + +__all__ = [ + "SSMGamma", + "GammaSingleBlock", + "SSMGammaS4", + "GammaS4Block", + "GammaS4MinimalBlock", + "S4TernaryDPLRSSM", + "S4TernaryDPLRBlock", + "LayerNorm", + "RMSNorm", +] diff --git a/code/Taotern_SSM/gamma_space_model/modules/block.py b/code/Taotern_SSM/gamma_space_model/modules/block.py new file mode 100644 index 0000000000000000000000000000000000000000..82d89c10314048ab6d35241da2c7d85ad5270145 --- /dev/null +++ b/code/Taotern_SSM/gamma_space_model/modules/block.py @@ -0,0 +1,167 @@ +"""Gamma SSM Block with residual connections and normalization.""" + +import torch +import torch.nn as nn +from typing import Optional, Tuple + +from .ssm_gamma import SSMGamma +from .normalization import LayerNorm + + +class GammaSingleBlock(nn.Module): + """ + Single Gamma SSM Block with residual connection and layer normalization. + + Performs: y = Block(LayerNorm(x)) + x (if prenorm=True) + or y = LayerNorm(Block(x) + x) (if prenorm=False) + + Args: + d_model: Model dimension + hidden_dim: Hidden dimension for the SSM state + delta_t: Time discretization step (default: 0.1) + kernel_length: Convolution kernel length for future use (default: 4) + A_type: Type of A matrix initialization (default: "tridiagonal") + prenorm: Use prenorm (LayerNorm -> Block) vs postnorm (Block -> LayerNorm) (default: True) + residual_scale: Scaling factor for residual connection (default: 1.0) + dropout: Dropout rate after block (default: 0.0) + + Shape: + - Input: (batch, seq_len, d_model) + - Output: (batch, seq_len, d_model) + """ + + def __init__( + self, + d_model: int, + hidden_dim: int, + delta_t: float = 0.1, + kernel_length: int = 4, + A_type: str = "tridiagonal", + prenorm: bool = True, + residual_scale: float = 1.0, + dropout: float = 0.0, + ): + super().__init__() + self.d_model = d_model + self.prenorm = prenorm + self.dropout_p = dropout + self.residual_scale = residual_scale + + # Normalization + self.norm = LayerNorm(d_model) + + # SSM block + self.ssm = SSMGamma( + state_dim=d_model, + hidden_dim=hidden_dim, + delta_t=delta_t, + kernel_length=kernel_length, + A_type=A_type, + ) + + # Dropout + if dropout > 0: + self.dropout = nn.Dropout(dropout) + else: + self.dropout = None + + def forward( + self, + x: torch.Tensor, + state: Optional[torch.Tensor] = None, + mask: Optional[torch.Tensor] = None, + return_state: bool = True, + ) -> Tuple[torch.Tensor, Optional[torch.Tensor]]: + """ + Forward pass through block. + + Args: + x: Input tensor (batch, seq_len, d_model) + state: Optional initial hidden state (batch, hidden_dim) + mask: Optional mask (batch, seq_len) for valid positions + + Returns: + output: (batch, seq_len, d_model) + final_state: Final hidden state from SSM (batch, hidden_dim) + """ + if self.prenorm: + # Apply norm before SSM + x_norm = self.norm(x) + ssm_out, final_state = self.ssm(x_norm, mask=mask, state=state) + else: + # Apply SSM first, then norm + ssm_out, final_state = self.ssm(x, mask=mask, state=state) + ssm_out = self.norm(ssm_out) + + # Apply dropout if present + if self.dropout is not None: + ssm_out = self.dropout(ssm_out) + + # Residual connection with optional scaling + output = x * self.residual_scale + ssm_out + + # Apply final norm if postnorm + if not self.prenorm: + output = self.norm(output) + + if not return_state: + final_state = None + return output, final_state + + def step(self, u: torch.Tensor, h: torch.Tensor) -> Tuple[torch.Tensor, torch.Tensor]: + """ + Single step inference through block (RNN style). + + Args: + u: Input tensor (batch, d_model) - single timestep + h: Hidden state (batch, hidden_dim) + + Returns: + output: (batch, d_model) - block output + h_new: (batch, hidden_dim) - new hidden state + """ + if self.prenorm: + # Apply norm before SSM + u_norm = self.norm(u) + ssm_out, h_new = self.ssm.step(u_norm, h) + else: + # Apply SSM first, then norm + ssm_out, h_new = self.ssm.step(u, h) + ssm_out = self.norm(ssm_out) + + # Apply dropout if present + if self.dropout is not None: + ssm_out = self.dropout(ssm_out) + + # Residual connection with optional scaling + output = u * self.residual_scale + ssm_out + + return output, h_new + + def allocate_inference_cache( + self, + batch_size: int, + seq_len: int, + device: torch.device, + dtype: torch.dtype, + ): + """Allocate cache for efficient inference.""" + return self.ssm.allocate_inference_cache(batch_size, seq_len, device, dtype) + + def allocate_deployment_cache( + self, + batch_size: int, + seq_len: int, + device: torch.device, + dtype: torch.dtype, + ): + return self.allocate_inference_cache(batch_size, seq_len, device, dtype) + + def allocate_balanced_deployment_cache( + self, + batch_size: int, + seq_len: int, + device: torch.device, + dtype: torch.dtype, + ): + return self.allocate_inference_cache(batch_size, seq_len, device, dtype) diff --git a/code/Taotern_SSM/gamma_space_model/modules/block_s4.py b/code/Taotern_SSM/gamma_space_model/modules/block_s4.py new file mode 100644 index 0000000000000000000000000000000000000000..15918124f3736d28f7a3c648207abaa83862fd54 --- /dev/null +++ b/code/Taotern_SSM/gamma_space_model/modules/block_s4.py @@ -0,0 +1,298 @@ +"""S4-inspired Gamma block with residual mixing and optional gating.""" + +from __future__ import annotations + +from typing import Optional, Tuple + +import torch +import torch.nn as nn +import torch.nn.functional as F + +from .normalization import LayerNorm +from .ssm_gamma_s4 import SSMGammaS4 + + +class GammaS4Block(nn.Module): + """ + Residual Gamma block that keeps the gamma transition structure but adopts a + more expressive post-SSM pathway inspired by S4 blocks. + """ + + def __init__( + self, + d_model: int, + hidden_dim: int, + dt_min: float = 1e-3, + dt_max: float = 1e-1, + dt_init: float = 1e-2, + discretization: str = "bilinear", + prenorm: bool = True, + residual_scale: float = 1.0, + dropout: float = 0.0, + activation: str = "gelu", + gate: bool = True, + use_D: bool = True, + kernel_mode: str = "auto", + kernel_threshold: int = 64, + use_output_linear: bool = True, + gate_bias: float = 2.0, + input_gate: bool = True, + input_gate_bias: float = 2.0, + layer_scale_init: float = 0.1, + ) -> None: + super().__init__() + self.d_model = d_model + self.prenorm = prenorm + self.residual_scale = residual_scale + self.gate = gate + self.input_gate = input_gate + + self.norm = LayerNorm(d_model) + self.ssm = SSMGammaS4( + state_dim=d_model, + hidden_dim=hidden_dim, + dt_min=dt_min, + dt_max=dt_max, + dt_init=dt_init, + discretization=discretization, + use_D=use_D, + kernel_mode=kernel_mode, + kernel_threshold=kernel_threshold, + ) + + if activation == "gelu": + self.activation = nn.GELU() + elif activation == "silu": + self.activation = nn.SiLU() + elif activation in {"identity", "linear", None}: + self.activation = nn.Identity() + else: + raise ValueError(f"Unsupported activation '{activation}'.") + + self.output_linear = nn.Linear(d_model, d_model) if use_output_linear else nn.Identity() + self.input_gate_linear = nn.Linear(d_model, d_model) if input_gate else None + self.gate_linear = nn.Linear(d_model, d_model) if gate else None + self.dropout = nn.Dropout(dropout) if dropout > 0.0 else nn.Identity() + self.layer_scale = nn.Parameter(torch.full((d_model,), layer_scale_init)) + self._reset_parameters(gate_bias=gate_bias, input_gate_bias=input_gate_bias) + + def _reset_parameters(self, gate_bias: float, input_gate_bias: float) -> None: + if isinstance(self.output_linear, nn.Linear): + nn.init.eye_(self.output_linear.weight) + nn.init.zeros_(self.output_linear.bias) + if self.input_gate_linear is not None: + nn.init.zeros_(self.input_gate_linear.weight) + nn.init.constant_(self.input_gate_linear.bias, input_gate_bias) + if self.gate_linear is not None: + nn.init.zeros_(self.gate_linear.weight) + nn.init.constant_(self.gate_linear.bias, gate_bias) + + def forward( + self, + x: torch.Tensor, + state: Optional[torch.Tensor] = None, + mask: Optional[torch.Tensor] = None, + rate: float = 1.0, + return_state: bool = True, + ) -> Tuple[torch.Tensor, Optional[torch.Tensor]]: + residual = x + core_in = self.norm(x) if self.prenorm else x + ssm_in = core_in + if self.input_gate_linear is not None: + ssm_in = ssm_in * torch.sigmoid(self.input_gate_linear(core_in)) + ssm_out, final_state = self.ssm(ssm_in, mask=mask, state=state, rate=rate, return_state=return_state) + ssm_out = self.activation(ssm_out) + if self.gate_linear is not None: + ssm_out = ssm_out * torch.sigmoid(self.gate_linear(core_in)) + ssm_out = self.output_linear(ssm_out) + ssm_out = ssm_out * self.layer_scale + ssm_out = self.dropout(ssm_out) + output = residual * self.residual_scale + ssm_out + if not self.prenorm: + output = self.norm(output) + return output, final_state + + def step( + self, + u: torch.Tensor, + h: torch.Tensor, + rate: float = 1.0, + cache: Optional[dict] = None, + ) -> Tuple[torch.Tensor, torch.Tensor]: + residual = u + core_in = self.norm(u) if self.prenorm else u + lightweight = cache is not None and cache.get("lightweight", False) + ssm_in = core_in + if self.input_gate_linear is not None: + if cache is not None and "static_input_gate" in cache: + ssm_in = ssm_in * cache["static_input_gate"] + elif cache is not None and "input_gate_weight" in cache: + input_gate = F.linear( + core_in, + cache["input_gate_weight"], + cache["input_gate_bias"], + ) + ssm_in = ssm_in * torch.sigmoid(input_gate) + elif not lightweight: + ssm_in = ssm_in * torch.sigmoid(self.input_gate_linear(core_in)) + ssm_out, h_new = self.ssm.step(ssm_in, h, rate=rate, cache=cache) + ssm_out = self.activation(ssm_out) + if cache is not None and "layer_scale" in cache: + layer_scale = cache["layer_scale"] + else: + layer_scale = self.layer_scale.to(device=u.device, dtype=u.dtype) + if self.gate_linear is not None and not lightweight: + if cache is not None and "static_gate" in cache: + ssm_out = ssm_out * cache["static_gate"] + elif cache is not None and "gate_weight" in cache: + gate = F.linear( + core_in, + cache["gate_weight"], + cache["gate_bias"], + ) + ssm_out = ssm_out * torch.sigmoid(gate) + else: + gate = self.gate_linear(core_in) + ssm_out = ssm_out * torch.sigmoid(gate) + if cache is not None and "output_weight" in cache: + ssm_out = F.linear( + ssm_out, + cache["output_weight"], + cache["output_bias"], + ) + elif lightweight: + pass + else: + ssm_out = self.output_linear(ssm_out) + ssm_out = ssm_out * layer_scale + ssm_out = self.dropout(ssm_out) + output = residual * self.residual_scale + ssm_out + if not self.prenorm: + output = self.norm(output) + return output, h_new + + def allocate_inference_cache( + self, + batch_size: int, + seq_len: int, + device: torch.device, + dtype: Optional[torch.dtype] = None, + rate: float = 1.0, + lightweight: bool = False, + ) -> dict: + cache = self.ssm.allocate_inference_cache( + batch_size=batch_size, + seq_len=seq_len, + device=device, + dtype=dtype, + rate=rate, + ) + if dtype is None: + dtype = self.layer_scale.dtype + cache["layer_scale"] = self.layer_scale.to(device=device, dtype=dtype) + cache["lightweight"] = lightweight + cache["deployment_mode"] = "lite" if lightweight else "full" + if self.input_gate_linear is not None and not lightweight: + cache["input_gate_weight"] = self.input_gate_linear.weight.to(device=device, dtype=dtype) + cache["input_gate_bias"] = self.input_gate_linear.bias.to(device=device, dtype=dtype) + if self.gate_linear is not None and not lightweight: + cache["gate_weight"] = self.gate_linear.weight.to(device=device, dtype=dtype) + cache["gate_bias"] = self.gate_linear.bias.to(device=device, dtype=dtype) + if isinstance(self.output_linear, nn.Linear) and not lightweight: + cache["output_weight"] = self.output_linear.weight.to(device=device, dtype=dtype) + cache["output_bias"] = self.output_linear.bias.to(device=device, dtype=dtype) + return cache + + def allocate_deployment_cache( + self, + batch_size: int, + seq_len: int, + device: torch.device, + dtype: Optional[torch.dtype] = None, + rate: float = 1.0, + ) -> dict: + return self.allocate_inference_cache( + batch_size=batch_size, + seq_len=seq_len, + device=device, + dtype=dtype, + rate=rate, + lightweight=True, + ) + + def allocate_balanced_deployment_cache( + self, + batch_size: int, + seq_len: int, + device: torch.device, + dtype: Optional[torch.dtype] = None, + rate: float = 1.0, + ) -> dict: + """ + Allocate a middle-ground recurrent cache for deployment experiments. + + This keeps the trained output projection but replaces the input-dependent + gate with a static gate from the learned bias. It is meant to test a + speed/fidelity point between full recurrent inference and the aggressive + deployment-lite path. + """ + + cache = self.allocate_inference_cache( + batch_size=batch_size, + seq_len=seq_len, + device=device, + dtype=dtype, + rate=rate, + lightweight=False, + ) + if dtype is None: + dtype = self.layer_scale.dtype + cache["deployment_mode"] = "balanced" + if self.gate_linear is not None: + cache.pop("gate_weight", None) + gate_bias = self.gate_linear.bias.to(device=device, dtype=dtype) + cache["static_gate"] = torch.sigmoid(gate_bias).view(1, -1) + if self.input_gate_linear is not None: + cache.pop("input_gate_weight", None) + input_gate_bias = self.input_gate_linear.bias.to(device=device, dtype=dtype) + cache["static_input_gate"] = torch.sigmoid(input_gate_bias).view(1, -1) + return cache + + +class GammaS4MinimalBlock(GammaS4Block): + """A lighter enhanced gamma block focused on optimization stability.""" + + def __init__( + self, + d_model: int, + hidden_dim: int, + dt_min: float = 1e-3, + dt_max: float = 1e-1, + dt_init: float = 1e-2, + discretization: str = "bilinear", + prenorm: bool = True, + residual_scale: float = 1.0, + dropout: float = 0.0, + use_D: bool = True, + kernel_mode: str = "auto", + kernel_threshold: int = 64, + ) -> None: + super().__init__( + d_model=d_model, + hidden_dim=hidden_dim, + dt_min=dt_min, + dt_max=dt_max, + dt_init=dt_init, + discretization=discretization, + prenorm=prenorm, + residual_scale=residual_scale, + dropout=dropout, + activation="identity", + gate=False, + use_D=use_D, + kernel_mode=kernel_mode, + kernel_threshold=kernel_threshold, + use_output_linear=False, + input_gate=False, + layer_scale_init=1.0, + ) diff --git a/code/Taotern_SSM/gamma_space_model/modules/block_s4_ternary.py b/code/Taotern_SSM/gamma_space_model/modules/block_s4_ternary.py new file mode 100644 index 0000000000000000000000000000000000000000..5d4ac2644d26645d24a52296a9ebb706c3cb21a6 --- /dev/null +++ b/code/Taotern_SSM/gamma_space_model/modules/block_s4_ternary.py @@ -0,0 +1,148 @@ +"""Residual block for the experimental ternary-aware DPLR SSM.""" + +from __future__ import annotations + +from typing import Optional, Tuple + +import torch +import torch.nn as nn +import torch.nn.functional as F + +from .normalization import LayerNorm +from .s4_ternary_dplr_ssm import S4TernaryDPLRSSM + + +class S4TernaryDPLRBlock(nn.Module): + """Residual wrapper around the experimental DPLR SSM.""" + + def __init__( + self, + d_model: int, + hidden_dim: int, + rank: int = 1, + dt_min: float = 1e-3, + dt_max: float = 1e-1, + dt_init: float = 1e-2, + prenorm: bool = True, + residual_scale: float = 1.0, + dropout: float = 0.0, + activation: str = "gelu", + gate: bool = True, + use_D: bool = True, + kernel_mode: str = "auto", + kernel_threshold: int = 64, + use_output_linear: bool = True, + gate_bias: float = 2.0, + input_gate: bool = True, + input_gate_bias: float = 2.0, + layer_scale_init: float = 0.1, + ) -> None: + super().__init__() + self.d_model = d_model + self.prenorm = prenorm + self.residual_scale = residual_scale + + self.norm = LayerNorm(d_model) + self.ssm = S4TernaryDPLRSSM( + state_dim=d_model, + hidden_dim=hidden_dim, + rank=rank, + dt_min=dt_min, + dt_max=dt_max, + dt_init=dt_init, + use_D=use_D, + kernel_mode=kernel_mode, + kernel_threshold=kernel_threshold, + ) + + if activation == "gelu": + self.activation = nn.GELU() + elif activation == "silu": + self.activation = nn.SiLU() + elif activation in {"identity", "linear", None}: + self.activation = nn.Identity() + else: + raise ValueError(f"Unsupported activation '{activation}'.") + + self.output_linear = nn.Linear(d_model, d_model) if use_output_linear else nn.Identity() + self.input_gate_linear = nn.Linear(d_model, d_model) if input_gate else None + self.gate_linear = nn.Linear(d_model, d_model) if gate else None + self.dropout = nn.Dropout(dropout) if dropout > 0.0 else nn.Identity() + self.layer_scale = nn.Parameter(torch.full((d_model,), layer_scale_init)) + self._reset_parameters(gate_bias=gate_bias, input_gate_bias=input_gate_bias) + + def _reset_parameters(self, gate_bias: float, input_gate_bias: float) -> None: + if isinstance(self.output_linear, nn.Linear): + nn.init.eye_(self.output_linear.weight) + nn.init.zeros_(self.output_linear.bias) + if self.input_gate_linear is not None: + nn.init.zeros_(self.input_gate_linear.weight) + nn.init.constant_(self.input_gate_linear.bias, input_gate_bias) + if self.gate_linear is not None: + nn.init.zeros_(self.gate_linear.weight) + nn.init.constant_(self.gate_linear.bias, gate_bias) + + def forward( + self, + x: torch.Tensor, + state: Optional[torch.Tensor] = None, + mask: Optional[torch.Tensor] = None, + rate: float = 1.0, + return_state: bool = True, + ) -> Tuple[torch.Tensor, Optional[torch.Tensor]]: + residual = x + core_in = self.norm(x) if self.prenorm else x + ssm_in = core_in + if self.input_gate_linear is not None: + ssm_in = ssm_in * torch.sigmoid(self.input_gate_linear(core_in)) + ssm_out, final_state = self.ssm(ssm_in, mask=mask, state=state, rate=rate, return_state=return_state) + ssm_out = self.activation(ssm_out) + if self.gate_linear is not None: + ssm_out = ssm_out * torch.sigmoid(self.gate_linear(core_in)) + ssm_out = self.output_linear(ssm_out) + ssm_out = ssm_out * self.layer_scale + ssm_out = self.dropout(ssm_out) + output = residual * self.residual_scale + ssm_out + if not self.prenorm: + output = self.norm(output) + return output, final_state + + def step( + self, + u: torch.Tensor, + h: torch.Tensor, + rate: float = 1.0, + cache: Optional[dict] = None, + ) -> Tuple[torch.Tensor, torch.Tensor]: + residual = u + core_in = self.norm(u) if self.prenorm else u + ssm_in = core_in + if self.input_gate_linear is not None: + ssm_in = ssm_in * torch.sigmoid(self.input_gate_linear(core_in)) + ssm_out, h_new = self.ssm.step(ssm_in, h, rate=rate, cache=cache) + ssm_out = self.activation(ssm_out) + if self.gate_linear is not None: + ssm_out = ssm_out * torch.sigmoid(self.gate_linear(core_in)) + ssm_out = self.output_linear(ssm_out) + ssm_out = ssm_out * self.layer_scale + ssm_out = self.dropout(ssm_out) + output = residual * self.residual_scale + ssm_out + if not self.prenorm: + output = self.norm(output) + return output, h_new + + def allocate_inference_cache( + self, + batch_size: int, + seq_len: int, + device: torch.device, + dtype: Optional[torch.dtype] = None, + rate: float = 1.0, + ) -> dict: + return self.ssm.allocate_inference_cache( + batch_size=batch_size, + seq_len=seq_len, + device=device, + dtype=dtype, + rate=rate, + ) diff --git a/code/Taotern_SSM/gamma_space_model/modules/normalization.py b/code/Taotern_SSM/gamma_space_model/modules/normalization.py new file mode 100644 index 0000000000000000000000000000000000000000..a4fccffa12be3de2828ea85254f1416bf0ab1912 --- /dev/null +++ b/code/Taotern_SSM/gamma_space_model/modules/normalization.py @@ -0,0 +1,34 @@ +"""Normalization layers for Gamma Space Model.""" + +import torch +import torch.nn as nn + + +class RMSNorm(nn.Module): + """Root Mean Square Layer Normalization. + + Simpler normalization often used in modern language models. + Inspired by T5's implementation. + """ + + def __init__(self, d_model: int, eps: float = 1e-6): + super().__init__() + self.eps = eps + self.weight = nn.Parameter(torch.ones(d_model)) + + def forward(self, x: torch.Tensor) -> torch.Tensor: + """Apply RMSNorm: x * (weight / RMS(x))""" + # (batch, seq_len, d_model) or (batch, d_model) + rms = torch.sqrt(torch.mean(x ** 2, dim=-1, keepdim=True) + self.eps) + return x * self.weight / rms + + +class LayerNorm(nn.Module): + """Standard Layer Normalization (wrapper around torch.nn.LayerNorm).""" + + def __init__(self, d_model: int, eps: float = 1e-6): + super().__init__() + self.norm = nn.LayerNorm(d_model, eps=eps) + + def forward(self, x: torch.Tensor) -> torch.Tensor: + return self.norm(x) diff --git a/code/Taotern_SSM/gamma_space_model/modules/s4_ternary_dplr_ssm.py b/code/Taotern_SSM/gamma_space_model/modules/s4_ternary_dplr_ssm.py new file mode 100644 index 0000000000000000000000000000000000000000..48b06826c8925dc00970bd320771427da561bb15 --- /dev/null +++ b/code/Taotern_SSM/gamma_space_model/modules/s4_ternary_dplr_ssm.py @@ -0,0 +1,517 @@ +"""S4-style DPLR SSM with ternary-aware low-rank structure.""" + +from __future__ import annotations + +import math +from typing import ClassVar, Dict, Optional, Tuple + +import torch +import torch.nn as nn +import torch.nn.functional as F + + +class S4TernaryDPLRSSM(nn.Module): + """ + Experimental SSM that swaps the fixed gamma transition for a stable + diagonal-plus-low-rank transition and computes its convolution kernel in an + S4-style frequency domain path. + + The low-rank factors use fixed ternary sign masks in {-1, 0, 1} with + learned magnitudes, so the model stays "ternary-aware" while allowing a + different A matrix family than the original gamma construction. + """ + + _frequency_grid_cache: ClassVar[Dict[Tuple[object, ...], Tuple[torch.Tensor, torch.Tensor]]] = {} + + def __init__( + self, + state_dim: int, + hidden_dim: int, + rank: int = 1, + dt_min: float = 1e-3, + dt_max: float = 1e-1, + dt_init: float = 1e-2, + learn_dt: bool = True, + use_D: bool = True, + kernel_mode: str = "auto", + kernel_threshold: int = 64, + max_low_rank_scale: float = 0.1, + finite_tail_correction: bool = True, + reciprocal_floor: float = 1e-4, + ) -> None: + super().__init__() + if rank < 1: + raise ValueError("Expected rank >= 1.") + if kernel_mode not in {"auto", "recurrent", "conv", "conv_transfer"}: + raise ValueError( + f"Unsupported kernel_mode '{kernel_mode}'. " + "Expected one of {'auto', 'recurrent', 'conv', 'conv_transfer'}." + ) + if not (0.0 < dt_min <= dt_init <= dt_max): + raise ValueError("Expected 0 < dt_min <= dt_init <= dt_max.") + + self.state_dim = state_dim + self.hidden_dim = hidden_dim + self.rank = rank + self.dt_min = dt_min + self.dt_max = dt_max + self.learn_dt = learn_dt + self.use_D = use_D + self.kernel_mode = kernel_mode + self.kernel_threshold = kernel_threshold + self.max_low_rank_scale = max_low_rank_scale + self.finite_tail_correction = finite_tail_correction + self.reciprocal_floor = reciprocal_floor + + real_init = torch.linspace(0.25, 1.25, hidden_dim, dtype=torch.float32) + self.log_lambda_real = nn.Parameter(torch.log(real_init)) + + self.register_buffer("ternary_u_mask", self._build_ternary_mask(hidden_dim, rank, phase=0)) + self.register_buffer("ternary_v_mask", self._build_ternary_mask(hidden_dim, rank, phase=1)) + self.log_u_amp = nn.Parameter(torch.full((rank, hidden_dim), -2.0, dtype=torch.float32)) + self.log_v_amp = nn.Parameter(torch.full((rank, hidden_dim), -2.0, dtype=torch.float32)) + self.low_rank_logit = nn.Parameter(torch.full((rank,), -2.0, dtype=torch.float32)) + + scale = hidden_dim ** -0.5 + self.B = nn.Parameter(torch.randn(hidden_dim, state_dim) * scale) + self.C = nn.Parameter(torch.randn(state_dim, hidden_dim) * scale) + if use_D: + self.D = nn.Parameter(torch.ones(state_dim)) + else: + self.register_buffer("D", torch.zeros(state_dim, dtype=torch.float32)) + + dt_init_tensor = torch.tensor(float(dt_init), dtype=torch.float32) + inv_softplus_dt = torch.log(torch.expm1(dt_init_tensor)) + if learn_dt: + self.log_dt = nn.Parameter(inv_softplus_dt) + else: + self.register_buffer("log_dt", inv_softplus_dt) + + self._kernel_cache: Dict[Tuple[object, ...], torch.Tensor] = {} + + @staticmethod + def _build_ternary_mask(hidden_dim: int, rank: int, phase: int) -> torch.Tensor: + base = torch.arange(hidden_dim, dtype=torch.int64) + masks = [] + for r in range(rank): + shifted = (base + phase + r) % 3 + mask = torch.zeros(hidden_dim, dtype=torch.float32) + mask[shifted == 0] = 1.0 + mask[shifted == 2] = -1.0 + masks.append(mask) + return torch.stack(masks, dim=0) + + def clear_kernel_cache(self) -> None: + self._kernel_cache.clear() + self._frequency_grid_cache.clear() + + def _frequency_roots( + self, + seq_len: int, + fft_len: int, + dtype: torch.dtype, + device: torch.device, + ) -> Tuple[torch.Tensor, torch.Tensor]: + complex_dtype = torch.complex64 if dtype != torch.float64 else torch.complex128 + cache_key = ( + seq_len, + fft_len, + dtype, + device.type, + device.index, + complex_dtype, + ) + cached = self._frequency_grid_cache.get(cache_key) + if cached is not None: + return cached + + freq_count = fft_len // 2 + 1 + theta = 2.0 * math.pi * torch.arange(freq_count, device=device, dtype=dtype) / float(fft_len) + roots = torch.polar(torch.ones_like(theta), -theta).to(dtype=complex_dtype) + roots_power = roots.pow(seq_len) + self._frequency_grid_cache[cache_key] = (roots, roots_power) + return roots, roots_power + + def _kernel_cache_key( + self, + seq_len: int, + fft_len: int, + rate: float, + dtype: torch.dtype, + device: torch.device, + ) -> Tuple[object, ...]: + return ( + seq_len, + fft_len, + float(rate), + dtype, + device.type, + device.index, + self.log_lambda_real._version, + self.log_u_amp._version, + self.log_v_amp._version, + self.low_rank_logit._version, + self.B._version, + self.C._version, + self.D._version, + self.log_dt._version, + self.finite_tail_correction, + self.reciprocal_floor, + ) + + def _get_dt(self, rate: float = 1.0, dtype: Optional[torch.dtype] = None) -> torch.Tensor: + dt = F.softplus(self.log_dt) + dt = torch.clamp(dt, min=self.dt_min, max=self.dt_max) * rate + if dtype is not None: + dt = dt.to(dtype=dtype) + return dt + + def _discrete_params( + self, + rate: float = 1.0, + dtype: Optional[torch.dtype] = None, + device: Optional[torch.device] = None, + ) -> Tuple[torch.Tensor, torch.Tensor, torch.Tensor, torch.Tensor]: + target_dtype = dtype or self.B.dtype + target_device = device or self.B.device + + dt = self._get_dt(rate=rate, dtype=target_dtype).to(device=target_device, dtype=target_dtype) + lambda_cont = -F.softplus(self.log_lambda_real).to(device=target_device, dtype=target_dtype) + diag = torch.exp(dt * lambda_cont) + + numerator = diag - 1.0 + denom = torch.where(lambda_cont.abs() > 1e-6, lambda_cont, torch.full_like(lambda_cont, -1.0)) + b_scale = torch.where(lambda_cont.abs() > 1e-6, numerator / denom, dt * torch.ones_like(lambda_cont)) + B_disc = b_scale.unsqueeze(-1) * self.B.to(device=target_device, dtype=target_dtype) + + scale = self.max_low_rank_scale * torch.sigmoid(self.low_rank_logit).to( + device=target_device, + dtype=target_dtype, + ) + u_amp = F.softplus(self.log_u_amp).to(device=target_device, dtype=target_dtype) + v_amp = F.softplus(self.log_v_amp).to(device=target_device, dtype=target_dtype) + U = (self.ternary_u_mask.to(device=target_device, dtype=target_dtype) * u_amp * scale.unsqueeze(-1)).transpose(0, 1) + V = (self.ternary_v_mask.to(device=target_device, dtype=target_dtype) * v_amp).transpose(0, 1) + + return diag, U, V, B_disc + + def _dense_discrete_A( + self, + rate: float = 1.0, + dtype: Optional[torch.dtype] = None, + device: Optional[torch.device] = None, + ) -> torch.Tensor: + diag, U, V, _ = self._discrete_params(rate=rate, dtype=dtype, device=device) + return self._dense_discrete_A_from_params(diag, U, V) + + @staticmethod + def _dense_discrete_A_from_params( + diag: torch.Tensor, + U: torch.Tensor, + V: torch.Tensor, + ) -> torch.Tensor: + return torch.diag(diag) - torch.matmul(U, V.transpose(0, 1)) + + @staticmethod + def _safe_complex_reciprocal(value: torch.Tensor, floor: float) -> torch.Tensor: + if floor <= 0.0: + return value.reciprocal() + magnitude_sq = value.real.square() + value.imag.square() + magnitude_sq = magnitude_sq.clamp_min(floor * floor) + return value.conj() / magnitude_sq + + def _compute_frequency_response( + self, + seq_len: int, + fft_len: int, + rate: float = 1.0, + dtype: Optional[torch.dtype] = None, + device: Optional[torch.device] = None, + use_cache: bool = False, + ) -> torch.Tensor: + target_dtype = dtype or self.B.dtype + target_device = device or self.B.device + cache_key = self._kernel_cache_key(seq_len, fft_len, rate, target_dtype, target_device) + if use_cache and cache_key in self._kernel_cache: + return self._kernel_cache[cache_key] + + diag, U, V, B_disc = self._discrete_params(rate=rate, dtype=target_dtype, device=target_device) + A_dense = self._dense_discrete_A_from_params(diag, U, V) + C = self.C.to(device=target_device, dtype=target_dtype) + D = self.D.to(device=target_device, dtype=target_dtype) + identity = torch.eye(self.hidden_dim, device=target_device, dtype=target_dtype) + A_power = torch.linalg.matrix_power(A_dense, seq_len) if self.finite_tail_correction else None + + complex_dtype = torch.complex64 if target_dtype != torch.float64 else torch.complex128 + freq_count = fft_len // 2 + 1 + roots, roots_power = self._frequency_roots(seq_len, fft_len, target_dtype, target_device) + + diag_complex = diag.to(dtype=complex_dtype) + U_complex = U.to(dtype=complex_dtype) + V_complex = V.to(dtype=complex_dtype) + B_complex = B_disc.to(dtype=complex_dtype) + denom = 1.0 - roots[:, None] * diag_complex[None, :] + inv_diag = self._safe_complex_reciprocal(denom, self.reciprocal_floor) + + inv_b = inv_diag[:, :, None] * B_complex[None, :, :] + omega_u = roots[:, None, None] * U_complex[None, :, :] + inv_u = inv_diag[:, :, None] * omega_u + + vt_inv_u = torch.einsum("nr,fns->frs", V_complex, inv_u) + vt_inv_b = torch.einsum("nr,fnd->frd", V_complex, inv_b) + if self.rank == 1: + middle = self._safe_complex_reciprocal(1.0 + vt_inv_u[:, 0, 0], self.reciprocal_floor) + correction = ( + inv_u[:, :, 0].unsqueeze(-1) + * middle.view(freq_count, 1, 1) + * vt_inv_b[:, 0, :].unsqueeze(1) + ) + else: + rank_eye = torch.eye(self.rank, device=target_device, dtype=complex_dtype).expand(freq_count, -1, -1) + middle = torch.linalg.inv(rank_eye + vt_inv_u) + correction = torch.einsum("fns,frs,frd->fnd", inv_u, middle, vt_inv_b) + response = inv_b - correction + + if self.finite_tail_correction: + if A_power is None: + raise RuntimeError("A_power must be available when finite_tail_correction=True.") + finite_correction = identity.to(dtype=complex_dtype).unsqueeze(0) - ( + roots_power.view(freq_count, 1, 1) * A_power.to(dtype=complex_dtype).unsqueeze(0) + ) + else: + finite_correction = identity.to(dtype=complex_dtype).unsqueeze(0).expand(freq_count, -1, -1) + c_term = torch.matmul(C.to(dtype=complex_dtype).unsqueeze(0), finite_correction) + transfer = torch.einsum("fon,fnd->fod", c_term, response) + diag_idx = torch.arange(self.state_dim, device=target_device) + transfer[:, diag_idx, diag_idx] += D.to(dtype=complex_dtype) + + if use_cache: + self._kernel_cache[cache_key] = transfer.detach() + return transfer + + def _apply_frequency_response( + self, + u_f: torch.Tensor, + seq_len: int, + fft_len: int, + rate: float = 1.0, + dtype: Optional[torch.dtype] = None, + device: Optional[torch.device] = None, + ) -> torch.Tensor: + target_dtype = dtype or self.B.dtype + target_device = device or self.B.device + + diag, U, V, B_disc = self._discrete_params(rate=rate, dtype=target_dtype, device=target_device) + A_dense = self._dense_discrete_A_from_params(diag, U, V) + C = self.C.to(device=target_device, dtype=target_dtype) + D = self.D.to(device=target_device, dtype=target_dtype) + A_power = torch.linalg.matrix_power(A_dense, seq_len) if self.finite_tail_correction else None + + complex_dtype = torch.complex64 if target_dtype != torch.float64 else torch.complex128 + freq_count = fft_len // 2 + 1 + roots, roots_power = self._frequency_roots(seq_len, fft_len, target_dtype, target_device) + + diag_complex = diag.to(dtype=complex_dtype) + U_complex = U.to(dtype=complex_dtype) + V_complex = V.to(dtype=complex_dtype) + B_complex = B_disc.to(dtype=complex_dtype) + C_complex = C.to(dtype=complex_dtype) + u_freq = u_f.permute(2, 0, 1).to(dtype=complex_dtype) + + denom = 1.0 - roots[:, None] * diag_complex[None, :] + inv_diag = self._safe_complex_reciprocal(denom, self.reciprocal_floor) + + input_term = torch.einsum("nd,fbd->fbn", B_complex, u_freq) + inv_input = inv_diag[:, None, :] * input_term + omega_u = roots[:, None, None] * U_complex[None, :, :] + inv_u = inv_diag[:, :, None] * omega_u + + vt_inv_u = torch.einsum("nr,fns->frs", V_complex, inv_u) + vt_inv_input = torch.einsum("nr,fbn->fbr", V_complex, inv_input) + if self.rank == 1: + middle = self._safe_complex_reciprocal(1.0 + vt_inv_u[:, 0, 0], self.reciprocal_floor) + correction = ( + inv_u[:, None, :, 0] + * middle.view(freq_count, 1, 1) + * vt_inv_input[:, :, 0].unsqueeze(-1) + ) + else: + rank_eye = torch.eye(self.rank, device=target_device, dtype=complex_dtype).expand(freq_count, -1, -1) + middle = torch.linalg.inv(rank_eye + vt_inv_u) + correction = torch.einsum("fns,frs,fbr->fbn", inv_u, middle, vt_inv_input) + response = inv_input - correction + + y_freq = torch.einsum("on,fbn->fbo", C_complex, response) + if self.finite_tail_correction: + if A_power is None: + raise RuntimeError("A_power must be available when finite_tail_correction=True.") + A_power_complex = A_power.to(dtype=complex_dtype) + powered_readout = torch.matmul(C_complex, A_power_complex) + y_freq = y_freq - ( + roots_power.view(freq_count, 1, 1) + * torch.einsum("on,fbn->fbo", powered_readout, response) + ) + y_freq = y_freq + u_freq * D.to(dtype=complex_dtype).view(1, 1, -1) + return y_freq.permute(1, 2, 0) + + def _forward_convolutional( + self, + u: torch.Tensor, + rate: float = 1.0, + return_state: bool = True, + ) -> Tuple[torch.Tensor, Optional[torch.Tensor]]: + batch, seq_len, state_dim = u.shape + original_dtype = u.dtype + fft_dtype = torch.float32 if u.dtype in {torch.float16, torch.bfloat16} else u.dtype + fft_len = 1 << max(1, (2 * seq_len - 1).bit_length()) + use_kernel_cache = not self.training and not torch.is_grad_enabled() + + with torch.autocast(device_type=u.device.type, enabled=False): + u_channels = u.transpose(1, 2).to(dtype=fft_dtype) + u_f = torch.fft.rfft(u_channels, n=fft_len) + if use_kernel_cache or self.kernel_mode == "conv_transfer": + transfer = self._compute_frequency_response( + seq_len=seq_len, + fft_len=fft_len, + rate=rate, + dtype=fft_dtype, + device=u.device, + use_cache=use_kernel_cache, + ) + y_f = torch.einsum("foi,bif->bof", transfer, u_f) + else: + y_f = self._apply_frequency_response( + u_f=u_f, + seq_len=seq_len, + fft_len=fft_len, + rate=rate, + dtype=fft_dtype, + device=u.device, + ) + y = torch.fft.irfft(y_f, n=fft_len)[..., :seq_len] + y = y.transpose(1, 2).to(dtype=original_dtype) + + if not return_state: + return y, None + + cache = self.allocate_inference_cache( + batch_size=batch, + seq_len=seq_len, + device=u.device, + dtype=u.dtype, + rate=rate, + ) + h = self.init_state(batch, u.device, u.dtype) + for t in range(seq_len): + _, h = self.step(u[:, t, :], h, cache=cache) + return y, h + + def init_state( + self, + batch_size: int, + device: torch.device, + dtype: Optional[torch.dtype] = None, + ) -> torch.Tensor: + if dtype is None: + dtype = self.B.dtype + return torch.zeros(batch_size, self.hidden_dim, device=device, dtype=dtype) + + def allocate_inference_cache( + self, + batch_size: int, + seq_len: int, + device: torch.device, + dtype: Optional[torch.dtype] = None, + rate: float = 1.0, + ) -> Dict[str, torch.Tensor]: + del batch_size, seq_len + if dtype is None: + dtype = self.B.dtype + diag, U, V, B_disc = self._discrete_params(rate=rate, dtype=dtype, device=device) + A_disc = self._dense_discrete_A_from_params(diag, U, V) + C = self.C.to(device=device, dtype=dtype) + D = self.D.to(device=device, dtype=dtype) + return { + "A_T": A_disc.transpose(0, 1).contiguous(), + "B_T": B_disc.transpose(0, 1).contiguous(), + "C_T": C.transpose(0, 1).contiguous(), + "D": D, + } + + def export_inference_matrices(self, rate: float = 1.0) -> Dict[str, torch.Tensor]: + diag, U, V, B_disc = self._discrete_params(rate=rate, dtype=self.B.dtype, device=self.B.device) + A_disc = self._dense_discrete_A_from_params(diag, U, V) + lambda_cont = -F.softplus(self.log_lambda_real).to(device=self.B.device, dtype=self.B.dtype) + return { + "A_continuous_diag": lambda_cont.detach().clone(), + "A_discrete": A_disc.detach().clone(), + "low_rank_U": U.detach().clone(), + "low_rank_V": V.detach().clone(), + "B": B_disc.detach().clone(), + "C": self.C.detach().clone(), + "D": self.D.detach().clone(), + "dt": self._get_dt(rate=rate, dtype=self.B.dtype).detach().clone(), + "ternary_u_mask": self.ternary_u_mask.detach().clone(), + "ternary_v_mask": self.ternary_v_mask.detach().clone(), + "diag": diag.detach().clone(), + } + + def step( + self, + u: torch.Tensor, + h: torch.Tensor, + rate: float = 1.0, + cache: Optional[Dict[str, torch.Tensor]] = None, + ) -> Tuple[torch.Tensor, torch.Tensor]: + if cache is None: + cache = self.allocate_inference_cache( + batch_size=u.size(0), + seq_len=1, + device=u.device, + dtype=u.dtype, + rate=rate, + ) + h_new = torch.matmul(h, cache["A_T"]) + torch.matmul(u, cache["B_T"]) + y = torch.matmul(h_new, cache["C_T"]) + u * cache["D"] + return y, h_new + + def forward( + self, + u: torch.Tensor, + mask: Optional[torch.Tensor] = None, + state: Optional[torch.Tensor] = None, + rate: float = 1.0, + return_state: bool = True, + ) -> Tuple[torch.Tensor, Optional[torch.Tensor]]: + if state is None and mask is None: + use_conv = self.kernel_mode == "conv" or ( + self.kernel_mode == "auto" and u.size(1) >= self.kernel_threshold + ) + if use_conv: + return self._forward_convolutional(u, rate=rate, return_state=return_state) + + batch, seq_len, _ = u.shape + if state is None: + h = self.init_state(batch, u.device, u.dtype) + else: + h = state.to(device=u.device, dtype=u.dtype) + + cache = self.allocate_inference_cache( + batch_size=batch, + seq_len=seq_len, + device=u.device, + dtype=u.dtype, + rate=rate, + ) + + outputs = [] + for t in range(seq_len): + y_t, h = self.step(u[:, t, :], h, cache=cache) + if mask is not None: + mask_t = mask[:, t].unsqueeze(-1).to(dtype=u.dtype) + y_t = y_t * mask_t + h = h * mask_t + outputs.append(y_t) + + final_state = h if return_state else None + return torch.stack(outputs, dim=1), final_state diff --git a/code/Taotern_SSM/gamma_space_model/modules/ssm_gamma.py b/code/Taotern_SSM/gamma_space_model/modules/ssm_gamma.py new file mode 100644 index 0000000000000000000000000000000000000000..109dfe3f2333e6b132282b737b681f9f745345a0 --- /dev/null +++ b/code/Taotern_SSM/gamma_space_model/modules/ssm_gamma.py @@ -0,0 +1,195 @@ +"""SSM Gamma (HiPPO-Gamma) block implementation.""" + +import torch +import torch.nn as nn +import torch.nn.functional as F +import numpy as np +from typing import Tuple, Optional + +# Try to import CUDA-optimized ops +try: + from gamma_space_model.ops import ssm_gamma_forward, HAS_TILELANG_OPS + HAS_CUDA_OPS = HAS_TILELANG_OPS +except ImportError: + HAS_CUDA_OPS = False + ssm_gamma_forward = None + + +class SSMGamma(nn.Module): + """ + State Space Model with HiPPO-Gamma initialization. + + Implements a recurrent SSM with Euler discretization and learnable input/output projections. + Uses tridiagonal HiPPO-Gamma matrix initialization for the state transition matrix A. + + Args: + state_dim: Input dimension (features/d_model) + hidden_dim: Hidden dimension of the SSM state + delta_t: Time discretization step (default: 0.1) + kernel_length: Length of the convolution kernel for future convolution-based SSM variants (default: 4) + A_type: Type of A matrix initialization, "tridiagonal" for HiPPO-Gamma (default: "tridiagonal") + + Shape: + - Input: (batch, seq_len, state_dim) + - Output: (batch, seq_len, state_dim) + """ + + def __init__( + self, + state_dim: int, + hidden_dim: int, + delta_t: float = 0.1, + kernel_length: int = 4, + A_type: str = "tridiagonal", + ): + super().__init__() + self.state_dim = state_dim + self.hidden_dim = hidden_dim + self.delta_t = delta_t + self.kernel_length = kernel_length + self.A_type = A_type + + # Construct HiPPO-Gamma state transition matrix A + # Tridiagonal matrix: A[i,i] = -1, A[i+1,i] = 1 + A = torch.zeros(self.hidden_dim, self.hidden_dim) + for i in range(self.hidden_dim): + for j in range(self.hidden_dim): + if i == j: + A[i, j] = -1.0 + elif i == j + 1: + A[i, j] = 1.0 + #for i in range(self.hidden_dim): + # for j in range(self.hidden_dim): + # if i == j: + # A[i, j] = i + 1.0 + # elif i > j: + # A[i, j] = torch.sqrt(torch.tensor(2 * i + 1, dtype=torch.float32)) * torch.sqrt(torch.tensor(2 * j + 1, dtype=torch.float32)) + # elif i < j: + # A[i, j] = 0 + self.register_buffer('A', A) + + # Properly scaled parameter initialization (from S4 papers) + # B: maps from state_dim to hidden_dim + # C: maps from hidden_dim to state_dim + scale = 1.0 / np.sqrt(self.hidden_dim) + self.B = nn.Parameter(torch.normal(0, scale, (self.hidden_dim, self.state_dim))) + self.C = nn.Parameter(torch.normal(0, scale, (self.state_dim, self.hidden_dim))) + + def forward( + self, + u: torch.Tensor, + mask: Optional[torch.Tensor] = None, + state: Optional[torch.Tensor] = None, + ) -> Tuple[torch.Tensor, torch.Tensor]: + """ + Forward pass through SSM. + + Uses CUDA-optimized parallel scan if available and tensor is on GPU, + otherwise falls back to PyTorch CPU implementation. + + Args: + u: Input tensor (batch, seq_len, state_dim) + mask: Optional mask (batch, seq_len), True for valid positions + state: Optional initial hidden state (batch, hidden_dim). If None, use zeros. + + Returns: + output: (batch, seq_len, state_dim) - SSM output + final_state: (batch, hidden_dim) - Final hidden state + """ + batch, seq_len, _ = u.shape + device = u.device + dtype = u.dtype + + # Try to use CUDA-optimized kernels if available + if HAS_CUDA_OPS and u.is_cuda and ssm_gamma_forward is not None: + try: + output, h = ssm_gamma_forward(u, self.A, self.B, self.C, self.delta_t) + + # Apply mask if provided + if mask is not None: + mask_expanded = mask.unsqueeze(-1).float() # (batch, seq_len, 1) + output = output * mask_expanded + h = h * mask[:, -1].float().unsqueeze(-1) # Zero final state if last token masked + + return output, h + except Exception as e: + # Fall back to PyTorch if CUDA fails + print(f"Warning: CUDA forward failed ({e}), falling back to PyTorch") + + # PyTorch CPU fallback implementation + # Initialize hidden state + if state is None: + h = torch.zeros(batch, self.hidden_dim, device=device, dtype=dtype) + else: + h = state.to(dtype=dtype) + + + # Collect outputs across sequence + outputs = [] + + # Step through each timestep + for t in range(seq_len): + u_t = u[:, t, :] # (batch, state_dim) + y_t, h = self.step(u_t, h) # y_t: (batch, state_dim), h: (batch, hidden_dim) + + # Apply mask if provided + if mask is not None: + mask_t = mask[:, t].unsqueeze(-1).float() # (batch, 1) + y_t = y_t * mask_t + h = h * mask_t + + outputs.append(y_t) + + # Stack outputs: (batch, seq_len, state_dim) + output = torch.stack(outputs, dim=1) + + return output, h + + def step(self, u: torch.Tensor, h: torch.Tensor) -> Tuple[torch.Tensor, torch.Tensor]: + """ + Single step SSM inference (RNN style) with time discretization. + + Euler discretization: h[k+1] = h[k] + delta_t * (A @ h[k] + B @ u[k]) + Output: y[k] = C @ h[k] + + Args: + u: Input (batch, state_dim) + h: Hidden state (batch, hidden_dim) + + Returns: + y: Output (batch, state_dim) + h_new: New hidden state (batch, hidden_dim) + """ + # Apply Euler discretization + # h_new = h + delta_t * (A @ h + B @ u) + A = self.A.to(device=u.device, dtype=u.dtype) + B = self.B.to(device=u.device, dtype=u.dtype) + C = self.C.to(device=u.device, dtype=u.dtype) + A_h = torch.matmul(h, A.T) # (batch, hidden_dim) + B_u = torch.matmul(u, B.T) # (batch, hidden_dim) + h_new = h + self.delta_t * (A_h + B_u) + + # Compute output: y = C @ h_new + y = torch.matmul(h_new, C.T) # (batch, state_dim) + + return y, h_new + + def init_state(self, batch_size: int, device: torch.device, dtype: torch.dtype = None) -> torch.Tensor: + """Initialize hidden state to zeros.""" + if dtype is None: + dtype = torch.float32 + return torch.zeros(batch_size, self.hidden_dim, device=device, dtype=dtype) + + def allocate_inference_cache( + self, + batch_size: int, + seq_len: int, + device: torch.device, + dtype: torch.dtype = None, + ): + """Pre-allocate memory for batched inference (for future optimization).""" + if dtype is None: + dtype = torch.float32 + # Placeholder for future cache optimization + # Could store a rolling window of states for efficient inference + return None diff --git a/code/Taotern_SSM/gamma_space_model/modules/ssm_gamma_s4.py b/code/Taotern_SSM/gamma_space_model/modules/ssm_gamma_s4.py new file mode 100644 index 0000000000000000000000000000000000000000..c75c519eb024c548e606a8caaadbcffbd6135953 --- /dev/null +++ b/code/Taotern_SSM/gamma_space_model/modules/ssm_gamma_s4.py @@ -0,0 +1,423 @@ +"""S4-inspired Gamma SSM with stable discretization and learned timescales.""" + +from __future__ import annotations + +from typing import Dict, Optional, Tuple + +import torch +import torch.nn as nn +import torch.nn.functional as F + + +class SSMGammaS4(nn.Module): + """ + Gamma SSM variant that preserves the fixed ternary-friendly gamma transition + while borrowing several stability ideas from S4: + + - learned positive timestep `dt` + - bilinear or ZOH discretization + - direct skip term `D` + - stateful recurrent stepping with reusable discretized matrices + + The continuous-time transition matrix A is fixed to the lower-bidiagonal + gamma structure: + + A[n, n] = -1 + A[n, n-1] = 1 + + This keeps inference deployment compatible with hardware that benefits from + sparse ternary transition structure. + """ + + def __init__( + self, + state_dim: int, + hidden_dim: int, + dt_min: float = 1e-3, + dt_max: float = 1e-1, + dt_init: float = 1e-2, + discretization: str = "bilinear", + learn_dt: bool = True, + use_D: bool = True, + kernel_mode: str = "auto", + kernel_threshold: int = 64, + ) -> None: + super().__init__() + if discretization not in {"bilinear", "zoh", "euler"}: + raise ValueError( + f"Unsupported discretization '{discretization}'. " + "Expected one of {'bilinear', 'zoh', 'euler'}." + ) + if kernel_mode not in {"auto", "recurrent", "conv"}: + raise ValueError( + f"Unsupported kernel_mode '{kernel_mode}'. " + "Expected one of {'auto', 'recurrent', 'conv'}." + ) + if not (0.0 < dt_min <= dt_init <= dt_max): + raise ValueError("Expected 0 < dt_min <= dt_init <= dt_max.") + + self.state_dim = state_dim + self.hidden_dim = hidden_dim + self.dt_min = dt_min + self.dt_max = dt_max + self.discretization = discretization + self.learn_dt = learn_dt + self.use_D = use_D + self.kernel_mode = kernel_mode + self.kernel_threshold = kernel_threshold + + A = torch.zeros(hidden_dim, hidden_dim, dtype=torch.float32) + indices = torch.arange(hidden_dim) + A[indices, indices] = -1.0 + if hidden_dim > 1: + A[indices[1:], indices[:-1]] = 1.0 + self.register_buffer("A", A) + self.register_buffer("I", torch.eye(hidden_dim, dtype=torch.float32)) + + scale = hidden_dim ** -0.5 + self.B = nn.Parameter(torch.randn(hidden_dim, state_dim) * scale) + self.C = nn.Parameter(torch.randn(state_dim, hidden_dim) * scale) + if use_D: + self.D = nn.Parameter(torch.ones(state_dim)) + else: + self.register_buffer("D", torch.zeros(state_dim, dtype=torch.float32)) + + dt_init_tensor = torch.tensor(float(dt_init), dtype=torch.float32) + inv_softplus_dt = torch.log(torch.expm1(dt_init_tensor)) + if learn_dt: + self.log_dt = nn.Parameter(inv_softplus_dt) + else: + self.register_buffer("log_dt", inv_softplus_dt) + + self._kernel_cache: Dict[Tuple[object, ...], torch.Tensor] = {} + + def clear_kernel_cache(self) -> None: + """Drop cached convolution kernels used by eval/no-grad full forwards.""" + + self._kernel_cache.clear() + + def _kernel_cache_key( + self, + seq_len: int, + rate: float, + dtype: torch.dtype, + device: torch.device, + ) -> Tuple[object, ...]: + return ( + seq_len, + float(rate), + dtype, + device.type, + device.index, + self.discretization, + self.B._version, + self.C._version, + self.D._version, + self.log_dt._version, + ) + + def _get_dt(self, rate: float = 1.0, dtype: Optional[torch.dtype] = None) -> torch.Tensor: + dt = F.softplus(self.log_dt) + dt = torch.clamp(dt, min=self.dt_min, max=self.dt_max) * rate + if dtype is not None: + dt = dt.to(dtype=dtype) + return dt + + def _discretize(self, rate: float = 1.0, dtype: Optional[torch.dtype] = None) -> Tuple[torch.Tensor, torch.Tensor]: + target_dtype = dtype or self.B.dtype + A = self.A.to(dtype=target_dtype) + I = self.I.to(dtype=target_dtype) + B = self.B.to(dtype=target_dtype) + dt = self._get_dt(rate=rate, dtype=target_dtype) + + if self.discretization == "euler": + dA = I + dt * A + dB = dt * B + elif self.discretization == "bilinear": + backward = I - 0.5 * dt * A + forward = I + 0.5 * dt * A + dA = torch.linalg.solve(backward, forward) + dB = torch.linalg.solve(backward, dt * B) + else: + dA = torch.matrix_exp(dt * A) + dB = torch.linalg.solve(A, (dA - I) @ B) + + return dA, dB + + def export_inference_matrices(self, rate: float = 1.0) -> Dict[str, torch.Tensor]: + """ + Return the discretized matrices used during inference. This is helpful for + deployment flows that want to serialize the learned model into a separate + runtime or hardware-specific executor. + """ + + dA, dB = self._discretize(rate=rate, dtype=self.B.dtype) + return { + "A_continuous": self.A.detach().clone(), + "dA": dA.detach().clone(), + "dB": dB.detach().clone(), + "C": self.C.detach().clone(), + "D": self.D.detach().clone(), + "dt": self._get_dt(rate=rate, dtype=self.B.dtype).detach().clone(), + } + + def _compute_kernel( + self, + seq_len: int, + rate: float = 1.0, + dtype: Optional[torch.dtype] = None, + device: Optional[torch.device] = None, + use_cache: bool = False, + ) -> torch.Tensor: + """Compute the causal convolution kernel of shape (D_out, D_in, L).""" + + target_dtype = dtype or self.B.dtype + target_device = device or self.B.device + cache_key = self._kernel_cache_key(seq_len, rate, target_dtype, target_device) + if use_cache and cache_key in self._kernel_cache: + return self._kernel_cache[cache_key] + + dA, dB = self._discretize(rate=rate, dtype=dtype) + dA = dA.to(device=target_device, dtype=target_dtype) + dB = dB.to(device=target_device, dtype=target_dtype) + C = self.C.to(dtype=dA.dtype) + C = C.to(device=target_device, dtype=target_dtype) + + state = dB + kernel_terms = [] + for _ in range(seq_len): + kernel_terms.append(torch.matmul(C, state)) + state = torch.matmul(dA, state) + kernel = torch.stack(kernel_terms, dim=-1) + if use_cache: + self._kernel_cache[cache_key] = kernel.detach() + return kernel + + def _apply_dA_to_state( + self, + h: torch.Tensor, + rate: float = 1.0, + dtype: Optional[torch.dtype] = None, + cache: Optional[Dict[str, torch.Tensor]] = None, + ) -> torch.Tensor: + method = None if cache is None else cache.get("structured_method") + if method == "euler": + dt = cache["dt"] + shifted = torch.cat([torch.zeros_like(h[..., :1]), h[..., :-1]], dim=-1) + return (1.0 - dt) * h + dt * shifted + if method == "bilinear": + if "forward_matrix" in cache and "backward_matrix" in cache: + rhs = torch.matmul(h, cache["forward_matrix"].transpose(0, 1)) + solved = torch.linalg.solve_triangular( + cache["backward_matrix"], + rhs.transpose(0, 1), + upper=False, + ) + return solved.transpose(0, 1) + a = cache["a"] + b = cache["b"] + c = cache["c"] + rhs0 = (c * h)[..., :1] + rhs_rest = (c * h)[..., 1:] + a * h[..., :-1] + rhs = torch.cat([rhs0, rhs_rest], dim=-1) + outputs = [rhs[..., :1] / b] + for i in range(1, rhs.size(-1)): + next_col = (rhs[..., i : i + 1] + a * outputs[-1]) / b + outputs.append(next_col) + return torch.cat(outputs, dim=-1) + + dA, _ = self._discretize(rate=rate, dtype=dtype or h.dtype) + return torch.matmul(h, dA.transpose(0, 1)) + + def _apply_dA_to_matrix( + self, + matrix: torch.Tensor, + rate: float = 1.0, + dtype: Optional[torch.dtype] = None, + ) -> torch.Tensor: + if self.discretization == "euler": + dt = self._get_dt(rate=rate, dtype=dtype or matrix.dtype).to(device=matrix.device, dtype=matrix.dtype) + shifted = torch.cat([torch.zeros_like(matrix[:1]), matrix[:-1]], dim=0) + return (1.0 - dt) * matrix + dt * shifted + if self.discretization == "bilinear": + dt = self._get_dt(rate=rate, dtype=dtype or matrix.dtype).to(device=matrix.device, dtype=matrix.dtype) + a = 0.5 * dt + b = 1.0 + a + c = 1.0 - a + rhs0 = (c * matrix)[:1] + rhs_rest = (c * matrix)[1:] + a * matrix[:-1] + rhs = torch.cat([rhs0, rhs_rest], dim=0) + outputs = [rhs[:1] / b] + for i in range(1, rhs.size(0)): + next_row = (rhs[i : i + 1] + a * outputs[-1]) / b + outputs.append(next_row) + return torch.cat(outputs, dim=0) + + dA, _ = self._discretize(rate=rate, dtype=dtype or matrix.dtype) + return torch.matmul(dA, matrix) + + def _forward_convolutional( + self, + u: torch.Tensor, + rate: float = 1.0, + return_state: bool = True, + ) -> Tuple[torch.Tensor, Optional[torch.Tensor]]: + batch, seq_len, state_dim = u.shape + original_dtype = u.dtype + fft_dtype = torch.float32 if u.dtype in {torch.float16, torch.bfloat16} else u.dtype + use_kernel_cache = not self.training and not torch.is_grad_enabled() + with torch.autocast(device_type=u.device.type, enabled=False): + kernel = self._compute_kernel( + seq_len=seq_len, + rate=rate, + dtype=fft_dtype, + device=u.device, + use_cache=use_kernel_cache, + ).to(dtype=fft_dtype) + D = self.D.to(device=u.device, dtype=fft_dtype) + + u_channels = u.transpose(1, 2).to(dtype=fft_dtype) + fft_len = 1 << max(1, (2 * seq_len - 1).bit_length()) + kernel_f = torch.fft.rfft(kernel, n=fft_len) + u_f = torch.fft.rfft(u_channels, n=fft_len) + y_f = torch.einsum("bif,oif->bof", u_f, kernel_f) + y = torch.fft.irfft(y_f, n=fft_len)[..., :seq_len] + y = y + u_channels * D.view(1, state_dim, 1) + y = y.transpose(1, 2).to(dtype=original_dtype) + + if not return_state: + return y, None + + dA, dB = self._discretize(rate=rate, dtype=u.dtype) + dA_T = dA.transpose(0, 1).contiguous() + dB_T = dB.transpose(0, 1).contiguous() + h = self.init_state(batch, u.device, u.dtype) + for t in range(seq_len): + h = torch.matmul(h, dA_T) + torch.matmul(u[:, t, :], dB_T) + return y, h + + def init_state( + self, + batch_size: int, + device: torch.device, + dtype: Optional[torch.dtype] = None, + ) -> torch.Tensor: + if dtype is None: + dtype = self.B.dtype + return torch.zeros(batch_size, self.hidden_dim, device=device, dtype=dtype) + + def allocate_inference_cache( + self, + batch_size: int, + seq_len: int, + device: torch.device, + dtype: Optional[torch.dtype] = None, + rate: float = 1.0, + ) -> Dict[str, torch.Tensor]: + del batch_size, seq_len + if dtype is None: + dtype = self.B.dtype + dA, dB = self._discretize(rate=rate, dtype=dtype) + cache = { + "dA": dA.to(device=device), + "dB": dB.to(device=device), + "C": self.C.to(device=device, dtype=dtype), + "D": self.D.to(device=device, dtype=dtype), + } + cache["dB_T"] = cache["dB"].transpose(0, 1).contiguous() + cache["C_T"] = cache["C"].transpose(0, 1).contiguous() + if self.discretization == "euler": + dt = self._get_dt(rate=rate, dtype=dtype).to(device=device, dtype=dtype) + cache["structured_method"] = "euler" + cache["dt"] = dt + elif self.discretization == "bilinear": + dt = self._get_dt(rate=rate, dtype=dtype).to(device=device, dtype=dtype) + A = self.A.to(device=device, dtype=dtype) + I = self.I.to(device=device, dtype=dtype) + cache["forward_matrix"] = I + 0.5 * dt * A + cache["backward_matrix"] = I - 0.5 * dt * A + cache["structured_method"] = "bilinear" + cache["a"] = 0.5 * dt + cache["b"] = 1.0 + 0.5 * dt + cache["c"] = 1.0 - 0.5 * dt + return cache + + def _step_with_matrices( + self, + u: torch.Tensor, + h: torch.Tensor, + dA_T: torch.Tensor, + dB_T: torch.Tensor, + C_T: torch.Tensor, + D: torch.Tensor, + ) -> Tuple[torch.Tensor, torch.Tensor]: + h_new = torch.matmul(h, dA_T) + torch.matmul(u, dB_T) + y = torch.matmul(h_new, C_T) + u * D + return y, h_new + + def step( + self, + u: torch.Tensor, + h: torch.Tensor, + rate: float = 1.0, + cache: Optional[Dict[str, torch.Tensor]] = None, + ) -> Tuple[torch.Tensor, torch.Tensor]: + if cache is None: + dB = self._discretize(rate=rate, dtype=u.dtype)[1] + C = self.C.to(device=u.device, dtype=u.dtype) + D = self.D.to(device=u.device, dtype=u.dtype) + h_next = self._apply_dA_to_state(h, rate=rate, dtype=u.dtype) + dB_T = dB.transpose(0, 1).contiguous() + C_T = C.transpose(0, 1).contiguous() + else: + D = cache["D"] + h_next = self._apply_dA_to_state(h, cache=cache) + dB_T = cache.get("dB_T") + C_T = cache.get("C_T") + if dB_T is None: + dB_T = cache["dB"].transpose(0, 1).contiguous() + if C_T is None: + C_T = cache["C"].transpose(0, 1).contiguous() + h_new = h_next + torch.matmul(u, dB_T) + y = torch.matmul(h_new, C_T) + u * D + return y, h_new + + def forward( + self, + u: torch.Tensor, + mask: Optional[torch.Tensor] = None, + state: Optional[torch.Tensor] = None, + rate: float = 1.0, + return_state: bool = True, + ) -> Tuple[torch.Tensor, Optional[torch.Tensor]]: + if state is None and mask is None: + use_conv = self.kernel_mode == "conv" or ( + self.kernel_mode == "auto" and u.size(1) >= self.kernel_threshold + ) + if use_conv: + return self._forward_convolutional(u, rate=rate, return_state=return_state) + + batch, seq_len, _ = u.shape + if state is None: + h = self.init_state(batch, u.device, u.dtype) + else: + h = state.to(device=u.device, dtype=u.dtype) + + dA, dB = self._discretize(rate=rate, dtype=u.dtype) + C = self.C.to(device=u.device, dtype=u.dtype) + D = self.D.to(device=u.device, dtype=u.dtype) + dA_T = dA.transpose(0, 1).contiguous() + dB_T = dB.transpose(0, 1).contiguous() + C_T = C.transpose(0, 1).contiguous() + + outputs = [] + for t in range(seq_len): + y_t, h = self._step_with_matrices(u[:, t, :], h, dA_T, dB_T, C_T, D) + if mask is not None: + mask_t = mask[:, t].unsqueeze(-1).to(dtype=u.dtype) + y_t = y_t * mask_t + h = h * mask_t + outputs.append(y_t) + + final_state = h if return_state else None + return torch.stack(outputs, dim=1), final_state diff --git a/code/Taotern_SSM/gamma_space_model/ops/__init__.py b/code/Taotern_SSM/gamma_space_model/ops/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..7c27f54915f3b89109af1562d3a62f6ba83ec0c4 --- /dev/null +++ b/code/Taotern_SSM/gamma_space_model/ops/__init__.py @@ -0,0 +1,17 @@ +"""TileLang-accelerated operations for SSM.""" + +from .selective_scan_interface import ( + ssm_gamma_forward, + selective_scan_fwd, + selective_scan_bwd, + HAS_TILELANG_OPS, + TILELANG_BACKEND, +) + +__all__ = [ + "ssm_gamma_forward", + "selective_scan_fwd", + "selective_scan_bwd", + "HAS_TILELANG_OPS", + "TILELANG_BACKEND", +] diff --git a/code/Taotern_SSM/gamma_space_model/ops/selective_scan_interface.py b/code/Taotern_SSM/gamma_space_model/ops/selective_scan_interface.py new file mode 100644 index 0000000000000000000000000000000000000000..8e10ecb73691792fd0746325bfa12877a999aebc --- /dev/null +++ b/code/Taotern_SSM/gamma_space_model/ops/selective_scan_interface.py @@ -0,0 +1,325 @@ +""" +Selective Scan Operations Interface with TileLang Acceleration. + +Provides unified interface for TileLang-accelerated SSM operations with automatic +fallback to pure PyTorch CPU implementation. + +Features: + - TileLang-accelerated parallel scan for efficient GPU utilization + - Automatic GPU/CPU dispatch + - Autograd support via custom backward pass + - Memory-efficient implementation + - Support for fp32, fp16, and bf16 +""" + +import torch +import torch.nn.functional as F +from typing import Optional, Tuple +import sys +from pathlib import Path + +# Import TileLang accelerated operations +try: + from csrc.tilelang import ( + HAS_TILELANG_ACCELERATION, + TILELANG_BACKEND, + ssm_gamma_forward_tilelang, + ) + HAS_TILELANG_OPS = HAS_TILELANG_ACCELERATION +except ImportError: + try: + # Alternative import path + import sys + sys.path.insert(0, str(Path(__file__).parent.parent.parent / 'csrc')) + from tilelang import ( + HAS_TILELANG_ACCELERATION, + TILELANG_BACKEND, + ssm_gamma_forward_tilelang, + ) + HAS_TILELANG_OPS = HAS_TILELANG_ACCELERATION + except ImportError: + HAS_TILELANG_OPS = False + TILELANG_BACKEND = "unavailable" + ssm_gamma_forward_tilelang = None + + +class SSMGammaFunction(torch.autograd.Function): + """ + Custom autograd function for SSM gamma forward/backward. + + Uses TileLang kernels if available, falls back to PyTorch operations. + """ + + @staticmethod + def forward(ctx, u, A, B, C, delta_t): + """ + Forward pass. + + Args: + u: Input (batch, seq_len, state_dim) + A: State matrix (hidden_dim, hidden_dim) + B: Input matrix (hidden_dim, state_dim) + C: Output matrix (state_dim, hidden_dim) + delta_t: Discretization step + + Returns: + output: (batch, seq_len, state_dim) + h_final: (batch, hidden_dim) + """ + + if HAS_TILELANG_OPS and u.is_cuda: + # Use TileLang-accelerated kernels + y, h_final = ssm_gamma_forward_tilelang( + u.contiguous(), A.contiguous(), B.contiguous(), C.contiguous(), delta_t + ) + else: + # Fallback to PyTorch implementation + y, h_final = _ssm_gamma_forward_pytorch(u, A, B, C, delta_t) + + ctx.save_for_backward(u, A, B, C, y, h_final) + ctx.delta_t = delta_t + + return y, h_final + + @staticmethod + def backward(ctx, grad_y, grad_h_final): + """Backward pass with gradient computation.""" + + u, A, B, C, y, h_final = ctx.saved_tensors + delta_t = ctx.delta_t + + # Compute hidden state history from forward pass + h_history = _compute_state_history(u, A, B, C, delta_t) + + if HAS_TILELANG_OPS and grad_y.is_cuda: + # Use TileLang kernels for backward + # For now, use the unified backward from tilelang + grad_u, grad_A, grad_B, grad_C, grad_h_init = _ssm_gamma_backward_pytorch( + grad_y, u, h_history, A, B, C, delta_t + ) + else: + # Fallback to PyTorch backward + grad_u, grad_A, grad_B, grad_C, grad_h_init = _ssm_gamma_backward_pytorch( + grad_y, u, h_history, A, B, C, delta_t + ) + + return grad_u, grad_A, grad_B, grad_C, None + + +def ssm_gamma_forward( + u: torch.Tensor, + A: torch.Tensor, + B: torch.Tensor, + C: torch.Tensor, + delta_t: float = 0.1, +) -> Tuple[torch.Tensor, torch.Tensor]: + """ + SSM Gamma forward pass using parallel scan optimization. + + Implements: h[t+1] = h[t] + dt * (A @ h[t] + B @ u[t]), y[t] = C @ h[t] + + Args: + u: Input tensor (batch, seq_len, state_dim) + A: State matrix (hidden_dim, hidden_dim) - tridiagonal HiPPO-Gamma + B: Input matrix (hidden_dim, state_dim) + C: Output matrix (state_dim, hidden_dim) + delta_t: Time discretization step + + Returns: + output: (batch, seq_len, state_dim) + final_state: (batch, hidden_dim) + + Example: + >>> u = torch.randn(2, 32, 64) # batch=2, seq=32, state_dim=64 + >>> A = torch.eye(128) # 128-dim hidden state + >>> B = torch.randn(128, 64) + >>> C = torch.randn(64, 128) + >>> y, h = ssm_gamma_forward(u, A, B, C, delta_t=0.1) + >>> y.shape + torch.Size([2, 32, 64]) + """ + + # Always use custom function for autograd support + return SSMGammaFunction.apply(u, A, B, C, delta_t) + + +def _ssm_gamma_forward_pytorch( + u: torch.Tensor, + A: torch.Tensor, + B: torch.Tensor, + C: torch.Tensor, + delta_t: float, +) -> Tuple[torch.Tensor, torch.Tensor]: + """Pure PyTorch implementation of SSM forward pass.""" + + batch_size, seq_len, state_dim = u.shape + hidden_dim = A.shape[0] + + device = u.device + dtype = u.dtype + + # Initialize hidden state + h = torch.zeros(batch_size, hidden_dim, device=device, dtype=dtype) + outputs = [] + + # Process sequence + for t in range(seq_len): + u_t = u[:, t, :] # (batch, state_dim) + + # State update: h_new = h + delta_t * (A @ h + B @ u) + A_h = torch.matmul(h, A.T) # (batch, hidden_dim) + B_u = torch.matmul(u_t, B.T) # (batch, hidden_dim) + h_new = h + delta_t * (A_h + B_u) + + # Output: y = C @ h_new + y_t = torch.matmul(h_new, C.T) # (batch, state_dim) + + outputs.append(y_t) + h = h_new + + y = torch.stack(outputs, dim=1) # (batch, seq_len, state_dim) + + return y, h + + +def _compute_state_history( + u: torch.Tensor, + A: torch.Tensor, + B: torch.Tensor, + C: torch.Tensor, + delta_t: float, +) -> torch.Tensor: + """Compute full state history for backward pass.""" + + batch_size, seq_len, state_dim = u.shape + hidden_dim = A.shape[0] + device = u.device + compute_dtype = torch.promote_types(u.dtype, A.dtype) + + u_compute = u.to(dtype=compute_dtype) + A_compute = A.to(device=device, dtype=compute_dtype) + B_compute = B.to(device=device, dtype=compute_dtype) + + h_history = torch.zeros(batch_size, seq_len, hidden_dim, device=device, dtype=compute_dtype) + h = torch.zeros(batch_size, hidden_dim, device=device, dtype=compute_dtype) + + for t in range(seq_len): + u_t = u_compute[:, t, :] + A_h = torch.matmul(h, A_compute.T) + B_u = torch.matmul(u_t, B_compute.T) + h = h + delta_t * (A_h + B_u) + h_history[:, t, :] = h + + return h_history + + +def _ssm_gamma_backward_pytorch( + grad_y: torch.Tensor, + u: torch.Tensor, + h_history: torch.Tensor, + A: torch.Tensor, + B: torch.Tensor, + C: torch.Tensor, + delta_t: float, +): + """Pure PyTorch implementation of backward pass.""" + + batch_size, seq_len, state_dim = grad_y.shape + hidden_dim = A.shape[0] + device = grad_y.device + compute_dtype = torch.promote_types( + torch.promote_types(grad_y.dtype, A.dtype), + torch.promote_types(B.dtype, C.dtype), + ) + + grad_y_compute = grad_y.to(dtype=compute_dtype) + u_compute = u.to(device=device, dtype=compute_dtype) + h_history_compute = h_history.to(device=device, dtype=compute_dtype) + A_compute = A.to(device=device, dtype=compute_dtype) + B_compute = B.to(device=device, dtype=compute_dtype) + C_compute = C.to(device=device, dtype=compute_dtype) + + grad_u = torch.zeros_like(u_compute) + grad_A = torch.zeros_like(A_compute) + grad_B = torch.zeros_like(B_compute) + grad_C = torch.zeros_like(C_compute) + grad_h = torch.zeros(batch_size, hidden_dim, device=device, dtype=compute_dtype) + identity = torch.eye(hidden_dim, device=device, dtype=compute_dtype) + + # Backward pass through time + for t in range(seq_len - 1, -1, -1): + # Gradient from output + grad_h_from_y = torch.matmul(grad_y_compute[:, t, :], C_compute) # (batch, hidden_dim) + grad_h = grad_h + grad_h_from_y + + # Gradient w.r.t. C + h_t = h_history_compute[:, t, :] + grad_C.add_(torch.matmul(grad_y_compute[:, t, :].T, h_t) / batch_size) + + # Gradient w.r.t. B + u_t = u_compute[:, t, :] + grad_B.add_(delta_t * torch.matmul(grad_h.T, u_t) / batch_size) + + # Gradient w.r.t. input + grad_u[:, t, :] = torch.matmul(grad_h, B_compute) + + # Gradient w.r.t. A + prev_h = h_history_compute[:, t, :] if t > 0 else torch.zeros_like(h_history_compute[:, 0, :]) + grad_A.add_(delta_t * torch.matmul(grad_h.T, prev_h) / batch_size) + + # Propagate gradient backward through state transition + if t > 0: + grad_h = torch.matmul(grad_h, A_compute.T + identity) + + grad_h_init = grad_h.to(dtype=u.dtype) + + return ( + grad_u.to(dtype=u.dtype), + grad_A.to(dtype=A.dtype), + grad_B.to(dtype=B.dtype), + grad_C.to(dtype=C.dtype), + grad_h_init, + ) + + +def selective_scan_fwd( + u: torch.Tensor, + delta: torch.Tensor, + A: torch.Tensor, + B: torch.Tensor, + C: torch.Tensor, + D: Optional[torch.Tensor] = None, + return_last_state: bool = False, +) -> Tuple[torch.Tensor, Optional[torch.Tensor]]: + """ + Selective scan forward pass (Mamba-style). + + Extended interface for more complex SSM variants. + Currently falls back to SSM gamma for compatibility. + + Args: + u: Input (batch, seq_len, d_model) + delta: Time step (scalar or per-timestep) + A: State transition matrix + B: Input matrix + C: Output matrix + D: Direct term (optional) + return_last_state: Whether to return final state + + Returns: + output: (batch, seq_len, d_model) + last_state: Final state if requested + """ + + # Simplified version - redirect to SSM gamma + output, last_state = ssm_gamma_forward(u, A, B, C, delta_t=delta if isinstance(delta, (int, float)) else delta.item()) + + if return_last_state: + return output, last_state + else: + return output, None + + +def selective_scan_bwd(): + """Backward pass placeholder for extensibility.""" + pass diff --git a/code/Taotern_SSM/pyproject.toml b/code/Taotern_SSM/pyproject.toml new file mode 100644 index 0000000000000000000000000000000000000000..9f89887ab60b894fce8014fbe117bce328c4396a --- /dev/null +++ b/code/Taotern_SSM/pyproject.toml @@ -0,0 +1,92 @@ +[build-system] +requires = ["setuptools>=61.0", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "gamma-ssm-s4-enhanced" +version = "0.1.0" +description = "Gamma-structured SSM blocks with S4-inspired stability and full-sequence paths" +readme = "README.md" +requires-python = ">=3.8" +license = {text = "MIT"} +authors = [ + {name = "StarMists"} +] +keywords = ["ssm", "state-space-models", "s4", "hippo", "mamba", "sequence-modeling", "gamma-ssm"] +classifiers = [ + "Development Status :: 3 - Alpha", + "Intended Audience :: Developers", + "Intended Audience :: Science/Research", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Topic :: Scientific/Engineering :: Artificial Intelligence", +] + +dependencies = [ + "torch>=1.12.0", + "numpy>=1.20.0", +] + +# Optional performance optimizations +[project.optional-dependencies] +dev = [ + "pytest>=7.0", + "pytest-cov", + "build", + "wheel", + "black", + "isort", + "flake8", + "mypy", +] +notebook = [ + "matplotlib>=3.6", + "pandas>=1.5", + "seaborn>=0.12", + "jupyter>=1.0", + "torchvision>=0.13", +] +performance = [ + "triton>=2.0.0;platform_system!='Windows'", +] + +[project.urls] +Homepage = "https://github.com/StarMists/gamma_SSM_S4_enhanced" +Documentation = "https://github.com/StarMists/gamma_SSM_S4_enhanced#readme" +Repository = "https://github.com/StarMists/gamma_SSM_S4_enhanced.git" +Issues = "https://github.com/StarMists/gamma_SSM_S4_enhanced/issues" + +[tool.setuptools] +include-package-data = true + +[tool.setuptools.packages.find] +include = ["gamma_space_model*", "csrc*"] +exclude = [ + "benchmarks*", + "examples*", + "output*", + "scripts*", + "tests*", +] + +[tool.pytest.ini_options] +testpaths = ["tests"] + +[tool.black] +line-length = 100 +target-version = ['py38', 'py39', 'py310', 'py311'] + +[tool.isort] +profile = "black" +line_length = 100 + +[tool.mypy] +python_version = "3.8" +warn_return_any = true +warn_unused_configs = true +disallow_untyped_defs = false diff --git a/code/Taotern_SSM/setup.py b/code/Taotern_SSM/setup.py new file mode 100644 index 0000000000000000000000000000000000000000..b071e2f32f01b8c012f72925fd8ef0906ac482b2 --- /dev/null +++ b/code/Taotern_SSM/setup.py @@ -0,0 +1,10 @@ +"""Compatibility shim for editable installs. + +Package metadata lives in pyproject.toml. +""" + +from setuptools import setup + + +setup() + diff --git a/tokenizer/tokenizer.vocab b/tokenizer/tokenizer.vocab new file mode 100644 index 0000000000000000000000000000000000000000..33b14693f06e45a9b8ff80ba9d0ab4e50c061923 --- /dev/null +++ b/tokenizer/tokenizer.vocab @@ -0,0 +1,8192 @@ + 0 + 0 + 0 + 0 +. -3.34988 +, -3.37223 +▁the -3.37925 +s -3.39153 +▁ -3.68669 +▁of -3.86169 +▁and -3.99532 +▁to -4.0444 +▁a -4.23553 +▁in -4.35256 +▁is -4.72116 +0 -4.73254 +1 -4.90045 +- -4.98974 +▁that -4.9946 +ing -5.0559 +▁for -5.11228 +2 -5.16662 +▁are -5.28307 +▁The -5.3063 +▁or -5.37684 +ed -5.40309 +' -5.43172 +▁with -5.45801 +▁be -5.47323 +▁( -5.5159 +▁- -5.54346 +▁on -5.55984 +: -5.63799 +▁as -5.65911 +d -5.66836 +▁you -5.67271 +t -5.67643 +▁it -5.72136 +▁can -5.75428 +▁by -5.77196 +▁from -5.79648 +▁have -5.80757 +) -5.82196 +▁your -5.85232 +9 -5.90859 +3 -5.91741 +5 -5.93227 +▁at -5.94703 +▁an -5.97861 +ly -6.08203 +▁not -6.09476 +4 -6.11975 +y -6.13221 +▁A -6.13885 +▁" -6.14968 +al -6.15782 +e -6.16114 +▁more -6.18544 +▁this -6.20856 +er -6.21403 +8 -6.23215 +▁will -6.23882 +’ -6.261 +▁may -6.26724 +6 -6.28226 +▁was -6.28664 +▁their -6.3731 +7 -6.38682 +▁has -6.38773 +n -6.42188 +▁they -6.44369 +▁In -6.45102 +▁which -6.48871 +re -6.51674 +▁about -6.52394 +▁also -6.52805 +▁other -6.54652 +▁than -6.54826 +? -6.61673 +▁one -6.61751 +S -6.63356 +▁people -6.63479 +or -6.64832 +▁who -6.65559 +a -6.66634 +es -6.73525 +▁but -6.73554 +in -6.74607 +▁were -6.77793 +▁all -6.78435 +▁This -6.78488 +▁I -6.80223 +▁It -6.81182 +▁said -6.81343 +▁S -6.83419 +o -6.86854 +r -6.869 +▁when -6.86956 +▁we -6.87106 +th -6.89826 +▁if -6.90072 +; -6.93579 +▁been -6.96883 +▁do -6.97684 +▁study -6.9852 +g -6.98629 +▁most -6.98825 +▁C -6.99847 +m -6.99849 +▁time -6.99964 +▁use -7.00507 +▁some -7.01715 +▁these -7.02007 +▁such -7.03529 +▁disease -7.03773 +▁new -7.04658 +▁up -7.05535 +▁If -7.05574 +▁B -7.05612 +/ -7.05855 +▁into -7.06835 +▁out -7.06879 +▁health -7.07292 +" -7.08152 +▁“ -7.08362 +▁so -7.10171 +ic -7.1035 +▁over -7.10738 +c -7.11595 +▁help -7.12094 +A -7.12541 +▁children -7.13812 +▁how -7.15431 +▁blood -7.16812 +▁used -7.17574 +▁risk -7.18174 +en -7.19759 +ation -7.20029 +," -7.20305 +▁there -7.20617 +▁years -7.2073 +D -7.21815 +ion -7.21932 +▁he -7.22383 +i -7.22754 +▁two -7.24198 +▁should -7.25208 +▁them -7.25232 +▁water -7.25755 +▁its -7.25984 +▁many -7.26405 +▁re -7.26563 +▁no -7.26907 +▁cancer -7.27134 +▁first -7.27189 +). -7.28846 +▁any -7.29428 +▁what -7.29634 +M -7.29659 +▁U -7.29661 +le -7.29738 +▁make -7.31037 +▁only -7.31126 +▁found -7.31242 +▁had -7.3149 +▁our -7.32038 +▁F -7.33324 +▁percent -7.33481 +ers -7.33652 +▁E -7.33802 +it -7.36408 +on -7.37621 +▁would -7.38411 +l -7.38677 +▁body -7.38752 +▁D -7.38844 +ar -7.39131 +▁high -7.39984 +▁For -7.40073 +▁need -7.41388 +▁like -7.41557 +▁information -7.42096 +▁year -7.42159 +C -7.42765 +ive -7.42811 +ur -7.43539 +▁P -7.43709 +▁between -7.44219 +▁could -7.44478 +an -7.44886 +▁p -7.46339 +▁get -7.46436 +▁G -7.46648 +▁after -7.47451 +." -7.47977 +▁through -7.48271 +▁because -7.48855 +▁T -7.49052 +▁those -7.49252 +ve -7.49395 +k -7.50056 +▁work -7.50698 +P -7.50742 +b -7.5096 +us -7.51029 +el -7.51662 +▁his -7.51905 +B -7.52172 +▁heart -7.52373 +▁well -7.52776 +ate -7.53971 +f -7.5455 +▁child -7.54607 +▁cause -7.55405 +▁treatment -7.55851 +able -7.5619 +▁women -7.56529 +▁research -7.56533 +▁during -7.566 +▁You -7.56752 +h -7.56915 +% -7.57166 +▁important -7.57229 +▁University -7.57727 +▁food -7.58853 +p -7.59297 +il -7.60303 +▁| -7.60378 +ch -7.60931 +L -7.60975 +▁un -7.61721 +▁M -7.62996 +), -7.63088 +▁system -7.6367 +ll -7.63869 +x -7.64078 +I -7.6429 +▁says -7.65309 +▁include -7.65497 +▁What -7.65644 +ter -7.65671 +▁much -7.66098 +▁symptoms -7.66231 +▁very -7.66621 +▁take -7.67503 +▁even -7.67578 +T -7.67715 +F -7.67743 +▁day -7.6791 +▁de -7.67933 +▁way -7.68477 +▁where -7.69414 +▁H -7.69541 +▁different -7.69617 +▁cells -7.69949 +▁each -7.70346 +ol -7.70465 +▁number -7.71018 +se -7.71996 +im -7.72161 +▁called -7.72273 +▁But -7.72408 +▁just -7.73745 +▁part -7.74091 +▁before -7.74096 +▁N -7.74135 +ent -7.74484 +st -7.74492 +H -7.7469 +▁f -7.74765 +▁To -7.74806 +E -7.74961 +at -7.7497 +▁life -7.76022 +▁often -7.76367 +▁including -7.77919 +▁test -7.78034 +▁see -7.79293 +▁per -7.79352 +u -7.79363 +▁doctor -7.8007 +▁know -7.80466 +▁United -7.81585 +▁They -7.81771 +▁age -7.81935 +▁American -7.82295 +▁long -7.82308 +▁There -7.82928 +▁common -7.82975 +ri -7.83122 +▁researchers -7.8338 +▁less -7.83658 +▁same -7.83913 +to -7.84255 +li -7.84405 +▁three -7.84832 +▁under -7.84872 +▁brain -7.85254 +▁When -7.85798 +▁good -7.8595 +ia -7.86493 +▁care -7.86742 +▁W -7.87416 +ro -7.87697 +▁National -7.87749 +▁world -7.87842 +▁R -7.88332 +▁He -7.88512 +▁data -7.88539 +O -7.8857 +ity -7.88868 +▁energy -7.88922 +▁patients -7.89123 +ment -7.89127 +N -7.89167 +z -7.89497 +▁Re -7.8955 +▁New -7.89687 +▁both -7.89866 +▁levels -7.90072 +|| -7.90193 +▁school -7.90634 +▁using -7.90769 +▁students -7.90801 +▁Dr -7.90932 +▁then -7.91023 +▁her -7.91654 +▁person -7.91811 +la -7.92457 +▁States -7.92459 +▁Health -7.93186 +▁These -7.93284 +▁around -7.93323 +ra -7.93606 +▁K -7.94089 +▁being -7.94207 +as -7.94771 +ma -7.94801 +▁while -7.95156 +▁L -7.9559 +tic -7.95954 +▁likely -7.96149 +um -7.96156 +▁type -7.97123 +▁skin -7.97245 +ta -7.97335 +” -7.97663 +▁does -7.9802 +id -7.98137 +▁million -7.98301 +G -7.98459 +▁change -7.99014 +▁problems -7.99363 +ine -7.99378 +▁known -7.99384 +▁report -7.99427 +est -7.99533 +▁don -7.99757 +is -7.99758 +▁back -7.99762 +lo -8.00015 +▁state -8.00401 +R -8.00538 +et -8.00584 +▁c -8.0063 +▁find -8.00655 +▁– -8.0071 +ne -8.00713 +▁human -8.00773 +age -8.01187 +un -8.0137 +▁small -8.01585 +ies -8.02195 +ig -8.02427 +▁now -8.02598 +▁example -8.02746 +▁medical -8.03066 +▁pain -8.03144 +▁every -8.03747 +ness -8.04063 +ad -8.04147 +co -8.04488 +ce -8.04589 +▁lead -8.04881 +ul -8.0511 +▁-- -8.05316 +▁she -8.05536 +▁— -8.06311 +▁result -8.0708 +▁made -8.0715 +▁might -8.07492 +▁form -8.07724 +▁We -8.07815 +▁O -8.08211 +▁home -8.08896 +▁prevent -8.0942 +▁right -8.0944 +▁end -8.09972 +am -8.10133 +! -8.10183 +op -8.10708 +▁co -8.10721 +▁As -8.10806 +▁last -8.10913 +the -8.11787 +▁increase -8.12476 +▁support -8.12539 +▁down -8.12593 +▁low -8.12818 +U -8.1304 +— -8.13257 +ary -8.13598 +▁usually -8.14183 +▁control -8.14188 +ant -8.14299 +▁group -8.1432 +▁large -8.14379 +▁m -8.14384 +▁develop -8.14453 +▁light -8.14478 +up -8.14554 +v -8.14555 +▁area -8.15006 +▁better -8.15027 +▁st -8.15182 +▁reduce -8.1561 +▁diabetes -8.15757 +ut -8.158 +The -8.15846 +▁diet -8.15993 +▁public -8.16657 +▁How -8.17043 +▁go -8.17533 +▁according -8.17786 +▁still -8.18077 +▁cases -8.18403 +▁must -8.18598 +| -8.18683 +▁So -8.19217 +w -8.19543 +▁development -8.19898 +▁However -8.20303 +▁pressure -8.20457 +ir -8.20593 +ci -8.21545 +ated -8.21789 +W -8.2188 +▁higher -8.22106 +▁infection -8.22249 +▁b -8.22262 +▁family -8.22443 +▁want -8.22532 +▁results -8.22824 +one -8.2289 +▁An -8.23057 +▁Some -8.23065 +▁following -8.2319 +▁early -8.23223 +▁And -8.2343 +ho -8.23527 +▁J -8.2363 +▁Be -8.23787 +▁provide -8.23847 +▁weight -8.24131 +▁among -8.24364 +ting -8.24419 +▁lower -8.24427 +ist -8.24717 +▁con -8.24744 +▁Co -8.24953 +V -8.25335 +▁healthy -8.25463 +ti -8.25555 +▁$ -8.25713 +▁cell -8.25853 +▁without -8.25964 +▁become -8.26274 +▁off -8.26389 +▁studies -8.2669 +▁program -8.26981 +▁non -8.27162 +om -8.27695 +▁available -8.27875 +▁government -8.28 +.” -8.28545 +▁another -8.28633 +▁possible -8.28982 +▁power -8.29009 +▁condition -8.29222 +po -8.29465 +▁within -8.29543 +▁few -8.30148 +,” -8.30221 +▁Center -8.30228 +▁own -8.30242 +▁us -8.30355 +▁process -8.3048 +man -8.30993 +▁too -8.31136 +mo -8.31511 +and -8.32095 +▁say -8.32176 +▁V -8.32381 +ry -8.32786 +▁population -8.32836 +▁best -8.32923 +▁St -8.334 +ac -8.33524 +ip -8.34154 +▁men -8.34286 +ph -8.34329 +▁keep -8.3434 +▁flu -8.34376 +▁several -8.34462 +▁least -8.34712 +ance -8.34814 +te -8.34864 +▁level -8.35202 +▁car -8.35235 +▁Your -8.35735 +▁areas -8.36027 +▁look -8.36144 +▁amount -8.36413 +▁able -8.36487 +▁set -8.3679 +▁place -8.37059 +▁loss -8.37149 +ating -8.3715 +▁pre -8.37256 +ial -8.3745 +ian -8.37562 +▁think -8.37582 +▁times -8.3779 +os -8.38294 +ge -8.38395 +▁De -8.38478 +▁rate -8.38691 +▁species -8.38818 +▁conditions -8.3893 +▁my -8.39867 +▁effects -8.39948 +vi -8.40153 +▁problem -8.40334 +▁days -8.40352 +▁Earth -8.40611 +( -8.40628 +▁factors -8.40919 +▁Do -8.40968 +▁sleep -8.4098 +em -8.41014 +▁exercise -8.41042 +di -8.4143 +▁air -8.41624 +▁physical -8.41653 +ver -8.417 +▁foods -8.41881 +ot -8.41986 +▁increased -8.42136 +▁Institute -8.42677 +▁history -8.42677 +▁types -8.42855 +▁changes -8.42913 +▁caused -8.4308 +▁d -8.43445 +▁against -8.4345 +▁given -8.43607 +▁side -8.43626 +▁published -8.43673 +ty -8.43875 +▁activity -8.43918 +▁did -8.44034 +▁since -8.44448 +▁climate -8.44718 +▁four -8.44874 +▁show -8.44978 +▁Ma -8.45214 +na -8.45304 +▁start -8.45379 +ous -8.45525 +▁e -8.45946 +▁whether -8.46307 +▁average -8.46471 +▁major -8.4682 +▁Medicine -8.46957 +▁countries -8.47417 +▁point -8.47553 +▁scientists -8.47686 +▁means -8.47861 +▁sure -8.47993 +▁fact -8.48196 +▁gas -8.48318 +▁team -8.48727 +be -8.49537 +▁oil -8.49753 +▁dis -8.49757 +ill -8.49763 +▁order -8.4989 +▁eye -8.49935 +▁associated -8.50313 +▁second -8.50371 +▁causes -8.5046 +he -8.50464 +▁country -8.50711 +▁normal -8.5091 +▁me -8.51471 +ton -8.51525 +▁young -8.51779 +▁Department -8.5186 +▁function -8.52046 +▁That -8.52132 +ted -8.52427 +▁death -8.52738 +ally -8.52761 +per -8.53087 +▁name -8.53261 +▁local -8.53329 +tion -8.53377 +ish -8.53379 +▁parents -8.53424 +▁learn -8.53545 +▁months -8.53736 +▁until -8.544 +▁certain -8.54529 +▁products -8.54617 +▁call -8.54646 +▁One -8.54902 +▁social -8.55116 +▁enough -8.55122 +▁come -8.55147 +▁past -8.55196 +▁h -8.55352 +▁here -8.55387 +▁natural -8.55706 +▁land -8.55717 +▁week -8.55818 +ard -8.5607 +▁Con -8.5612 +▁spread -8.56273 +▁five -8.56591 +▁experience -8.56902 +▁Most -8.56966 +▁based -8.57072 +K -8.57095 +▁feel -8.57227 +ru -8.5784 +▁By -8.57865 +▁Research -8.5798 +▁At -8.5803 +▁School -8.58052 +▁especially -8.58594 +▁Other -8.58879 +sh -8.59022 +▁severe -8.5905 +▁developing -8.59105 +▁education -8.59106 +ap -8.59119 +line -8.5914 +ions -8.59203 +▁HIV -8.59244 +son -8.59395 +▁due -8.59453 +▁g -8.59653 +▁baby -8.59678 +▁MD -8.5969 +▁space -8.59756 +me -8.59768 +▁occur -8.59769 +de -8.60103 +▁current -8.60337 +▁short -8.60556 +▁growth -8.60573 +▁adults -8.60594 +▁done -8.60856 +▁treat -8.60897 +min -8.6094 +ang -8.61245 +▁away -8.61253 +▁lot -8.61403 +▁damage -8.61433 +▁protect -8.61456 +ag -8.61568 +ec -8.61739 +▁next -8.61844 +▁create -8.61952 +▁eat -8.62018 +▁size -8.62055 +▁making -8.62084 +ling -8.62244 +▁far -8.62569 +▁project -8.62578 +ure -8.62834 +mon -8.62956 +▁virus -8.62991 +ence -8.63177 +▁range -8.63212 +▁environment -8.63613 +▁read -8.63693 +We -8.63705 +▁source -8.63747 +▁little -8.63795 +▁head -8.63813 +no -8.63818 +▁Bo -8.6405 +▁ex -8.64148 +▁why -8.64461 +less -8.64711 +▁global -8.64719 +▁evidence -8.64918 +▁main -8.64924 +▁All -8.65055 +▁things -8.65077 +▁give -8.65204 +▁fish -8.65415 +▁While -8.6549 +▁role -8.65664 +va -8.65682 +▁specific -8.65848 +end -8.65894 +▁surface -8.6592 +▁play -8.66043 +▁stress -8.66054 +▁today -8.66272 +▁sugar -8.66323 +ized -8.66425 +oc -8.66444 +ide -8.66831 +▁period -8.67111 +▁Medical -8.67465 +▁half -8.67487 +▁plant -8.67592 +▁computer -8.67827 +▁surgery -8.67942 +▁taking -8.68022 +▁serious -8.68227 +▁having -8.68369 +pe -8.68369 +▁avoid -8.68503 +▁check -8.68752 +▁reported -8.68781 +▁impact -8.68961 +▁key -8.69125 +ct -8.69295 +▁case -8.69349 +▁improve -8.69428 +▁tests -8.69579 +▁language -8.6961 +▁effective -8.69945 +▁sub -8.69983 +▁With -8.70209 +▁vaccine -8.70394 +pa -8.70709 +▁drugs -8.70719 +▁breast -8.70871 +ca -8.71137 +▁future -8.71295 +▁World -8.71403 +▁put -8.71446 +▁science -8.71615 +▁course -8.71649 +▁live -8.71696 +▁understand -8.71723 +▁findings -8.71731 +▁hand -8.71802 +ha -8.71821 +▁Many -8.72214 +der -8.72372 +▁& -8.72388 +▁On -8.72749 +▁hours -8.72772 +▁exposure -8.72864 +▁above -8.73081 +▁sun -8.7325 +▁similar -8.73586 +▁free -8.73818 +out -8.73824 +▁May -8.73932 +▁access -8.74014 +ism -8.74039 +▁effect -8.74482 +▁resources -8.74525 +▁left -8.74556 +▁America -8.74647 +▁present -8.7484 +ex -8.75028 +▁across -8.75193 +▁fat -8.75294 +▁getting -8.75295 +▁view -8.75465 +▁red -8.75497 +▁La -8.755 +ology -8.75523 +▁general -8.75555 +▁Science -8.75574 +▁gene -8.75683 +▁eating -8.75743 +ak -8.75936 +▁site -8.76086 +▁needs -8.7618 +ow -8.76203 +▁State -8.76243 +▁addition -8.76289 +▁r -8.76574 +▁going -8.76646 +▁allow -8.76651 +▁Disease -8.76676 +▁diseases -8.76766 +▁drug -8.76836 +▁Ro -8.76868 +▁list -8.76873 +▁black -8.769 +ster -8.77098 +▁contact -8.772 +▁full -8.77288 +▁birth -8.77479 +ical -8.77565 +▁[ -8.77566 +▁affect -8.77584 +▁turn -8.77598 +ward -8.77637 +▁produce -8.77712 +▁needed -8.7775 +ator -8.77877 +▁special -8.77976 +▁recent -8.77992 +▁later -8.78057 +▁activities -8.78333 +▁white -8.78561 +▁After -8.78638 +▁War -8.78651 +▁protein -8.78893 +▁community -8.79023 +▁something -8.79023 +▁pro -8.79323 +▁national -8.79467 +▁hard -8.79548 +Y -8.79565 +▁animals -8.79647 +▁states -8.79685 +▁further -8.80018 +▁genetic -8.80097 +▁anti -8.8031 +und -8.80328 +pt -8.80435 +▁shows -8.80453 +▁More -8.80476 +▁great -8.80488 +▁living -8.80564 +ba -8.80621 +▁significant -8.80816 +ten -8.80817 +▁disorder -8.80948 +▁total -8.80974 +▁six -8.81212 +▁working -8.8127 +▁determine -8.81287 +cl -8.81532 +▁law -8.81541 +pi -8.81603 +▁author -8.81615 +▁older -8.81674 +▁taken -8.81687 +▁already -8.8189 +▁open -8.81913 +▁questions -8.82082 +▁Ra -8.8218 +▁color -8.82255 +▁acid -8.82263 +▁page -8.82263 +▁Americans -8.82265 +▁tell -8.82374 +ach -8.82389 +ative -8.82639 +▁kids -8.82933 +old -8.83199 +▁below -8.83303 +▁run -8.83333 +▁environmental -8.83379 +▁bacteria -8.83415 +▁along -8.83564 +▁di -8.836 +▁X -8.83638 +ning -8.83642 +▁Act -8.8367 +ell -8.8372 +▁value -8.8373 +▁developed -8.83915 +▁heat -8.8403 +▁flow -8.8407 +▁potential -8.84212 +▁either -8.8426 +▁programs -8.84261 +▁compared -8.84276 +▁alcohol -8.84279 +tro -8.84492 +▁Mo -8.84555 +J -8.84593 +▁account -8.84602 +▁temperature -8.8473 +▁always -8.84764 +▁According -8.84845 +▁thought -8.84884 +ize -8.84904 +▁groups -8.84915 +ium -8.8493 +▁provides -8.85017 +▁ability -8.85109 +▁post -8.85283 +▁rates -8.85313 +form -8.85398 +▁related -8.85469 +▁Po -8.85592 +▁address -8.85614 +▁l -8.85643 +▁really -8.85648 +▁infections -8.85691 +▁issue -8.85848 +ite -8.85882 +▁carbon -8.85919 +▁together -8.86151 +▁ways -8.86183 +▁No -8.8622 +▁= -8.86516 +bo -8.86616 +ities -8.86653 +do -8.86837 +▁plan -8.86944 +▁v -8.8696 +▁South -8.87051 +▁cost -8.87075 +▁face -8.87117 +▁benefits -8.87126 +▁longer -8.87216 +▁vitamin -8.87228 +▁bone -8.87965 +▁daily -8.88058 +▁however -8.88095 +str -8.88367 +ile -8.88395 +▁medicine -8.88399 +▁production -8.88434 +▁believe -8.88553 +▁pregnancy -8.88562 +tu -8.88612 +▁quality -8.88632 +▁near -8.88749 +▁others -8.88866 +▁Ch -8.88952 +mer -8.89037 +ack -8.89184 +▁sp -8.8925 +▁line -8.8934 +ven -8.89444 +▁greater -8.8971 +ga -8.89854 +▁clear -8.89859 +ab -8.8996 +go -8.90106 +▁Me -8.90341 +ub -8.90389 +▁NASA -8.90516 +con -8.90619 +rs -8.90629 +▁billion -8.90658 +▁follow -8.90718 +▁move -8.90735 +▁tissue -8.90775 +▁therapy -8.90873 +▁immune -8.90946 +▁US -8.91156 +▁patient -8.91363 +▁California -8.91377 +▁Although -8.91561 +▁online -8.91566 +au -8.91603 +▁Le -8.91718 +▁class -8.91801 +▁considered -8.91828 +ue -8.91863 +ick -8.92187 +▁Al -8.92219 +▁safe -8.92505 +▁North -8.9252 +▁simple -8.92596 +▁services -8.92611 +▁seen -8.92754 +qu -8.92811 +▁response -8.92947 +▁Pa -8.93029 +▁Children -8.93038 +mi -8.93107 +▁grow -8.93128 +▁act -8.93212 +▁Ar -8.93415 +▁actually -8.93463 +king -8.93503 +tor -8.93583 +▁stroke -8.93742 +ger -8.93758 +ful -8.93788 +▁learning -8.93808 +▁Ex -8.93842 +▁real -8.93943 +ome -8.94024 +▁file -8.94195 +▁cold -8.94227 +ose -8.94252 +▁active -8.94412 +tra -8.94561 +land -8.94604 +▁region -8.94722 +▁doesn -8.94899 +▁top -8.95056 +▁shown -8.9517 +▁safety -8.95283 +▁plants -8.95288 +▁She -8.95305 +▁individual -8.95484 +▁medications -8.95503 +ob -8.95549 +hi -8.95718 +▁clean -8.95801 +▁chronic -8.95891 +▁man -8.96095 +▁method -8.96356 +▁rest -8.96408 +This -8.96576 +▁fall -8.96583 +year -8.96709 +▁visit -8.96785 +▁bo -8.96853 +▁once -8.96957 +▁* -8.97133 +It -8.97184 +mp -8.97228 +iv -8.97323 +term -8.97364 +mb -8.97375 +▁weeks -8.97389 +▁close -8.97534 +▁old -8.9755 +we -8.97717 +les -8.97721 +_ -8.97782 +ors -8.97794 +ee -8.978 +▁federal -8.97811 +▁sea -8.97813 +▁single -8.98 +▁add -8.98082 +▁disorders -8.98276 +▁ask -8.9834 +▁month -8.98382 +ction -8.98385 +ner -8.9841 +▁difficult -8.98488 +▁muscle -8.98544 +▁continue -8.98814 +▁attack -8.98835 +▁article -8.98836 +▁mean -8.989 +▁technology -8.98925 +▁involved -8.98935 +▁occurs -8.9894 +▁him -8.99089 +ran -8.99114 +▁never -8.99115 +▁receive -8.99234 +▁try -8.99244 +red -8.99329 +almost -8.99437 +▁depression -8.9958 +▁economic -8.99702 +▁makes -8.99883 +▁People -9.00269 +▁professor -9.00429 +if -9.00488 +▁whole -9.00985 +▁poor -9.01007 +▁animal -9.01079 +▁mental -9.01167 +ants -9.01279 +▁Z -9.01355 +ations -9.01487 +▁image -9.01576 +▁Cancer -9.01674 +▁contain -9.01877 +▁document -9.01957 +▁stop -9.02527 +ie -9.02737 +▁provided -9.02812 +▁Th -9.02925 +▁suggest -9.03086 +▁answer -9.03121 +▁release -9.03357 +▁student -9.03473 +▁fire -9.0354 +▁provider -9.03671 +▁content -9.03704 +▁words -9.03718 +▁reason -9.03826 +way -9.04054 +gen -9.04075 +▁radiation -9.04194 +▁' -9.04685 +▁cannot -9.04711 +▁minutes -9.0478 +▁book -9.04814 +▁Ha -9.0483 +▁term -9.04853 +▁schools -9.04901 +▁though -9.04938 +▁York -9.04984 +▁affected -9.05081 +▁added -9.05171 +▁Association -9.05183 +▁relative -9.05183 +lu -9.05342 +▁helps -9.05358 +itis -9.05444 +▁paper -9.05582 +▁mass -9.05634 +▁solar -9.05644 +▁sometimes -9.05684 +▁families -9.06081 +▁training -9.06165 +▁return -9.06242 +▁required -9.06813 +▁field -9.06972 +▁treated -9.07198 +time -9.07305 +▁enter -9.07578 +▁center -9.07609 +par -9.07621 +▁Washington -9.078 +ni -9.07908 +▁stay -9.07908 +▁appear -9.07958 +▁journal -9.08004 +▁diagnosed -9.08018 +▁feet -9.08107 +tin -9.08174 +▁individuals -9.08228 +▁includes -9.0823 +▁w -9.08641 +▁Here -9.08736 +▁nearly -9.08796 +▁illness -9.08816 +▁rise -9.08892 +da -9.08963 +▁various -9.09135 +lin -9.09263 +▁mouth -9.09394 +by -9.09468 +oma -9.09527 +▁comes -9.09531 +▁sources -9.09567 +den -9.09768 +use -9.09834 +ea -9.09842 +▁About -9.09867 +▁issues -9.10172 +osis -9.10273 +qui -9.10329 +oid -9.10426 +ray -9.10561 +▁matter -9.10594 +▁San -9.10746 +▁position -9.10798 +▁inside -9.10827 +▁parts -9.10842 +▁building -9.10925 +▁cut -9.10958 +▁night -9.10983 +▁cholesterol -9.11013 +▁signs -9.11035 +▁pay -9.1109 +▁Ca -9.1114 +based -9.11165 +▁require -9.11171 +▁bi -9.11341 +▁complete -9.11366 +▁target -9.11435 +▁hot -9.11609 +▁behavior -9.11629 +▁strong -9.11748 +br -9.11848 +▁Use -9.11992 +▁let -9.12014 +mm -9.12087 +▁produced -9.12133 +▁ago -9.12144 +▁syndrome -9.12178 +▁material -9.12284 +▁created -9.12325 +▁question -9.12345 +▁necessary -9.12391 +ron -9.12417 +▁link -9.1244 +ice -9.12452 +▁asthma -9.12515 +gu -9.12583 +▁President -9.12697 +cu -9.12698 +▁basic -9.12712 +▁understanding -9.12929 +▁ear -9.12965 +▁consider -9.1298 +ber -9.13046 +▁miles -9.13067 +▁systems -9.13119 +▁tend -9.13181 +ef -9.13281 +▁survey -9.13573 +▁someone -9.13577 +ler -9.13678 +▁bring -9.13726 +▁diagnosis -9.13789 +▁throughout -9.13874 +▁Because -9.13944 +▁news -9.13947 +▁liver -9.14238 +▁growing -9.14331 +like -9.14342 +▁Y -9.14437 +▁Pre -9.14507 +▁injury -9.14659 +low -9.14752 +▁fever -9.14795 +▁hold -9.14921 +▁leading -9.1493 +▁share -9.14975 +▁website -9.14988 +▁humans -9.15075 +▁March -9.15269 +▁standard -9.15383 +▁ground -9.16341 +▁sh -9.16418 +▁June -9.16443 +▁largest -9.16461 +▁African -9.16499 +▁design -9.16514 +▁inter -9.16539 +▁again -9.16593 +▁ice -9.16763 +ization -9.16887 +▁additional -9.16889 +▁Li -9.16992 +of -9.17024 +▁emissions -9.17035 +led -9.17126 +▁focus -9.17189 +▁skills -9.17382 +pl -9.17572 +▁talk -9.17578 +▁lives -9.17677 +▁ever -9.17699 +▁variety -9.17765 +▁designed -9.17884 +▁build -9.17889 +▁infected -9.17904 +▁difference -9.17913 +related -9.17956 +ase -9.17962 +▁particular -9.18 +▁medication -9.18025 +ud -9.1804 +▁reading -9.18079 +▁positive -9.18159 +▁market -9.18347 +ah -9.18473 +▁members -9.1851 +▁Journal -9.18557 +▁yet -9.18575 +▁limit -9.18697 +▁essential -9.18785 +sta -9.1896 +fer -9.18987 +▁attention -9.19127 +▁responsible -9.19241 +▁object -9.19257 +▁cover -9.1928 +▁third -9.19307 +▁ch -9.19331 +▁text -9.19418 +▁factor -9.19492 +▁practice -9.19594 +▁begin -9.19639 +▁travel -9.19699 +ring -9.19721 +▁wind -9.19749 +wa -9.1992 +▁scientific -9.1993 +▁led -9.19953 +▁depend -9.19982 +▁interest -9.20148 +▁regular -9.20394 +▁hope -9.20406 +▁primary -9.20507 +▁personal -9.20532 +▁word -9.20644 +ev -9.20721 +for -9.20735 +eg -9.20768 +fi -9.20794 +▁ensure -9.20808 +▁break -9.20893 +▁born -9.20927 +ric -9.20933 +od -9.21036 +▁contains -9.21075 +▁obesity -9.21088 +▁rights -9.21109 +▁Food -9.21111 +▁war -9.21206 +▁particularly -9.21207 +▁Researchers -9.2134 +▁became -9.21438 +ert -9.21478 +▁suggests -9.21494 +▁oxygen -9.21555 +▁During -9.21595 +– -9.21625 +▁Education -9.21672 +▁instead -9.21672 +▁management -9.21695 +▁Ho -9.21713 +lic -9.21783 +▁memory -9.21789 +▁easy -9.21789 +▁la -9.21868 +▁Day -9.21875 +▁step -9.21877 +nd -9.21878 +mat -9.22001 +Q -9.22002 +act -9.22012 +▁Program -9.22029 +▁slow -9.22121 +ular -9.22172 +▁dog -9.22181 +▁testing -9.22247 +ther -9.22262 +io -9.22292 +ists -9.22299 +hu -9.22317 +our -9.22361 +▁location -9.22388 +ck -9.22391 +▁protection -9.22461 +▁planet -9.22462 +▁John -9.22475 +comp -9.22544 +▁century -9.22953 +▁bar -9.23033 +▁record -9.23208 +▁probably -9.23326 +▁Also -9.2333 +▁section -9.23447 +▁industry -9.23564 +▁Car -9.23564 +▁clinical -9.23674 +av -9.23788 +▁God -9.23804 +▁action -9.24074 +ship -9.24162 +▁director -9.24186 +▁materials -9.24224 +dy -9.2437 +▁Since -9.24408 +▁Or -9.24467 +▁Ga -9.24488 +▁chemical -9.24571 +▁nerve -9.24646 +▁mission -9.2492 +▁Alzheimer -9.25129 +▁money -9.25129 +▁approach -9.25245 +▁gain -9.25256 +▁Control -9.25372 +hal -9.25411 +▁nation -9.25471 +▁physician -9.25493 +▁included -9.25501 +que -9.25672 +▁lung -9.25808 +▁milk -9.25859 +▁July -9.26012 +af -9.26164 +▁outside -9.26195 +▁vegetables -9.26272 +▁kind -9.26316 +▁generally -9.26361 +▁thing -9.26402 +ins -9.26588 +▁female -9.26595 +▁regard -9.26595 +▁search -9.26596 +In -9.26652 +▁Di -9.26784 +▁High -9.26867 +▁released -9.26909 +▁service -9.26944 +▁kidney -9.26945 +ries -9.26957 +▁late -9.26988 +side -9.27073 +▁international -9.27088 +▁smoking -9.27088 +▁Ph -9.2712 +▁Canada -9.2746 +ff -9.27509 +pp -9.27612 +du -9.27664 +▁pass -9.27857 +▁kill -9.27901 +set -9.27942 +▁lack -9.27993 +▁General -9.28202 +X -9.28237 +▁model -9.2845 +▁weather -9.28584 +▁vision -9.28627 +▁fast -9.28643 +▁big -9.28654 +▁overall -9.2878 +uck -9.28835 +▁colon -9.28847 +▁member -9.28851 +ail -9.28871 +▁fuel -9.29011 +▁equal -9.29031 +▁wide -9.29205 +▁takes -9.293 +▁Read -9.29352 +ax -9.2941 +▁numbers -9.29454 +▁appropriate -9.29475 +▁DNA -9.29524 +▁adult -9.29534 +▁income -9.29561 +▁self -9.29636 +▁ocean -9.2972 +▁China -9.29728 +▁speed -9.29849 +▁estimated -9.29859 +▁looking -9.29946 +▁International -9.29974 +▁forms -9.29989 +bu -9.30046 +▁quickly -9.30083 +ep -9.30086 +▁identify -9.30101 +▁professional -9.30106 +▁increasing -9.30256 +▁April -9.30284 +▁drinking -9.30353 +▁treatments -9.30353 +▁policy -9.30357 +ple -9.30468 +mar -9.30491 +▁drink -9.30592 +tan -9.30611 +▁complex -9.30613 +▁themselves -9.30613 +▁Space -9.30613 +▁statement -9.30645 +▁meat -9.30724 +ke -9.30826 +▁Sa -9.30896 +▁showed -9.30904 +▁Can -9.30941 +... -9.30945 +▁season -9.30962 +▁itself -9.30993 +▁Society -9.30998 +▁click -9.30999 +▁recommended -9.31103 +▁measure -9.31115 +▁analysis -9.31127 +▁Congress -9.3113 +▁chance -9.31149 +val -9.31165 +▁date -9.31248 +▁Africa -9.31296 +tri -9.31353 +▁increases -9.31412 +▁story -9.31414 +▁Per -9.31422 +▁green -9.31452 +▁x -9.31565 +vo -9.31587 +▁network -9.31773 +▁rather -9.31779 +▁currently -9.31851 +▁exam -9.31921 +let -9.32025 +▁Public -9.32032 +▁benefit -9.32056 +▁deaths -9.32165 +▁contribute -9.32292 +▁English -9.32345 +int -9.32554 +ai -9.32576 +▁critical -9.32684 +ration -9.32733 +▁idea -9.32799 +ier -9.3281 +▁block -9.32897 +▁fl -9.32924 +rin -9.32954 +pro -9.33052 +▁events -9.33266 +▁procedure -9.33274 +▁degree -9.33281 +▁soil -9.33416 +▁bad -9.3346 +▁expected -9.33463 +▁Why -9.33502 +▁commonly -9.33579 +▁eyes -9.33617 +▁typically -9.33706 +▁length -9.33736 +▁sc -9.33823 +▁knowledge -9.33868 +▁city -9.3389 +▁Tr -9.33965 +▁West -9.34022 +▁Pro -9.34082 +▁began -9.34113 +▁perform -9.34124 +▁true -9.34134 +▁structure -9.34232 +▁hair -9.34419 +▁Prevention -9.34561 +▁calories -9.34692 +▁Even -9.34775 +▁maintain -9.3483 +▁causing -9.34864 +sis -9.34885 +▁tools -9.3493 +▁consumption -9.34933 +▁college -9.35067 +pr -9.35253 +bl -9.35386 +▁Not -9.35581 +▁mind -9.35632 +tr -9.35704 +▁review -9.35707 +▁larger -9.35822 +▁gr -9.35843 +▁participants -9.35874 +▁dry -9.36094 +▁stomach -9.36144 +▁directly -9.36222 +▁intake -9.36272 +▁warm -9.36326 +▁Now -9.36364 +ual -9.36403 +▁emergency -9.36586 +▁screening -9.36606 +▁Review -9.36609 +amp -9.36664 +▁meet -9.36676 +OR -9.36688 +▁took -9.36861 +ER -9.36908 +▁prevention -9.3696 +▁doing -9.36988 +▁save -9.37081 +▁rare -9.37173 +▁came -9.37234 +▁smoke -9.37354 +▁Women -9.3737 +ble -9.37428 +▁discovered -9.37521 +row -9.37537 +log -9.37579 +ability -9.37585 +▁Service -9.37728 +▁supply -9.37782 +▁See -9.38003 +▁imp -9.38031 +▁uses -9.38068 +▁genes -9.38119 +▁highest -9.38168 +▁News -9.38178 +▁business -9.38487 +▁Find -9.38617 +▁en -9.38685 +▁exposed -9.38751 +▁table -9.38795 +▁Europe -9.38832 +ory -9.38841 +ka -9.38878 +▁received -9.38987 +▁experts -9.39113 +▁Human -9.39181 +▁Heart -9.39203 +▁Is -9.3922 +NA -9.39275 +▁terms -9.39284 +▁works -9.3929 +▁promote -9.39309 +IS -9.39519 +▁Sp -9.39548 +▁European -9.39647 +▁County -9.39869 +▁communities -9.40012 +cent -9.40038 +▁engine -9.40119 +▁company -9.40432 +▁Se -9.40515 +▁cent -9.40677 +▁methods -9.40699 +▁respond -9.40856 +▁System -9.40858 +▁pet -9.40905 +▁Mar -9.40936 +▁fruit -9.41057 +▁mother -9.41066 +▁remove -9.41081 +▁o -9.4117 +▁sound -9.41246 +▁separate -9.41284 +▁exist -9.41303 +▁identified -9.41427 +▁decrease -9.41509 +ug -9.41538 +▁efforts -9.4158 +day -9.42053 +ib -9.42083 +▁easily -9.42143 +▁images -9.42144 +▁affects -9.42211 +▁sick -9.42286 +▁David -9.42287 +light -9.42313 +▁hospital -9.42361 +▁Once -9.42377 +▁extra -9.42392 +▁host -9.4244 +▁map -9.42568 +▁sense -9.42723 +▁middle -9.42723 +▁told -9.42782 +gra -9.4283 +▁allows -9.42858 +ise -9.42928 +▁Australia -9.42959 +▁subject -9.42988 +▁seem -9.42992 +▁drop -9.4303 +▁temperatures -9.43071 +▁influence -9.43155 +bb -9.4319 +▁Ne -9.43195 +su -9.43212 +▁previous -9.43217 +▁job -9.43251 +air -9.4331 +▁cycle -9.43319 +▁linked -9.43334 +▁room -9.43345 +▁Go -9.43379 +▁First -9.43446 +▁Web -9.43451 +▁located -9.43502 +rn -9.43514 +▁options -9.43525 +▁sex -9.43613 +cur -9.43673 +▁goal -9.43745 +▁event -9.43753 +ft -9.43783 +▁micro -9.43916 +▁leg -9.44038 +▁direct -9.44197 +▁Lo -9.44317 +nic -9.44333 +▁Note -9.44506 +▁code -9.44541 +▁base -9.44608 +▁significantly -9.44609 +▁Mi -9.44614 +▁moon -9.44625 +▁muscles -9.4463 +▁colleagues -9.44693 +▁steps -9.44705 +all -9.44715 +▁track -9.44766 +▁CO -9.44797 +▁Over -9.4483 +▁hearing -9.44831 +▁simply -9.44913 +▁Dis -9.44979 +▁although -9.45061 +▁choose -9.45061 +ID -9.45164 +▁January -9.45215 +▁Bar -9.45257 +▁parent -9.45267 +▁label -9.45273 +▁tube -9.45361 +▁Last -9.45414 +vis -9.45484 +▁Hospital -9.45506 +▁remain -9.45525 +▁Test -9.4559 +▁bio -9.45723 +▁doctors -9.45767 +serv -9.4577 +▁tumor -9.45881 +▁phone -9.45955 +port -9.45992 +rit -9.4603 +▁reduced -9.46032 +art -9.46156 +▁Each -9.46226 +▁Treatment -9.46252 +▁shape -9.46271 +▁star -9.46285 +▁sample -9.46345 +ley -9.46396 +▁orbit -9.46425 +▁points -9.46447 +ns -9.4651 +▁multiple -9.4656 +ST -9.46748 +▁pregnant -9.46853 +▁measures -9.46862 +▁movement -9.46877 +▁advice -9.47004 +▁recently -9.47008 +▁degrees -9.47091 +▁Su -9.47125 +▁Don -9.47154 +▁inflammation -9.47266 +lie -9.47327 +▁summer -9.47463 +▁sexual -9.4747 +▁detect -9.47522 +AR -9.47558 +▁waste -9.47564 +ny -9.47584 +▁appears -9.47586 +▁Jo -9.47592 +▁bit -9.47593 +▁count -9.47674 +▁store -9.47882 +▁teeth -9.47914 +her -9.47931 +▁Date -9.48109 +▁threat -9.48215 +▁insulin -9.48219 +▁popular -9.48224 +▁yourself -9.48348 +▁Professor -9.48372 +▁hormone -9.48382 +ear -9.4843 +har -9.48479 +▁monitor -9.48503 +▁fluid -9.4865 +▁series -9.48681 +▁die -9.4874 +▁suffer -9.48819 +▁expect -9.4884 +▁deep -9.48848 +▁workers -9.48896 +▁earlier -9.48986 +▁j -9.49085 +▁private -9.4914 +bit -9.49188 +▁objects -9.49192 +▁ten -9.49207 +▁joint -9.49226 +▁farm -9.49307 +▁combination -9.49311 +▁conducted -9.4937 +fa -9.49399 +▁game -9.49455 +▁progress -9.4947 +▁tax -9.49493 +ong -9.49543 +▁Qu -9.49589 +▁died -9.49627 +bi -9.49638 +▁represent -9.49686 +▁solution -9.49759 +▁reach -9.4977 +▁From -9.49797 +az -9.49855 +ps -9.5 +▁media -9.50051 +▁iron -9.5009 +▁Water -9.50101 +▁guide -9.50226 +IN -9.50265 +▁September -9.50376 +▁eight -9.50408 +▁seven -9.50424 +▁mice -9.50617 +▁smaller -9.50643 +ious -9.507 +▁predict -9.50727 +▁negative -9.50729 +▁Sun -9.50802 +ake -9.50826 +▁house -9.50902 +▁annual -9.50937 +▁December -9.5101 +▁write -9.51014 +gi -9.51035 +▁web -9.51063 +▁entire -9.51409 +▁layer -9.51471 +▁College -9.5148 +▁Energy -9.5148 +▁behind -9.5148 +chi -9.51624 +ible -9.51703 +cy -9.51734 +▁teachers -9.51743 +▁babies -9.51796 +lan -9.51799 +ze -9.51818 +ates -9.51887 +▁built -9.51955 +▁president -9.51955 +ham -9.51967 +▁front -9.51968 +istic -9.51984 +▁Our -9.52034 +▁failure -9.52123 +my -9.52157 +pha -9.52252 +▁political -9.52273 +▁mild -9.52285 +▁hands -9.52345 +▁offer -9.52345 +▁En -9.52371 +▁calcium -9.52432 +▁City -9.52434 +▁authors -9.52437 +▁Of -9.52467 +▁culture -9.52496 +▁recommend -9.52692 +▁sign -9.52705 +▁Office -9.52759 +▁figure -9.52911 +▁version -9.53026 +▁scan -9.53051 +▁wear -9.5306 +wi -9.53061 +▁trigger -9.53071 +espite -9.53088 +ping -9.53115 +▁asked -9.53225 +▁mis -9.5325 +ov -9.5327 +▁explain -9.53289 +▁force -9.53816 +rac -9.5398 +▁established -9.54008 +▁amounts -9.54073 +▁October -9.54232 +▁started -9.54264 +▁Sc -9.543 +▁piece -9.54363 +▁approximately -9.54461 +▁relationship -9.54593 +▁card -9.54596 +▁concern -9.54629 +▁success -9.54672 +▁atmosphere -9.54688 += -9.54781 +▁spot -9.54809 +▁storm -9.54852 +kin -9.54874 +▁Man -9.54923 +▁application -9.54926 +▁Part -9.54956 +rm -9.54988 +▁hour -9.55 +▁autism -9.55016 +▁music -9.55019 +▁woman -9.55024 +▁finding -9.5503 +cr -9.5507 +▁fruits -9.55112 +▁alone -9.55229 +▁girls -9.55267 +ew -9.55271 +▁February -9.55332 +▁video -9.55342 +▁product -9.55369 +▁rule -9.55397 +IC -9.55412 +▁message -9.55507 +water -9.55525 +▁beginning -9.55529 +▁November -9.55671 +▁Development -9.5568 +▁goes -9.55687 +izing -9.55812 +▁Environmental -9.55974 +▁path -9.56027 +sight -9.5621 +▁El -9.56228 +▁performed -9.56232 +▁walk -9.56242 +▁grade -9.56277 +▁warming -9.56282 +▁Un -9.56414 +▁soon -9.56433 +▁display -9.56497 +▁injuries -9.56498 +▁Internet -9.56503 +▁August -9.56543 +stone -9.56579 +▁lifestyle -9.56838 +ES -9.56922 +▁requires -9.56964 +▁decline -9.56984 +▁medicines -9.57152 +▁reports -9.57161 +SA -9.57249 +AP -9.57263 +▁followed -9.57371 +▁neuro -9.57464 +▁office -9.57464 +▁sites -9.57476 +j -9.57485 +▁Director -9.57498 +▁writing -9.57498 +▁ages -9.57509 +▁tips -9.57518 +▁tested -9.57532 +east -9.57684 +cal -9.57701 +▁removed -9.57739 +▁stem -9.57763 +▁foot -9.57833 +▁performance -9.57864 +▁Make -9.57903 +▁burn -9.57944 +▁upon -9.57952 +med -9.58071 +▁My -9.58115 +▁demand -9.58172 +▁River -9.58235 +pen -9.58254 +▁won -9.58327 +▁encourage -9.58331 +▁feed -9.58381 +▁breathing -9.58439 +net -9.585 +▁written -9.58512 +▁lost -9.58516 +▁device -9.58541 +▁chemicals -9.58673 +▁apply -9.58693 +▁machine -9.58849 +▁correct -9.58866 +▁remains -9.58943 +▁Na -9.58997 +▁highly -9.59021 +▁tree -9.59069 +▁multi -9.59134 +▁majority -9.59134 +▁Information -9.59189 +ify -9.59325 +▁discuss -9.59363 +▁origin -9.59474 +▁attempt -9.59533 +▁notice -9.59607 +▁standards -9.59616 +fin -9.59652 +▁vessels -9.59827 +▁Park -9.59887 +▁reducing -9.59892 +▁abuse -9.59893 +ification -9.59925 +▁Foundation -9.6006 +▁harm -9.60145 +lip -9.60253 +▁vote -9.60273 +▁k -9.60288 +▁useful -9.60314 +▁basis -9.6039 +▁dangerous -9.60403 +mu -9.60508 +▁dark -9.60564 +▁Us -9.60608 +▁upper -9.60646 +▁CDC -9.60651 +▁decision -9.60667 +▁character -9.60711 +▁arm -9.60727 +▁describe -9.60736 +▁deal -9.60784 +▁costs -9.60824 +▁claim -9.61082 +▁central -9.61083 +▁nature -9.61084 +▁winter -9.61111 +ock -9.61141 +▁got -9.61214 +che -9.61274 +hy -9.61306 +▁meeting -9.61376 +▁please -9.61431 +▁happen -9.61524 +▁birds -9.61626 +▁Comp -9.61643 +AT -9.61662 +▁friends -9.6171 +▁everyone -9.61734 +▁remember -9.61789 +ified -9.61803 +▁nutrients -9.61835 +▁radio -9.61895 +▁dogs -9.61913 +▁generation -9.61917 +▁History -9.61955 +▁nutrition -9.61955 +gram -9.61993 +▁limited -9.62126 +▁Reference -9.62206 +▁stage -9.62327 +▁electricity -9.62332 +▁Fe -9.62357 +▁prior -9.62445 +▁unique -9.62482 +▁British -9.62835 +▁importance -9.62844 +ped -9.62898 +▁passed -9.62943 +▁connection -9.63048 +▁proper -9.63099 +▁abnormal -9.63176 +▁Island -9.63214 +▁assess -9.63299 +cc -9.63308 +▁fo -9.63394 +▁alternative -9.63545 +▁companies -9.63545 +▁command -9.63545 +▁hole -9.63591 +▁cool -9.63668 +▁al -9.63708 +cer -9.63823 +▁Texas -9.63902 +▁immediately -9.64024 +▁House -9.64099 +ink -9.64112 +▁latest -9.64167 +▁financial -9.6426 +▁picture -9.64312 +▁am -9.64409 +▁neck -9.64622 +▁window -9.64644 +hydr -9.64707 +ient -9.64719 +▁reaction -9.64745 +▁rock -9.64785 +graph -9.6485 +▁toward -9.64947 +▁scale -9.64977 +▁Gu -9.65004 +▁conduct -9.65145 +▁collection -9.6515 +ments -9.65151 +▁status -9.65161 +▁educational -9.65194 +nt -9.65199 +▁wild -9.65341 +▁moving -9.65342 +▁didn -9.65363 +▁sa -9.65411 +▁isn -9.65434 +▁officials -9.65491 +▁Symptoms -9.65524 +▁fight -9.65548 +▁chest -9.65594 +▁risks -9.6561 +▁Sch -9.65907 +▁setting -9.65992 +cho -9.65994 +▁infants -9.66043 +▁Council -9.6607 +▁Another -9.66079 +▁mi -9.66097 +▁becomes -9.6611 +▁antibiotics -9.66111 +▁cat -9.66126 +▁Ju -9.66149 +▁direction -9.66156 +gar -9.66184 +gl -9.66218 +▁salt -9.66293 +ever -9.66325 +▁trans -9.66374 +▁Keep -9.66436 +▁guidelines -9.66437 +ches -9.66439 +press -9.66487 +work -9.66537 +▁II -9.66615 +▁enjoy -9.66619 +▁nuclear -9.6662 +▁complications -9.6664 +off -9.66677 +ole -9.66802 +▁Sh -9.66969 +▁Scientists -9.66987 +▁properly -9.67041 +▁super -9.67167 +▁throat -9.67172 +▁property -9.67195 +): -9.67223 +▁collect -9.67287 +▁road -9.67362 +▁Get -9.67508 +wh -9.67521 +▁wall -9.67564 +ogen -9.67688 +▁headache -9.6774 +▁UN -9.6786 +▁proteins -9.6791 +▁balance -9.67939 +▁lungs -9.68003 +▁previously -9.6802 +lit -9.68067 +qua -9.68069 +▁internal -9.68102 +oph -9.6816 +over -9.68208 +▁invest -9.68208 +▁differences -9.68237 +RE -9.68266 +▁distance -9.68286 +▁carry -9.68305 +▁reduction -9.68307 +▁teens -9.684 +▁manage -9.68438 +▁hit -9.68481 +▁childhood -9.68488 +▁decades -9.68527 +▁art -9.6856 +ren -9.68562 +▁legal -9.68568 +nce -9.68576 +▁instance -9.68663 +▁anything -9.68667 +▁serve -9.68748 +▁Ta -9.68789 +▁box -9.68822 +▁Ri -9.68843 +▁portion -9.68855 +▁screen -9.68882 +ned -9.68971 +▁King -9.68978 +rank -9.68986 +▁devices -9.69001 +cri -9.69066 +▁sports -9.69069 +▁mechanism -9.69224 +▁Great -9.69225 +▁stand -9.69253 +▁running -9.69261 +▁aware -9.69262 +lock -9.69311 +▁lose -9.69311 +▁Wal -9.69394 +▁pollution -9.69413 +▁glucose -9.69418 +▁Today -9.6947 +▁select -9.69476 +▁island -9.69607 +bra -9.69663 +nder -9.69672 +▁cur -9.69791 +▁fresh -9.69792 +▁eggs -9.6982 +▁gland -9.69836 +▁Have -9.69858 +▁vary -9.69864 +▁blue -9.69982 +▁users -9.70068 +▁disc -9.70198 +▁trying -9.70325 +▁signal -9.70339 +▁consist -9.70344 +▁concept -9.70362 +▁Click -9.70373 +ably -9.70434 +▁weak -9.70584 +rain -9.70695 +▁Report -9.70792 +oth -9.70819 +AN -9.70856 +▁organic -9.71003 +▁sent -9.7101 +ency -9.71014 +▁values -9.71095 +ene -9.7111 +▁placed -9.7111 +▁Administration -9.71127 +▁user -9.71159 +▁seek -9.71163 +▁regions -9.7122 +▁tool -9.71246 +▁attacks -9.71315 +▁liquid -9.7132 +▁send -9.71327 +ED -9.71333 +▁indicate -9.71335 +ces -9.71347 +▁Academy -9.71512 +▁credit -9.71705 +▁reflect -9.71805 +▁male -9.71843 +▁fiber -9.71927 +▁held -9.71968 +▁Type -9.72012 +▁cancers -9.72066 +IT -9.72263 +▁communication -9.72287 +▁buy -9.72295 +▁opportunity -9.72481 +▁cardiovascular -9.72488 +▁district -9.72489 +▁original -9.72493 +▁bones -9.72509 +▁watch -9.72625 +▁providing -9.72676 +▁north -9.72774 +▁situation -9.72836 +yn -9.72843 +ana -9.72849 +men -9.72855 +▁economy -9.72871 +▁theory -9.73059 +▁reference -9.73082 +▁raise -9.73114 +▁alter -9.73172 +▁Du -9.73175 +▁Mars -9.73354 +▁letter -9.7336 +▁effort -9.73446 +▁cap -9.73468 +▁pi -9.73484 +▁Work -9.73611 +ologist -9.73621 +ture -9.73936 +more -9.73983 +▁routine -9.74051 +▁leave -9.74057 +▁samples -9.74127 +iff -9.74146 +▁meaning -9.7415 +▁Care -9.74166 +▁Har -9.74169 +▁consult -9.7425 +▁modern -9.74256 +▁mid -9.74282 +▁functions -9.74344 +▁ca -9.74461 +▁resource -9.74483 +▁reasons -9.74493 +▁nose -9.74558 +▁Mexico -9.74647 +▁database -9.74647 +▁His -9.74652 +mark -9.74661 +▁fear -9.74706 +▁thousands -9.74715 +▁traditional -9.74792 +▁race -9.74812 +late -9.74945 +▁offers -9.75121 +▁potentially -9.75213 +▁Ocean -9.75246 +▁lab -9.75521 +ey -9.75603 +▁Learn -9.75612 +▁root -9.75651 +▁Her -9.75665 +AS -9.75696 +ash -9.75834 +▁cross -9.7585 +▁shot -9.75891 +▁Union -9.75952 +free -9.7601 +▁Vi -9.76046 +lar -9.76054 +SE -9.76253 +▁greenhouse -9.76255 +▁Pe -9.76302 +▁organization -9.76343 +▁Sea -9.76409 +ON -9.76434 +▁extremely -9.76468 +CA -9.76511 +rt -9.76518 +▁habitat -9.76546 +▁twice -9.76657 +▁Are -9.76771 +▁photo -9.76857 +▁Diabetes -9.7686 +▁double -9.76862 +duct -9.76891 +▁Federal -9.77064 +▁rat -9.77086 +If -9.77103 +▁quite -9.77205 +▁seems -9.77318 +▁strength -9.77396 +▁bottom -9.77472 +▁easier -9.77472 +▁East -9.77505 +▁drive -9.77654 +▁Florida -9.77677 +▁hepatitis -9.77677 +▁Bu -9.77745 +▁bill -9.77752 +▁connect -9.77755 +▁coming -9.77808 +▁Social -9.77883 +▁Inter -9.77905 +car -9.78005 +vol -9.78063 +▁pick -9.7808 +▁defined -9.78097 +▁Inc -9.78125 +▁Sha -9.78135 +▁plans -9.78228 +▁motor -9.78296 +▁index -9.78309 +▁completely -9.78329 +rk -9.78422 +▁/ -9.78445 +ough -9.78494 +▁conservation -9.78501 +▁Blood -9.78501 +cin -9.78516 +long -9.78682 +▁expand -9.78709 +▁worldwide -9.7873 +▁rich -9.78764 +▁Min -9.78809 +▁Lu -9.7884 +own -9.78844 +▁processes -9.78851 +▁poverty -9.78916 +▁Com -9.78979 +ery -9.79007 +▁tri -9.7906 +▁starting -9.79092 +▁walking -9.79097 +RA -9.79111 +▁anxiety -9.79123 +▁resistance -9.79339 +▁UK -9.79356 +▁aid -9.79358 +▁Air -9.79362 +▁named -9.79518 +▁equipment -9.79541 +▁stars -9.79636 +▁measured -9.79684 +▁thyroid -9.79706 +oli -9.79728 +▁supplement -9.79743 +▁happens -9.79797 +▁electrical -9.79931 +▁looked -9.80178 +▁worse -9.80263 +▁tumors -9.80272 +▁log -9.80355 +▁England -9.8038 +▁Indian -9.8043 +▁discovery -9.80491 +▁percentage -9.80564 +▁Mon -9.80569 +▁society -9.80591 +▁Study -9.80591 +▁studied -9.80591 +▁intervention -9.80597 +ker -9.80639 +▁fatty -9.80656 +▁lines -9.80797 +▁properties -9.80808 +aw -9.80829 +▁slightly -9.80877 +▁thin -9.80974 +▁commercial -9.81014 +▁helping -9.81034 +▁official -9.81053 +▁gives -9.8109 +▁applications -9.8113 +▁Their -9.81163 +▁researcher -9.81185 +▁department -9.81227 +▁bleeding -9.81227 +▁south -9.81228 +▁Change -9.81229 +▁harmful -9.81249 +▁fewer -9.81283 +:|| -9.81297 +char -9.81372 +Re -9.81396 +▁instrument -9.81439 +▁jobs -9.81531 +▁Time -9.8156 +▁Ni -9.81582 +▁Call -9.81611 +▁Press -9.81673 +▁younger -9.81747 +HA -9.81751 +▁print -9.81823 +▁normally -9.81859 +▁successful -9.81868 +▁Asia -9.81931 +▁fit -9.81935 +▁wood -9.8201 +virus -9.82031 +▁extreme -9.82066 +▁Q -9.8214 +AD -9.82173 +uff -9.82207 +▁concerns -9.82209 +▁contract -9.82231 +PA -9.82238 +▁Pacific -9.82295 +▁delay -9.82341 +▁electro -9.82577 +* -9.82589 +OS -9.82657 +▁port -9.82722 +▁explore -9.82726 +▁techniques -9.82782 +▁option -9.82827 +▁coal -9.82865 +▁note -9.829 +▁press -9.82914 +▁Project -9.82942 +▁Two -9.82942 +▁reviewed -9.82942 +▁dioxide -9.82949 +▁features -9.83007 +); -9.83087 +▁square -9.83158 +▁trend -9.83159 +▁moderate -9.83163 +▁app -9.83189 +▁AIDS -9.83266 +▁particles -9.83308 +▁soft -9.8331 +▁supplements -9.83382 +sp -9.83382 +▁urine -9.83385 +ju -9.83414 +▁involves -9.8354 +▁owner -9.83565 +▁Climate -9.83592 +▁violence -9.83592 +▁phase -9.83603 +▁serving -9.83834 +▁wash -9.83862 +▁security -9.8391 +▁changed -9.84045 +ons -9.84056 +▁teacher -9.84144 +▁laws -9.84234 +▁Students -9.84245 +▁planning -9.84289 +▁Si -9.84343 +fo -9.84452 +▁cloud -9.84474 +▁drinks -9.84509 +▁auto -9.84607 +▁variable -9.84686 +▁swelling -9.84687 +▁flood -9.84692 +lay -9.84729 +%) -9.84851 +▁civil -9.84896 +▁awareness -9.84945 +fr -9.84971 +▁cough -9.84997 +▁topic -9.85036 +▁frequently -9.85067 +▁rules -9.85228 +▁etc -9.85288 +▁influenza -9.85349 +▁court -9.85351 +▁river -9.85354 +q -9.85412 +▁elements -9.85524 +▁places -9.85547 +▁Agency -9.85571 +▁Avoid -9.85571 +ina -9.85585 +▁acids -9.85669 +▁rid -9.85732 +yl -9.85739 +ki -9.85791 +▁campaign -9.85793 +▁visual -9.85793 +▁staff -9.85793 +▁final -9.85795 +▁illnesses -9.85843 +▁fun -9.85899 +▁Art -9.85911 +▁improvement -9.85933 +▁victim -9.86015 +▁unit -9.86109 +▁populations -9.86132 +▁i -9.86238 +▁Please -9.86239 +▁push -9.86285 +▁wait -9.86466 +▁price -9.86468 +▁believed -9.86488 +▁trade -9.8649 +RO -9.86541 +▁Any -9.86601 +▁corn -9.86611 +▁therefore -9.86687 +▁substance -9.86696 +▁Then -9.86698 +▁decisions -9.86776 +▁procedures -9.868 +▁charge -9.86802 +▁exactly -9.86825 +rop -9.8704 +▁projects -9.87057 +▁emotional -9.87127 +▁touch -9.87201 +() -9.87219 +▁teach -9.87258 +▁estimates -9.87276 +▁bodies -9.87363 +▁Japan -9.87366 +▁met -9.87591 +spec -9.87667 +▁clot -9.87672 +▁thr -9.87728 +▁Am -9.87754 +gin -9.87782 +▁trouble -9.87815 +▁agency -9.87818 +▁laboratory -9.87819 +▁organs -9.87863 +▁rain -9.87866 +▁diagnose -9.87924 +AM -9.87927 +▁Commission -9.88046 +▁referred -9.88056 +▁bright -9.88068 +▁Mc -9.88077 +▁Drug -9.88103 +▁pair -9.88137 +igh -9.88183 +▁powerful -9.88229 +▁Ohio -9.8827 +▁Sometimes -9.88272 +sen -9.88292 +▁Who -9.88315 +▁finger -9.88325 +but -9.88492 +▁classroom -9.88508 +matic -9.88536 +▁overweight -9.88541 +▁feeling -9.88573 +▁becoming -9.88714 +ja -9.88785 +▁Gra -9.8882 +NE -9.88848 +▁Nations -9.88854 +gan -9.88873 +▁station -9.88912 +▁fats -9.88936 +▁broad -9.88957 +▁nine -9.88986 +AL -9.8899 +▁killed -9.89096 +▁examine -9.89152 +name -9.89155 +▁beyond -9.89187 +▁respiratory -9.89187 +▁everything -9.89191 +▁tract -9.89215 +▁bite -9.8933 +▁satellite -9.89417 +▁creating -9.89422 +▁presented -9.89453 +ari -9.8952 +▁existing -9.89526 +▁thinking -9.89572 +▁trial -9.89585 +▁specialist -9.89591 +▁Black -9.89648 +▁bed -9.89686 +bar -9.89691 +▁items -9.89696 +▁Centers -9.8972 +▁enable -9.89737 +▁Cl -9.89789 +tar -9.89812 +▁egg -9.8985 +▁viruses -9.8987 +ix -9.89966 +ography -9.90055 +▁senior -9.90112 +▁Mu -9.90142 +uring -9.90178 +▁organizations -9.90248 +▁eventually -9.90344 +▁participate -9.90344 +▁via -9.90476 +▁mothers -9.90483 +pur -9.90518 +▁fossil -9.90577 +▁begins -9.90645 +▁Te -9.90647 +mod -9.90672 +▁independent -9.90737 +▁legs -9.90787 +▁William -9.90811 +▁allowed -9.9082 +▁Open -9.90902 +▁oral -9.90932 +▁software -9.91048 +▁India -9.91187 +ugh -9.91229 +▁Cr -9.91254 +▁heavy -9.9128 +▁Every -9.91281 +▁convert -9.91284 +▁refer -9.91332 +van -9.91385 +za -9.9141 +▁bus -9.91431 +▁technique -9.91454 +mic -9.91477 +▁went -9.91537 +AC -9.91635 +▁changing -9.91751 +▁presence -9.91754 +▁trees -9.91919 +▁vehicle -9.91941 +▁Library -9.91987 +▁height -9.91995 +▁Safety -9.91997 +▁occurred -9.92038 +▁Services -9.92081 +▁scar -9.92114 +▁faster -9.92129 +ung -9.92131 +▁choice -9.92187 +▁enhance -9.92224 +▁nervous -9.92224 +▁volume -9.92225 +▁Laboratory -9.92226 +eu -9.92253 +▁Ru -9.923 +▁dead -9.92305 +pan -9.92411 +▁purpose -9.92432 +com -9.92455 +▁intestine -9.92462 +▁goals -9.92497 +▁assessment -9.92568 +▁poll -9.92606 +▁accurate -9.927 +▁Civil -9.927 +▁arteries -9.92728 +▁Ask -9.92777 +▁patterns -9.92943 +▁park -9.92961 +▁camera -9.93002 +▁pattern -9.93173 +▁match -9.9348 +▁experienced -9.93573 +▁served -9.93639 +▁Child -9.9365 +▁earth -9.93651 +▁prescription -9.93658 +▁else -9.93671 +There -9.93694 +▁Lake -9.93759 +▁handle -9.93776 +▁advance -9.93794 +▁Pri -9.93832 +▁sore -9.93837 +▁pump -9.93901 +▁Court -9.93902 +og -9.93931 +▁love -9.94017 +part -9.94128 +▁Green -9.9414 +▁Canadian -9.9414 +▁respect -9.94141 +▁wildlife -9.94143 +pon -9.94195 +▁career -9.94204 +han -9.94257 +▁bird -9.94265 +cycle -9.9433 +▁aged -9.94346 +IP -9.94382 +▁wrote -9.94383 +▁infant -9.94425 +▁plate -9.94462 +▁Windows -9.94543 +script -9.94626 +▁gets -9.94639 +▁mg -9.94739 +▁noted -9.94814 +well -9.94864 +▁error -9.94869 +pher -9.94908 +▁Just -9.94956 +head -9.94981 +▁prove -9.95028 +▁books -9.95096 +▁allergies -9.95113 +▁prostate -9.95124 +▁restrict -9.95163 +arch -9.9518 +▁cities -9.95218 +▁applied -9.95244 +board -9.95335 +▁regularly -9.95352 +rate -9.95353 +▁forward -9.95355 +▁toxic -9.95483 +▁town -9.95506 +rad -9.9552 +IA -9.95524 +struct -9.95581 +▁improved -9.95598 +▁survival -9.95602 +▁agencies -9.95603 +▁button -9.95625 +▁Va -9.95638 +▁practices -9.95691 +▁anyone -9.9574 +▁vaccines -9.95792 +▁teaching -9.95805 +▁recover -9.95912 +▁spend -9.96001 +▁Take -9.96077 +▁secret -9.96094 +▁Israel -9.96094 +▁efficient -9.961 +▁breath -9.96136 +▁records -9.96143 +▁Los -9.96321 +▁Technology -9.96341 +▁cognitive -9.96341 +▁urban -9.96342 +▁continues -9.96348 +▁plastic -9.96415 +▁containing -9.96462 +▁helpful -9.96567 +▁drought -9.96589 +▁examination -9.96589 +▁server -9.9659 +▁formed -9.96598 +▁background -9.96606 +▁metal -9.96772 +▁mark -9.96795 +eth -9.96956 +▁determined -9.97046 +▁mode -9.97066 +▁strategies -9.97085 +▁survive -9.97085 +▁preventing -9.97249 +▁warning -9.97261 +▁continued -9.97264 +▁establish -9.97333 +▁association -9.97335 +▁treating -9.97339 +▁attend -9.97372 +▁dose -9.9742 +▁resid -9.97528 +▁tissues -9.97581 +▁Philadelphia -9.97585 +▁Studies -9.97585 +▁diarrhea -9.97585 +▁hyper -9.97586 +gel -9.97622 +▁vein -9.97653 +▁Dec -9.9768 +▁Ka -9.97681 +▁km -9.97746 +rich -9.97779 +ou -9.97825 +▁military -9.97835 +pre -9.97895 +▁adapt -9.97898 +▁consumers -9.97939 +▁fly -9.97955 +▁Plan -9.9797 +▁enzyme -9.98087 +▁German -9.98123 +▁ready -9.98169 +▁suggested -9.98246 +▁dietary -9.98269 +▁rot -9.98316 +▁intended -9.98339 +▁Source -9.98339 +▁mutation -9.98339 +▁cure -9.98414 +▁meal -9.98423 +▁recognize -9.98497 +▁decade -9.98519 +▁seat -9.98522 +▁Chinese -9.98591 +▁mortality -9.98591 +▁yellow -9.98591 +▁biological -9.98607 +back -9.9881 +▁Government -9.98844 +▁obese -9.98844 +▁Chapter -9.98844 +BC -9.98847 +▁Guide -9.98871 +▁Like -9.98893 +▁regulate -9.98902 +▁Australian -9.98934 +▁habits -9.98997 +▁challenge -9.99042 +▁bank -9.99054 +▁Committee -9.99098 +▁surrounding -9.99102 +▁cited -9.99104 +ade -9.9914 +▁recommendations -9.99192 +CP -9.99199 +▁supported -9.99206 +▁fully -9.99242 +▁spinal -9.99244 +▁para -9.99265 +▁files -9.99276 +cell -9.99282 +▁widely -9.99309 +▁format -9.9932 +▁driving -9.99353 +▁ship -9.99386 +▁pal -9.99389 +▁forest -9.99399 +▁EPA -9.99402 +▁Ti -9.99468 +ney -9.99495 +active -9.99504 +ote -9.99524 +▁renewable -9.99608 +▁boost -9.99615 +▁Trans -9.99686 +▁collected -9.9972 +▁grant -9.99832 +▁slowly -9.9985 +▁draw -9.99852 +cha -10.0009 +▁definition -10.0012 +▁pounds -10.0012 +▁panel -10.0012 +▁Je -10.0016 +right -10.0018 +▁expression -10.0025 +ties -10.0032 +▁formula -10.0034 +CE -10.0037 +▁comprehensive -10.0038 +▁bottle -10.0038 +▁Western -10.0038 +▁Board -10.0045 +▁Tri -10.0046 +hose -10.0049 +met -10.0055 +▁cook -10.0055 +▁Let -10.006 +fish -10.0065 +▁household -10.0066 +▁Ste -10.0066 +▁initial -10.0067 +What -10.0071 +▁board -10.0075 +▁stream -10.0083 +▁Vitamin -10.0089 +▁antioxidant -10.009 +▁giving -10.0091 +▁peak -10.0094 +bin -10.0101 +▁Tu -10.0112 +▁electric -10.0115 +▁vaccination -10.0115 +▁dementia -10.0115 +▁formation -10.0119 +▁advanced -10.0127 +▁string -10.0128 +▁aren -10.0131 +▁Bio -10.0136 +▁marine -10.0141 +▁outbreak -10.0144 +▁thus -10.0144 +▁organ -10.0146 +▁accept -10.0148 +▁academic -10.0167 +▁knee -10.0167 +▁monitoring -10.0171 +▁choices -10.0171 +▁shall -10.0179 +▁Global -10.0193 +▁Survey -10.0193 +▁fracture -10.0193 +▁huge -10.0193 +▁vital -10.0194 +ological -10.0195 +▁depends -10.0196 +CC -10.0196 +▁Nature -10.0197 +▁ill -10.0202 +▁friend -10.0206 +▁Before -10.022 +not -10.0224 +▁inches -10.023 +ulat -10.0235 +▁opportunities -10.0246 +▁morning -10.0246 +▁interpret -10.0246 +▁juice -10.0246 +lum -10.0254 +▁impacts -10.0258 +▁foreign -10.0272 +▁Doctor -10.0272 +▁thick -10.0273 +▁listen -10.0273 +▁looks -10.0277 +▁Home -10.0285 +▁hear -10.0288 +▁coast -10.0304 +temp -10.0305 +▁Wa -10.0307 +meter -10.0313 +LE -10.0315 +▁grains -10.0323 +▁brought -10.0325 +▁traffic -10.0325 +▁wrong -10.0325 +▁cord -10.0329 +▁band -10.0339 +▁prepare -10.0343 +▁graduate -10.0351 +▁couple -10.0352 +▁debt -10.0352 +▁observation -10.0372 +nu -10.0373 +▁capacity -10.0378 +▁primarily -10.0378 +▁needle -10.0384 +read -10.0391 +▁consequences -10.0398 +▁Resources -10.0399 +atory -10.0401 +PS -10.0402 +▁Help -10.0405 +▁Back -10.0405 +▁combined -10.0406 +▁decide -10.0409 +Z -10.0422 +▁core -10.0431 +▁accident -10.0431 +ott -10.0433 +▁quick -10.0436 +▁snow -10.044 +lation -10.0445 +▁models -10.0453 +MA -10.0454 +▁substances -10.0457 +ites -10.0457 +▁acute -10.0459 +▁rash -10.0461 +▁molecules -10.0469 +▁showing -10.0477 +▁characteristics -10.0486 +▁Risk -10.0486 +▁tiny -10.0487 +▁actual -10.0492 +mid -10.0493 +▁Men -10.0498 +▁... -10.0501 +▁completed -10.0503 +cro -10.0509 +▁purchase -10.0512 +▁sentence -10.0515 +ult -10.0515 +▁father -10.0515 +▁fill -10.0515 +▁Data -10.052 +▁reveal -10.0521 +py -10.0523 +▁lymph -10.0538 +▁Pi -10.0539 +▁nurse -10.0539 +▁inhibit -10.0539 +▁session -10.0539 +▁visible -10.0539 +▁symbol -10.054 +▁magnetic -10.0542 +▁request -10.0543 +type -10.056 +▁youth -10.056 +▁son -10.0562 +▁leaves -10.0565 +▁incidence -10.0566 +▁permanent -10.0566 +▁speech -10.0566 +▁northern -10.0566 +▁described -10.0567 +▁Group -10.0568 +▁Bay -10.0569 +▁Up -10.057 +amine -10.0576 +rom -10.0584 +American -10.0587 +fat -10.0592 +▁advantage -10.0593 +▁conflict -10.0593 +▁horse -10.0594 +▁Talk -10.0594 +▁challenges -10.0599 +▁consistent -10.06 +▁construction -10.0601 +▁worked -10.0601 +▁Sciences -10.0605 +▁ball -10.0606 +▁details -10.0608 +▁saw -10.0609 +path -10.0611 +author -10.0615 +▁strain -10.0616 +▁observed -10.062 +cus -10.062 +▁achieve -10.0633 +▁trials -10.0641 +▁pot -10.0646 +▁policies -10.0648 +ET -10.0648 +see -10.065 +▁names -10.0652 +▁Fact -10.0664 +rd -10.0665 +▁Jan -10.0669 +▁vulnerable -10.0675 +▁France -10.0675 +▁southern -10.0675 +▁taste -10.0676 +ica -10.0686 +bul -10.0691 +▁operation -10.0697 +▁arthritis -10.0703 +such -10.0703 +▁saving -10.071 +▁et -10.0711 +dia -10.073 +▁brown -10.073 +▁sector -10.0731 +▁seeds -10.0733 +▁kinds -10.074 +len -10.0745 +▁labor -10.075 +rc -10.0753 +▁component -10.0754 +▁column -10.0758 +▁film -10.0758 +range -10.0773 +▁transport -10.0779 +▁covered -10.0784 +▁Nutrition -10.0786 +▁vomiting -10.0786 +▁ancient -10.0786 +▁interaction -10.0788 +▁tea -10.0788 +des -10.0789 +ella -10.0797 +▁cultural -10.0805 +▁pneumonia -10.0813 +▁spring -10.0817 +▁catch -10.0817 +▁Diet -10.0823 +▁MS -10.0823 +ural -10.0827 +▁waves -10.0833 +▁sky -10.0838 +▁Add -10.0839 +▁distribution -10.0841 +▁garden -10.0841 +▁artery -10.0842 +put -10.0844 +▁email -10.0844 +▁task -10.0845 +je -10.0846 +▁stick -10.0852 +▁node -10.0852 +SD -10.0854 +mail -10.0859 +▁associate -10.0863 +▁Bi -10.0865 +cket -10.0865 +▁ecosystem -10.0869 +▁distinct -10.0869 +▁App -10.0875 +▁Rights -10.0878 +▁Low -10.0893 +NS -10.0893 +▁keeping -10.0893 +▁interested -10.0895 +▁actions -10.0895 +▁danger -10.0895 +▁perfect -10.0897 +tes -10.0901 +▁helped -10.0903 +ending -10.0905 +▁investment -10.0911 +exp -10.0917 +▁homes -10.0925 +▁Natural -10.0925 +ban -10.0927 +▁assist -10.0934 +▁interesting -10.094 +▁lesson -10.0944 +▁demonstrate -10.0951 +inflammatory -10.0954 +▁repair -10.0954 +▁engage -10.0954 +▁listed -10.0955 +▁Common -10.0956 +▁trip -10.0958 +pping -10.0961 +HS -10.0967 +rry -10.0967 +TE -10.0975 +▁Germany -10.0978 +▁Family -10.0982 +▁FDA -10.0982 +▁mostly -10.0986 +▁fields -10.0993 +wise -10.0995 +▁peer -10.0996 +tract -10.0998 +gue -10.1007 +▁Management -10.101 +▁sharing -10.101 +▁attract -10.1012 +▁pull -10.1013 +▁Carolina -10.1039 +▁Organization -10.1039 +▁deficiency -10.1039 +▁technologies -10.1039 +▁transplant -10.1039 +dict -10.104 +▁nothing -10.1041 +ean -10.1045 +fold -10.1048 +▁professionals -10.1048 +▁obtain -10.105 +▁launch -10.105 +▁cats -10.1052 +▁spent -10.1053 +▁Clinical -10.1058 +▁stretch -10.1067 +▁motion -10.1067 +▁disability -10.1071 +▁agent -10.1078 +▁speak -10.108 +▁Law -10.1083 +▁lived -10.1092 +ache -10.1092 +▁fatigue -10.1096 +▁French -10.1096 +▁excessive -10.1101 +▁Only -10.1101 +▁surgical -10.1106 +▁Well -10.1119 +▁cup -10.1123 +▁Jewish -10.1124 +▁Virginia -10.1124 +▁carried -10.1124 +▁math -10.1127 +▁Pat -10.1133 +▁prepared -10.1133 +ola -10.1134 +ich -10.1135 +▁Ver -10.1137 +▁prices -10.1153 +▁Division -10.1154 +▁transmitted -10.1154 +▁healthcare -10.1159 +▁TV -10.1161 +▁Red -10.1165 +▁List -10.1169 +▁sensitive -10.1171 +▁naturally -10.1175 +▁Michael -10.1182 +▁eliminate -10.1182 +▁allergic -10.1182 +▁transmission -10.1182 +▁copy -10.1185 +▁Know -10.1186 +▁farmers -10.1196 +▁George -10.1211 +▁technical -10.1211 +▁White -10.1211 +ush -10.1212 +▁boys -10.1226 +▁clearly -10.1231 +▁Under -10.1231 +can -10.1235 +▁receptor -10.124 +▁imaging -10.124 +▁operate -10.124 +▁James -10.124 +You -10.124 +▁Ab -10.1245 +rent -10.1256 +▁disabilities -10.1269 +▁sequence -10.1269 +▁integrat -10.1269 +▁telescope -10.1269 +PDF -10.1272 +▁implement -10.1272 +▁Hu -10.1274 +▁periods -10.1279 +▁ideas -10.1287 +▁millions -10.1297 +▁attribute -10.1298 +▁Christian -10.13 +third -10.1311 +▁adding -10.1313 +are -10.1318 +▁explained -10.1321 +▁HPV -10.1327 +▁asteroid -10.1327 +▁gender -10.1327 +▁solid -10.1328 +▁Article -10.1328 +uch -10.1328 +▁Protection -10.1331 +▁structures -10.1335 +▁comments -10.1349 +▁articles -10.1355 +▁Standard -10.1356 +EN -10.1361 +▁nor -10.1366 +▁requirements -10.137 +▁behaviors -10.1376 +US -10.1376 +▁Anti -10.1377 +▁Try -10.138 +CO -10.1381 +▁dairy -10.1386 +▁Jesus -10.1386 +▁debate -10.1387 +▁tick -10.1391 +▁sounds -10.1403 +▁sort -10.1403 +▁grown -10.1412 +▁Instead -10.1415 +▁join -10.1419 +EP -10.1421 +▁rapid -10.1422 +▁Nov -10.1425 +▁Bur -10.1425 +▁typical -10.1432 +▁PhD -10.1433 +▁Network -10.1445 +▁insurance -10.1445 +▁residents -10.1445 +threatening -10.1446 +▁difficulty -10.1455 +▁decreased -10.1458 +▁prop -10.1458 +mes -10.1459 +▁industrial -10.1475 +▁former -10.1476 +▁poly -10.1476 +▁angle -10.1483 +▁experiment -10.1485 +▁pill -10.1493 +▁rapidly -10.1498 +CH -10.1498 +▁Out -10.1499 +ologists -10.1503 +▁argument -10.1504 +▁Spanish -10.1504 +▁wound -10.1505 +▁unknown -10.1507 +▁moment -10.1508 +▁stock -10.151 +place -10.1512 +mate -10.1519 +ane -10.1526 +test -10.1526 +▁Security -10.1534 +▁engineering -10.1535 +▁consume -10.1548 +▁recorded -10.1558 +arm -10.1563 +▁Example -10.1564 +▁universe -10.1564 +▁gather -10.1564 +▁digital -10.1565 +▁spacecraft -10.1565 +▁discussion -10.1575 +$ -10.1584 +▁detailed -10.1591 +wer -10.1591 +▁Ki -10.1594 +▁Robert -10.1594 +▁crime -10.1595 +▁tooth -10.1608 +▁fatal -10.1608 +fic -10.1609 +mag -10.161 +level -10.1615 +▁load -10.1618 +flu -10.1623 +▁Obama -10.1624 +▁library -10.1624 +▁Wildlife -10.1624 +▁fine -10.1634 +▁links -10.1641 +bor -10.1643 +▁Cu -10.1645 +▁Asian -10.1645 +▁fail -10.1648 +▁win -10.1653 +▁funding -10.1656 +▁Life -10.1657 +▁components -10.1659 +▁worth -10.1661 +▁capital -10.1662 +▁Da -10.1662 +▁highlight -10.1667 +▁contained -10.1675 +acy -10.1676 +▁approved -10.1685 +top -10.1686 +▁pop -10.169 +bil -10.1695 +now -10.1702 +▁indicates -10.1704 +▁ratio -10.1712 +eat -10.1715 +▁closely -10.173 +▁examined -10.1731 +▁Age -10.1732 +grade -10.1737 +▁concerned -10.1739 +cap -10.174 +ised -10.1741 +▁Free -10.1742 +▁Start -10.1743 +▁Where -10.1746 +▁Bank -10.1746 +▁Monday -10.1747 +hen -10.1748 +lli -10.1758 +elect -10.1768 +▁explains -10.1773 +▁hormones -10.1774 +▁sheet -10.1774 +book -10.1778 +▁prescribed -10.1794 +▁introduced -10.1794 +▁Ja -10.1804 +▁Follow -10.1807 +▁disaster -10.1807 +▁outdoor -10.1807 +▁narrow -10.1807 +▁painful -10.1838 +▁Central -10.1838 +▁antibodies -10.1838 +▁conventional -10.1838 +dle -10.1838 +▁produces -10.185 +▁extend -10.1855 +▁Top -10.1861 +ya -10.1869 +▁sensor -10.1869 +▁Among -10.187 +▁relation -10.1877 +▁saying -10.1878 +▁towards -10.1881 +▁historical -10.1882 +mination -10.1883 +teen -10.1883 +▁confirm -10.1885 +▁massive -10.1887 +▁signals -10.1889 +▁tons -10.1892 +▁construct -10.1895 +▁undergo -10.1895 +▁beneficial -10.19 +▁recommends -10.19 +CD -10.1902 +iber -10.1905 +ball -10.1908 +▁specifically -10.1909 +▁Fa -10.1914 +ett -10.192 +▁prevalence -10.1931 +▁switch -10.1931 +▁Museum -10.1931 +body -10.1931 +▁verb -10.1932 +▁element -10.1934 +▁subjects -10.1935 +titude -10.1937 +▁Cha -10.1937 +▁refers -10.194 +▁planets -10.1944 +ski -10.1954 +▁Post -10.1955 +▁Colorado -10.1962 +▁London -10.1962 +▁coffee -10.1962 +▁earthquake -10.1962 +▁involve -10.1962 +▁election -10.1962 +loss -10.1967 +▁controlled -10.197 +▁fund -10.1977 +▁chart -10.1982 +▁ring -10.1987 +▁Sal -10.1988 +▁style -10.199 +▁replace -10.1991 +▁contrast -10.1993 +▁sodium -10.1993 +▁rising -10.1994 +▁strengthen -10.2005 +▁meals -10.2007 +borne -10.2012 +▁gum -10.2014 +nut -10.2014 +▁doses -10.2022 +▁protected -10.2025 +▁hunt -10.2026 +▁evolution -10.2027 +▁frequent -10.2033 +uk -10.2034 +▁Hol -10.2037 +aving -10.2041 +ook -10.2045 +▁unless -10.2049 +▁deliver -10.2052 +uni -10.2052 +▁fluids -10.2053 +▁protective -10.2054 +▁proposed -10.2056 +▁hydrogen -10.2057 +▁bat -10.206 +▁notes -10.2068 +▁agree -10.2075 +▁pets -10.2078 +phy -10.2084 +PI -10.2086 +▁Tuesday -10.2087 +▁tobacco -10.2087 +▁chief -10.2087 +▁relieve -10.2088 +▁native -10.2089 +▁estimate -10.2097 +▁Pain -10.2102 +▁feeding -10.2112 +▁institutions -10.2116 +▁generate -10.2118 +▁epidemic -10.2119 +▁wish -10.2126 +▁issued -10.2127 +▁damaged -10.2132 +Our -10.2149 +▁Agriculture -10.2151 +▁determin -10.2154 +▁Martin -10.2155 +▁drain -10.2156 +▁Gen -10.2161 +lam -10.2166 +▁lowest -10.2179 +worm -10.218 +▁density -10.2183 +▁relax -10.2183 +▁focused -10.2183 +▁electronic -10.2184 +▁Check -10.2184 +▁suffering -10.2187 +▁Bra -10.2189 +▁epi -10.2199 +▁opinion -10.2215 +▁hypo -10.2215 +▁dust -10.2216 +▁Fish -10.2219 +▁funded -10.222 +▁partners -10.2225 +▁confirmed -10.2229 +▁divided -10.2238 +called -10.2241 +▁adequate -10.2247 +▁announced -10.2247 +▁omega -10.2247 +▁Friday -10.2247 +arian -10.2248 +▁chances -10.2249 +▁unusual -10.2249 +itch -10.2256 +▁flight -10.2257 +▁Ko -10.2264 +▁learned -10.2266 +▁talking -10.2268 +point -10.2278 +▁biggest -10.2279 +▁context -10.228 +ko -10.2281 +▁defects -10.2287 +▁clo -10.2288 +print -10.229 +▁gap -10.2291 +▁sell -10.2293 +▁vitamins -10.2294 +▁Mor -10.23 +Ch -10.23 +▁outcomes -10.231 +▁Disorder -10.2311 +▁solve -10.2312 +▁stages -10.2315 +EC -10.2319 +▁Does -10.2325 +rie -10.233 +TO -10.234 +▁Mac -10.234 +▁evaluate -10.2341 +▁detected -10.2343 +▁contribution -10.2343 +▁round -10.2344 +▁Str -10.2353 +▁injection -10.2354 +even -10.2358 +▁returned -10.2359 +▁heard -10.2361 +▁Pediatrics -10.2362 +▁reactions -10.2366 +▁bag -10.2367 +▁chromosome -10.2376 +▁maximum -10.2376 +▁zone -10.2377 +▁Image -10.2378 +▁regional -10.2393 +▁destroy -10.2396 +▁feature -10.2399 +▁minor -10.2407 +▁mobile -10.2408 +▁receiving -10.2408 +▁shift -10.2408 +▁broken -10.2413 +▁partner -10.2413 +▁units -10.2414 +▁Pl -10.2414 +▁fix -10.2415 +lap -10.2418 +▁shell -10.2424 +▁wine -10.2424 +▁excess -10.2435 +▁Columbia -10.2441 +▁worry -10.2441 +▁vast -10.2442 +▁Moon -10.2443 +lav -10.2451 +▁pose -10.2457 +▁secondary -10.2458 +ode -10.2461 +▁RE -10.2471 +▁voice -10.2474 +▁underlying -10.2476 +MS -10.248 +▁sperm -10.2486 +▁pack -10.2501 +▁improving -10.2507 +LA -10.2513 +▁gases -10.2515 +▁geo -10.2535 +▁Mal -10.2537 +iving -10.2537 +▁define -10.2538 +▁evaluation -10.254 +▁therapies -10.254 +▁plaque -10.254 +▁moved -10.2541 +take -10.2543 +▁recovery -10.2569 +tmospheric -10.2573 +▁perhaps -10.2573 +▁Head -10.2575 +▁Ben -10.26 +▁Author -10.2606 +▁arrive -10.2606 +▁filter -10.2606 +▁freedom -10.2606 +▁photograph -10.2607 +▁player -10.2614 +udi -10.2622 +jo -10.2637 +burg -10.2638 +▁domestic -10.2639 +▁Second -10.2639 +▁embryo -10.264 +▁Question -10.264 +▁viral -10.264 +▁situations -10.2646 +▁Port -10.266 +▁hundreds -10.2662 +▁Hispanic -10.2668 +emia -10.267 +▁exhibit -10.2673 +▁kept -10.2673 +▁creation -10.2674 +▁download -10.2676 +▁Environment -10.2678 +▁Long -10.2681 +▁immediate -10.2684 +▁Cy -10.2695 +▁bacterial -10.2699 +▁reached -10.2704 +▁Massachusetts -10.2706 +▁operating -10.2706 +▁infectious -10.2707 +▁bowel -10.2708 +▁Good -10.272 +▁manufacturer -10.2727 +▁bladder -10.274 +▁efficiency -10.274 +▁initiative -10.274 +▁variation -10.274 +▁title -10.274 +▁numerous -10.2741 +burn -10.2746 +maker -10.2761 +▁revealed -10.2763 +aries -10.2773 +▁strategy -10.2774 +▁Though -10.2776 +▁assistance -10.2777 +wel -10.2777 +▁citizens -10.2778 +▁consumed -10.2779 +ison -10.278 +rays -10.2783 +▁adjust -10.2795 +▁raised -10.28 +bel -10.2802 +▁programme -10.2804 +▁turned -10.2808 +▁involving -10.2808 +▁mountain -10.2808 +▁virtual -10.2808 +▁party -10.2812 +▁scientist -10.2812 +SC -10.2816 +▁output -10.2818 +▁compounds -10.2819 +mun -10.282 +▁leader -10.2821 +& -10.2829 +▁burning -10.2836 +▁robot -10.2842 +▁reserve -10.2845 +▁forces -10.2861 +most -10.2862 +▁exception -10.2863 +▁repeated -10.287 +vision -10.2874 +▁transfer -10.2877 +vin -10.2882 +self -10.2884 +▁minerals -10.29 +▁anemia -10.2902 +ette -10.2908 +▁paint -10.2908 +▁aging -10.2908 +▁Wednesday -10.291 +▁facilities -10.291 +▁floor -10.291 +eb -10.2917 +room -10.2938 +▁hypertension -10.2945 +▁ethnic -10.2945 +▁Japanese -10.2945 +▁Vo -10.2947 +▁opening -10.2948 +pot -10.2951 +▁comment -10.2954 +▁stored -10.2955 +▁Mr -10.2969 +last -10.2972 +▁agricultural -10.2979 +▁plenty -10.2979 +▁responsibility -10.2979 +ville -10.298 +fri -10.298 +▁division -10.2981 +▁airway -10.2987 +▁concentration -10.2989 +tz -10.299 +▁greatest -10.2994 +▁otherwise -10.2997 +mission -10.2997 +field -10.3005 +▁observ -10.3012 +▁train -10.3013 +▁extensive -10.3014 +▁investigate -10.3014 +▁assume -10.302 +▁nations -10.3035 +▁seeing -10.3035 +▁orange -10.3052 +war -10.3062 +▁classes -10.3064 +▁interact -10.3068 +▁candidate -10.3083 +▁expensive -10.3083 +▁District -10.3084 +▁nano -10.3085 +▁Look -10.3087 +▁expert -10.3096 +hr -10.3098 +▁deposit -10.31 +▁adolescents -10.3104 +▁glass -10.3106 +comm -10.311 +eng -10.3111 +▁instructions -10.3111 +▁crisis -10.3118 +▁bread -10.3122 +MO -10.3124 +def -10.3127 +gni -10.3127 +rid -10.3131 +▁launched -10.3139 +dependent -10.3145 +rick -10.3145 +metric -10.3148 +▁flat -10.3149 +rine -10.3153 +▁behaviour -10.3153 +▁obvious -10.3153 +▁possibly -10.3153 +ama -10.3153 +▁Early -10.3154 +▁lift -10.3154 +▁counter -10.3157 +▁except -10.3167 +CL -10.3173 +Co -10.3184 +For -10.3188 +▁severity -10.3189 +▁secure -10.3189 +▁ulcer -10.3189 +▁tropical -10.3189 +▁lens -10.3189 +fu -10.3198 +▁weigh -10.3199 +rod -10.3201 +wide -10.3208 +▁Ser -10.3219 +▁sit -10.3223 +▁Constitution -10.3224 +▁religious -10.3224 +▁tight -10.3224 +▁parasite -10.3224 +▁schedule -10.3225 +logical -10.3228 +lia -10.3229 +▁agreement -10.3234 +ino -10.3238 +▁aggressive -10.3259 +▁belief -10.3259 +▁dental -10.3259 +▁frequency -10.3275 +▁meters -10.3283 +▁minimum -10.3295 +▁Maryland -10.3296 +▁Bro -10.3297 +▁meta -10.3298 +rist -10.33 +tech -10.33 +▁cyst -10.33 +RD -10.3304 +▁effectively -10.3305 +CT -10.3309 +▁playing -10.3312 +▁updated -10.3323 +▁Conservation -10.3331 +▁supplies -10.3331 +▁mix -10.3335 +▁lake -10.3338 +▁Paul -10.3345 +ik -10.3356 +▁joints -10.3359 +round -10.3362 +▁consumer -10.3366 +ectomy -10.3366 +▁Harvard -10.3366 +▁extent -10.3367 +▁firm -10.3367 +oscopy -10.3374 +▁operations -10.3374 +get -10.3374 +▁surgeon -10.3375 +▁Land -10.3376 +▁Book -10.3377 +▁wanted -10.338 +▁teen -10.3381 +▁hydro -10.3391 +▁invasive -10.3402 +▁Church -10.3402 +▁bullying -10.3403 +▁zero -10.3403 +▁compare -10.3404 +▁rice -10.3411 +aging -10.3427 +▁Nile -10.3435 +▁offered -10.3436 +▁abdominal -10.3439 +▁brief -10.3439 +▁recognized -10.344 +▁neurons -10.3441 +▁digestive -10.3445 +▁obtained -10.346 +ivity -10.346 +▁officer -10.3462 +▁cervical -10.3475 +▁Bureau -10.3475 +▁Therefore -10.3475 +▁battle -10.3475 +▁mouse -10.3475 +control -10.3479 +which -10.3479 +▁crops -10.3488 +▁Cal -10.3492 +▁analyzed -10.3495 +▁producing -10.3496 +▁antibiotic -10.3503 +▁leaders -10.3506 +▁external -10.3511 +▁Power -10.3513 +risk -10.3513 +▁melt -10.3517 +iness -10.352 +state -10.3523 +▁constant -10.3525 +▁Non -10.3531 +organ -10.3535 +▁tear -10.3539 +▁publication -10.3543 +▁sweet -10.3547 +▁metabolic -10.3548 +▁trust -10.3548 +▁Northern -10.3548 +▁Update -10.355 +born -10.355 +▁realize -10.3552 +▁purposes -10.3552 +▁roughly -10.3557 +▁score -10.3557 +▁Fri -10.356 +▁hip -10.3565 +rib -10.3566 +hand -10.3574 +▁Richard -10.3584 +▁Thursday -10.3584 +▁chemotherapy -10.3584 +▁Senate -10.3584 +▁remained -10.3585 +▁approaches -10.3586 +gle -10.3586 +▁peace -10.3586 +▁clinic -10.3587 +icle -10.3593 +▁spin -10.3594 +▁hospitals -10.3595 +▁appeared -10.3599 +ram -10.3612 +▁tasks -10.3616 +chap -10.3618 +▁Pennsylvania -10.3621 +▁chocolate -10.3621 +▁experiencing -10.3621 +▁veterinarian -10.3621 +ibility -10.3622 +▁interfere -10.3623 +▁appearance -10.363 +▁males -10.3635 +▁arms -10.3648 +▁increasingly -10.365 +▁ideal -10.3654 +▁necessarily -10.3658 +▁disappear -10.3658 +▁disrupt -10.3658 +▁shark -10.3658 +▁clothing -10.3658 +▁ADHD -10.3658 +▁church -10.3658 +▁gave -10.3659 +▁chair -10.3661 +▁kidneys -10.3664 +▁weakness -10.3664 +▁poison -10.3668 +▁Photo -10.3672 +▁row -10.3679 +lon -10.3686 +▁absorb -10.3687 +▁pediatric -10.3693 +berg -10.3693 +▁elderly -10.3695 +▁pretty -10.3695 +▁prompt -10.3695 +▁Jews -10.3695 +▁coordinate -10.3696 +▁door -10.3696 +load -10.3698 +▁sustainable -10.37 +GE -10.3702 +▁alert -10.3703 +▁edge -10.3704 +▁remaining -10.3706 +▁affecting -10.3712 +▁exact -10.3715 +▁fuels -10.3718 +MP -10.3719 +win -10.372 +▁delivery -10.3721 +SI -10.3722 +▁Forest -10.3726 +▁budget -10.3732 +▁proportion -10.3732 +▁brush -10.3732 +▁television -10.3732 +▁jump -10.3732 +▁Year -10.3735 +▁organisms -10.3737 +▁cutting -10.3742 +migr -10.3752 +▁extract -10.3752 +▁govern -10.3763 +▁celebrate -10.3769 +▁legislation -10.3769 +▁membrane -10.3769 +▁stimulate -10.3769 +▁uterus -10.3769 +▁widespread -10.3769 +▁transform -10.3772 +▁successfully -10.3773 +▁dollars -10.3779 +▁CT -10.378 +▁outer -10.3795 +▁Through -10.3807 +▁conference -10.3807 +▁relevant -10.3807 +▁kilometers -10.3807 +▁western -10.3807 +▁intense -10.3807 +▁giant -10.3807 +▁argue -10.3808 +▁partnership -10.3808 +▁rural -10.3809 +▁closer -10.3813 +▁gall -10.3817 +▁inner -10.3822 +▁processing -10.3827 +oke -10.3828 +▁regulations -10.3842 +▁Pu -10.3842 +▁Surgery -10.3844 +▁module -10.3844 +▁shock -10.3847 +being -10.3849 +▁bond -10.3849 +▁Will -10.3851 +▁Clinic -10.3856 +ez -10.3862 +IL -10.3863 +▁aspects -10.3863 +These -10.3867 +▁greatly -10.388 +PR -10.3881 +▁discomfort -10.3882 +▁prohibit -10.3882 +▁combat -10.3882 +▁novel -10.3883 +▁Old -10.3885 +▁Bri -10.3886 +TH -10.3892 +▁movements -10.3896 +TS -10.3896 +▁III -10.39 +ood -10.3903 +▁managed -10.3916 +▁Pan -10.3917 +▁Georgia -10.392 +▁fundamental -10.392 +▁emotion -10.3922 +▁employment -10.3923 +▁Kids -10.3923 +▁array -10.3923 +ike -10.3926 +▁Cell -10.3927 +UN -10.3929 +▁germ -10.3935 +▁relationships -10.3943 +▁pictures -10.3947 +▁forests -10.395 +▁earn -10.3951 +▁digest -10.3952 +▁Chicago -10.3958 +▁correspond -10.3958 +▁Middle -10.3958 +▁cardiac -10.3958 +▁afford -10.3958 +▁remind -10.3959 +▁Convention -10.396 +Con -10.3975 +onic -10.3981 +▁Force -10.3984 +▁played -10.3985 +But -10.3987 +emic -10.3995 +▁Michigan -10.3996 +▁allergy -10.3996 +▁migraine -10.3996 +▁Parkinson -10.3996 +▁butter -10.3997 +▁feelings -10.3998 +▁quarter -10.3999 +▁mood -10.4 +▁flag -10.4003 +▁connected -10.4004 +▁PM -10.4007 +▁Op -10.401 +▁trauma -10.4013 +CR -10.4034 +▁battery -10.4035 +▁leaving -10.4035 +▁grass -10.4036 +▁Young -10.4037 +▁cooking -10.4053 +▁principles -10.4054 +▁concentrations -10.4062 +▁border -10.4073 +▁Boston -10.4073 +__ -10.4079 +▁lining -10.408 +▁mineral -10.4084 +▁wave -10.4085 +▁effectiveness -10.4091 +ounce -10.4092 +AIDS -10.4093 +▁Thus -10.4095 +▁mosquito -10.4099 +▁beans -10.4101 +▁signed -10.4106 +▁endangered -10.4112 +▁principal -10.4112 +▁straight -10.4112 +▁Arctic -10.4112 +▁storage -10.4112 +scope -10.4118 +▁Step -10.4122 +▁tail -10.4126 +▁Flu -10.4128 +run -10.4134 +▁Reviewer -10.4136 +▁seed -10.414 +▁sale -10.4149 +▁Should -10.415 +▁comparison -10.415 +▁statistics -10.415 +unk -10.4152 +▁vehicles -10.4158 +▁topics -10.416 +▁Gl -10.4161 +▁spending -10.4175 +▁Prevent -10.4182 +ford -10.4185 +chemistry -10.4189 +▁cheese -10.4189 +olar -10.4191 +▁preserve -10.4192 +▁Gene -10.4194 +▁assistant -10.4197 +with -10.4197 +▁bind -10.4199 +▁Solar -10.4206 +▁custom -10.4221 +raw -10.4228 +▁galaxy -10.4228 +▁osteoporosis -10.4228 +▁interview -10.4229 +▁snack -10.423 +hether -10.4236 +▁Select -10.4243 +▁happened -10.4251 +▁poisoning -10.4257 +power -10.4259 +▁nausea -10.4268 +▁honor -10.4268 +▁barrier -10.4268 +▁wealth -10.4268 +▁experiments -10.4279 +▁End -10.4287 +▁carefully -10.4292 +▁container -10.4292 +▁Wi -10.4295 +▁Near -10.4296 +▁Arab -10.4306 +▁Britain -10.4307 +▁Census -10.4307 +▁holiday -10.4307 +▁Korea -10.431 +▁indicator -10.4326 +direct -10.4335 +▁sn -10.434 +▁Associate -10.4347 +▁possibility -10.4347 +▁investigation -10.4347 +▁households -10.4347 +▁sweat -10.4347 +▁polar -10.4353 +mount -10.4361 +bur -10.4362 +▁objective -10.4367 +word -10.4375 +▁sufficient -10.4377 +sign -10.4381 +cum -10.4382 +strict -10.4385 +ata -10.4385 +▁Sub -10.4386 +▁diagnostic -10.4386 +▁ultrasound -10.4386 +▁daughter -10.4386 +▁Thomas -10.4386 +▁Southern -10.4386 +▁Feb -10.4387 +▁urge -10.4412 +FA -10.4413 +▁Healthy -10.4414 +ini -10.4416 +▁closed -10.4419 +▁Atlantic -10.4426 +▁crucial -10.4426 +▁galaxies -10.4426 +▁valuable -10.4426 +▁implant -10.4426 +▁stories -10.4426 +▁weapon -10.4426 +▁sharp -10.4426 +▁strains -10.4439 +▁Ed -10.4441 +▁ban -10.4443 +▁heal -10.4446 +▁differ -10.446 +▁insect -10.4463 +▁equivalent -10.4466 +▁suicide -10.4466 +▁university -10.4466 +vention -10.447 +▁occurring -10.4473 +▁selected -10.4482 +▁Did -10.449 +▁PC -10.4491 +olic -10.4493 +▁frame -10.4498 +▁Physical -10.4506 +▁paid -10.4507 +▁crop -10.4507 +▁Genetic -10.451 +▁menu -10.4527 +▁Rh -10.4531 +▁compound -10.4533 +▁Such -10.4535 +▁concluded -10.4537 +▁Oregon -10.4547 +▁arrest -10.4547 +tail -10.455 +▁represents -10.455 +▁pesticides -10.4553 +flow -10.4554 +▁trace -10.4554 +▁restore -10.457 +When -10.4583 +▁protecting -10.4585 +▁acquire -10.4587 +▁camp -10.4591 +▁annually -10.4606 +▁warn -10.4615 +▁ingredients -10.4616 +therapy -10.4621 +▁ahead -10.4626 +▁pancreas -10.4628 +▁Next -10.4628 +▁ongoing -10.4629 +▁athletes -10.4651 +▁abdomen -10.4668 +▁curriculum -10.4668 +▁swallow -10.4668 +▁Patients -10.4668 +▁hurt -10.4669 +▁Class -10.4669 +vir -10.4675 +mile -10.4678 +▁Plant -10.4683 +▁lifetime -10.4686 +▁foundation -10.4688 +▁onset -10.4691 +del -10.4694 +▁Skin -10.4697 +than -10.4702 +▁Rock -10.4702 +nia -10.4708 +▁Christ -10.4709 +▁agriculture -10.4709 +▁vaccinated -10.4709 +▁communicate -10.4709 +▁police -10.4709 +▁pathogen -10.4711 +▁characterized -10.4714 +▁shared -10.4716 +▁Learning -10.4717 +▁Key -10.4718 +▁Nu -10.4719 +PF -10.4723 +▁discover -10.4725 +▁processed -10.4734 +plain -10.4741 +▁Unfortunately -10.4751 +▁conclusion -10.4751 +▁excellent -10.4751 +▁nuts -10.4765 +mann -10.4765 +▁Mark -10.4772 +syn -10.4782 +▁surprising -10.4792 +▁carbohydrates -10.4792 +▁derived -10.4792 +▁permit -10.4792 +PH -10.48 +mul -10.4816 +shore -10.4821 +rum -10.4825 +▁sustain -10.4827 +zi -10.4829 +▁accomplish -10.4833 +▁marriage -10.4833 +ancy -10.4834 +▁felt -10.4834 +▁Search -10.4835 +▁alarm -10.4836 +▁scores -10.4841 +▁Bas -10.4848 +▁beat -10.4855 +▁Gi -10.4861 +▁apart -10.4866 +▁taxes -10.4868 +▁Republic -10.4869 +▁apnea -10.4875 +▁cigarette -10.4875 +▁seizure -10.4875 +▁dentist -10.4875 +▁employees -10.4875 +▁compile -10.4876 +▁Shi -10.4879 +▁Yet -10.4889 +key -10.4893 +▁beta -10.4901 +▁throw -10.4906 +▁wonder -10.4914 +▁famous -10.4917 +▁genome -10.4917 +▁coronary -10.4918 +▁chain -10.4918 +▁hat -10.4935 +▁delivered -10.4935 +▁west -10.4937 +▁behavioral -10.4938 +▁Russia -10.494 +▁Product -10.4953 +▁Policy -10.4959 +▁Fire -10.496 +▁nearby -10.4965 +") -10.4982 +▁View -10.4992 +▁react -10.4992 +▁forecast -10.5001 +▁removal -10.5001 +▁exceed -10.5001 +▁thread -10.5002 +▁onto -10.5003 +▁Local -10.5003 +▁sold -10.5007 +▁Page -10.501 +hir -10.5011 +▁Roman -10.5017 +▁UV -10.5024 +▁Cap -10.5024 +ntil -10.5025 +▁fair -10.5034 +icular -10.5035 +▁discrimination -10.5044 +▁tank -10.5045 +▁attached -10.5045 +▁sunlight -10.5048 +▁Char -10.505 +▁IV -10.5057 +▁controlling -10.5063 +down -10.5063 +ital -10.5064 +calorie -10.5078 +▁Mayo -10.5079 +▁deadly -10.5085 +verse -10.5086 +▁Practice -10.5086 +▁participation -10.5086 +▁Brazil -10.5086 +▁harvest -10.5086 +▁Always -10.5086 +▁emit -10.5087 +▁relief -10.5089 +depth -10.5089 +▁contaminated -10.5092 +▁resolution -10.5093 +scale -10.5096 +▁minute -10.5102 +▁measurements -10.5124 +▁nutritional -10.5129 +▁administration -10.5129 +▁impairment -10.5129 +▁Remember -10.513 +▁diverse -10.513 +▁practical -10.5132 +aged -10.5135 +▁newborn -10.5139 +▁Recent -10.514 +▁lay -10.5153 +▁decided -10.5156 +▁retina -10.5158 +▁WHO -10.5163 +▁BMI -10.5163 +▁Way -10.5166 +profit -10.517 +▁Community -10.5172 +▁Elsevier -10.5172 +▁struggle -10.5172 +▁whom -10.5177 +▁fitness -10.5178 +▁instruction -10.518 +▁rays -10.5182 +▁blow -10.5186 +▁volunteers -10.5189 +▁sudden -10.5192 +▁input -10.5196 +▁wage -10.5197 +▁Special -10.5201 +oxin -10.5202 +IV -10.5205 +▁melanoma -10.5215 +▁sensitivity -10.5215 +▁episode -10.5215 +▁implications -10.5216 +▁entry -10.5216 +▁Hav -10.5218 +▁implementation -10.5229 +▁USA -10.523 +▁express -10.5238 +itz -10.524 +?" -10.5244 +▁astronomers -10.5246 +▁prevented -10.5249 +▁enroll -10.5258 +▁Sleep -10.5258 +▁racial -10.5258 +▁promise -10.5258 +▁Centre -10.5258 +▁adverse -10.5259 +▁pool -10.5259 +▁elected -10.526 +▁route -10.5263 +neu -10.5263 +▁vessel -10.527 +▁Dan -10.5278 +oxide -10.5293 +lb -10.5298 +ware -10.5301 +▁metabolism -10.5302 +clusive -10.5302 +▁Clean -10.5303 +▁Word -10.5303 +illa -10.5306 +▁bigger -10.5306 +watt -10.5308 +▁tried -10.5313 +▁AD -10.5319 +Based -10.5323 +▁Brain -10.5341 +▁careful -10.5341 +▁song -10.5342 +▁partial -10.5344 +▁reproductive -10.5345 +▁preparation -10.5345 +▁compress -10.5345 +▁Coast -10.5346 +TP -10.5348 +▁attach -10.5349 +▁missing -10.5351 +osa -10.5357 +care -10.5358 +▁mosquitoes -10.536 +▁hundred -10.536 +▁Window -10.5361 +lop -10.5364 +▁insects -10.5366 +▁Oct -10.5366 +▁biology -10.5367 +RS -10.5376 +▁Ann -10.5377 +▁sand -10.5383 +▁comet -10.5383 +▁directory -10.5383 +Total -10.5388 +▁occupation -10.5389 +▁Zealand -10.5389 +▁apparent -10.5389 +▁familiar -10.5389 +▁psychological -10.5389 +▁losing -10.539 +▁leadership -10.539 +avi -10.5393 +▁Med -10.5394 +▁authorities -10.5397 +▁sleeping -10.5397 +▁reverse -10.54 +▁Lab -10.541 +▁Set -10.542 +▁Brown -10.5433 +▁bulb -10.5434 +▁Charles -10.5435 +▁drivers -10.5435 +▁Prof -10.5439 +▁Sever -10.5446 +▁achievement -10.5446 +▁skill -10.5452 +▁healthier -10.5463 +▁TB -10.5464 +cut -10.5471 +▁suspect -10.5477 +▁Arizona -10.5477 +▁religion -10.5477 +▁Chronic -10.5477 +via -10.5494 +▁intensity -10.5498 +▁sexually -10.55 +▁marked -10.5516 +▁Exercise -10.5522 +▁Suprem -10.5522 +▁moisture -10.5523 +▁Fund -10.5528 +weight -10.5532 +▁update -10.5533 +▁transportation -10.5534 +▁trained -10.5535 +under -10.554 +pel -10.5541 +▁symptom -10.5543 +CI -10.5543 +RC -10.5548 +fully -10.555 +▁rose -10.5554 +bid -10.556 +ature -10.5562 +▁eastern -10.5567 +▁premature -10.5567 +▁susceptible -10.5567 +▁Animal -10.5567 +▁spectrum -10.5568 +▁indoor -10.5569 +▁manner -10.5574 +▁BPA -10.5585 +▁reality -10.5586 +▁manager -10.559 +▁Hand -10.5605 +▁distinguish -10.5611 +▁Problem -10.5611 +▁substitute -10.5611 +▁housing -10.5611 +▁pulse -10.5611 +▁Mental -10.5612 +▁interface -10.5612 +▁loan -10.5613 +▁browser -10.5616 +product -10.5616 +▁transition -10.5618 +▁Cat -10.562 +▁Ku -10.5621 +▁curve -10.5627 +▁Bru -10.5628 +▁rely -10.5632 +▁certainly -10.5648 +▁favor -10.5654 +▁Previous -10.5656 +▁default -10.5656 +▁molecular -10.5656 +▁spine -10.5656 +▁street -10.5656 +▁worst -10.5656 +▁adopt -10.5657 +▁plus -10.5658 +▁marrow -10.5659 +coming -10.5664 +face -10.5669 +▁historic -10.5682 +▁Bill -10.5694 +▁adopted -10.5702 +Object -10.5702 +▁Alaska -10.5702 +▁artificial -10.5702 +▁elevated -10.5702 +▁facility -10.5702 +▁identity -10.5702 +▁precise -10.5702 +▁scholar -10.5702 +▁crack -10.5702 +▁valve -10.5702 +▁Sunday -10.5704 +▁pathway -10.5705 +▁commitment -10.5706 +▁DO -10.572 +▁functional -10.5721 +rous -10.5724 +science -10.5724 +NC -10.5729 +▁molecule -10.573 +▁rarely -10.5732 +They -10.5733 +▁proven -10.574 +ME -10.5741 +▁import -10.5743 +▁Secretary -10.5747 +▁perspective -10.5747 +▁specified -10.5747 +▁crash -10.5747 +▁edition -10.5754 +cher -10.5756 +▁ultimately -10.5756 +▁resistant -10.5761 +▁package -10.5775 +▁Teacher -10.578 +▁CD -10.5784 +▁stronger -10.5788 +▁likelihood -10.5793 +▁Normal -10.5793 +▁mistake -10.5794 +ken -10.5795 +▁Wood -10.5797 +▁anywhere -10.5799 +vac -10.5802 +▁Drink -10.5804 +▁Area -10.5818 +▁install -10.5824 +No -10.5827 +▁fourth -10.5832 +▁businesses -10.5835 +▁wo -10.5835 +▁batteries -10.5839 +▁circle -10.5839 +▁cluster -10.5839 +▁executive -10.5839 +▁Adult -10.5839 +▁Hyper -10.5839 +▁saturated -10.5843 +▁prefer -10.5845 +mil -10.5847 +▁Action -10.5849 +▁bug -10.5849 +LD -10.5849 +▁conclude -10.585 +▁capable -10.5851 +action -10.5852 +▁gold -10.5854 +atin -10.5879 +▁Peter -10.5881 +▁hazard -10.5883 +▁Economic -10.5885 +▁Minnesota -10.5885 +▁appointment -10.5885 +▁manufacturing -10.5885 +▁master -10.5885 +▁coral -10.5885 +Related -10.5887 +▁generated -10.5889 +▁Super -10.5892 +To -10.5901 +▁Lead -10.5904 +▁nutrient -10.5908 +▁Native -10.5911 +▁bath -10.5915 +hour -10.592 +shaped -10.5928 +▁Diego -10.5931 +▁cereal -10.5931 +▁sensation -10.5931 +▁dream -10.5931 +bacter -10.5933 +▁Army -10.5935 +▁everyday -10.5942 +rian -10.595 +trial -10.5954 +▁raw -10.5956 +phen -10.5957 +▁harder -10.5959 +▁qualified -10.5978 +▁Francisco -10.5978 +▁beverages -10.598 +▁provision -10.598 +house -10.5983 +▁originally -10.5991 +cancerous -10.5995 +awa -10.6007 +▁Four -10.601 +▁criteria -10.6024 +▁MRI -10.6024 +▁description -10.6024 +▁Section -10.6028 +▁mixed -10.6037 +▁coverage -10.6038 +▁sport -10.6043 +▁failed -10.6047 +OL -10.6048 +▁Phil -10.6064 +▁hurricane -10.6071 +▁yield -10.6071 +▁exciting -10.6071 +▁Valley -10.6071 +▁YOU -10.6071 +▁committed -10.6072 +▁spell -10.608 +HD -10.6081 +▁File -10.6094 +▁preventive -10.6098 +▁Parents -10.6101 +non -10.6102 +▁Eating -10.6104 +▁functioning -10.6115 +stein -10.6115 +▁gluten -10.6118 +▁contributing -10.6118 +▁explanation -10.6118 +▁Light -10.6118 +▁amino -10.6122 +▁classified -10.6122 +▁Online -10.6131 +oxy -10.6133 +▁Eat -10.6134 +▁Still -10.6138 +▁Posted -10.614 +▁Month -10.6141 +▁fighting -10.6143 +sym -10.6145 +▁chicken -10.6166 +▁defense -10.6166 +▁discharge -10.6166 +▁esophagus -10.6166 +▁inherited -10.6166 +▁strike -10.6166 +▁nitrogen -10.6166 +▁persist -10.6167 +▁comfortable -10.617 +ground -10.617 +assembl -10.6171 +▁focuses -10.6172 +▁aimed -10.6178 +▁ease -10.6182 +▁safely -10.6195 +▁centre -10.6197 +EG -10.6199 +▁random -10.6212 +▁Google -10.6213 +▁dedicated -10.6213 +▁rhythm -10.6213 +▁suppress -10.6213 +▁Contact -10.6213 +▁assignment -10.6213 +▁colour -10.6213 +▁valid -10.6214 +▁sinus -10.6214 +▁wheat -10.6214 +▁favorite -10.6216 +▁breathe -10.6225 +▁Fo -10.6231 +▁discussed -10.6244 +▁corner -10.6244 +▁usual -10.6248 +▁maintaining -10.625 +▁sum -10.6253 +▁Species -10.6261 +▁collaboration -10.6261 +▁diabetic -10.6261 +▁equation -10.6261 +▁Visit -10.6262 +atomic -10.6271 +▁tag -10.6274 +ility -10.6276 +usion -10.6281 +law -10.6281 +▁Nor -10.6288 +▁demonstrated -10.6306 +NT -10.6307 +▁thorough -10.6309 +▁Effect -10.6309 +▁pulmonary -10.6309 +▁belong -10.6311 +▁Gro -10.6315 +▁editor -10.6321 +▁divide -10.6323 +▁capture -10.6324 +He -10.6325 +hap -10.633 +▁driver -10.6335 +▁detection -10.6339 +▁coastal -10.6348 +▁predicted -10.6352 +foot -10.6354 +▁settle -10.6357 +▁breakfast -10.6358 +▁circuit -10.6358 +▁measuring -10.6358 +▁biopsy -10.6358 +▁catheter -10.6358 +▁injured -10.6358 +▁identifying -10.6358 +▁Server -10.6361 +SO -10.6366 +▁grain -10.6367 +fire -10.6372 +▁artist -10.6378 +▁heating -10.6379 +▁extended -10.638 +activity -10.6386 +angle -10.6388 +▁cub -10.6393 +▁Access -10.6406 +▁Wisconsin -10.6406 +▁poultry -10.6406 +▁profile -10.6406 +▁Three -10.6406 +▁whale -10.6407 +▁abnormalities -10.641 +▁Hill -10.6412 +physi -10.6415 +▁graphic -10.6415 +▁blog -10.6416 +▁Jr -10.6426 +▁Russian -10.6428 +▁standing -10.6441 +arrow -10.6448 +HealthDay -10.6455 +▁Syndrome -10.6455 +▁criminal -10.6455 +▁leukemia -10.6455 +▁physics -10.6455 +▁Consider -10.6455 +▁Reserve -10.6455 +▁facing -10.6455 +▁leak -10.6456 +▁suit -10.6458 +▁Often -10.646 +▁Place -10.6462 +▁shorter -10.6462 +▁safer -10.6467 +▁justice -10.6476 +▁indicated -10.6478 +▁Grade -10.6483 +▁Marine -10.649 +▁installed -10.6503 +including -10.6503 +▁Assessment -10.6504 +▁channel -10.6504 +▁dinosaur -10.6504 +▁precaution -10.6504 +▁modified -10.6504 +▁Finally -10.6504 +▁ozone -10.6504 +▁stable -10.6521 +▁entirely -10.6526 +▁measurement -10.6526 +Annual -10.6528 +▁Leg -10.6545 +front -10.6552 +▁Missouri -10.6553 +▁Mississippi -10.6553 +▁Statistics -10.6553 +▁concentrate -10.6553 +▁infrastructure -10.6553 +▁illegal -10.6553 +▁toddler -10.6553 +▁prison -10.6553 +▁taught -10.6554 +▁opposite -10.6554 +▁fellow -10.6555 +▁NOT -10.6555 +▁roll -10.6556 +▁stopped -10.6557 +▁strongly -10.6561 +▁physically -10.6571 +▁Sam -10.6581 +▁Micro -10.6591 +▁Lincoln -10.6603 +digenous -10.6603 +▁conversation -10.6603 +▁exercising -10.6603 +▁resolve -10.6603 +▁programming -10.6603 +▁interval -10.6607 +▁rocket -10.6612 +▁Eye -10.6613 +ication -10.6615 +▁Ten -10.6624 +▁Current -10.663 +cel -10.6642 +▁Station -10.6648 +▁categories -10.6652 +▁variant -10.6652 +▁introduction -10.6653 +▁stool -10.6653 +▁domain -10.6653 +▁tongue -10.6653 +▁Scott -10.6654 +▁bookmark -10.6656 +▁informed -10.6656 +▁loop -10.6658 +▁belt -10.6659 +▁Republican -10.6659 +▁passage -10.6666 +treat -10.6666 +▁spray -10.6671 +▁forced -10.6672 +▁sole -10.6684 +▁surge -10.6688 +▁accepted -10.6689 +▁biodiversity -10.6702 +▁diversity -10.6702 +▁impossible -10.6702 +▁deficit -10.6702 +▁Signs -10.6702 +▁Weather -10.6702 +▁false -10.6703 +▁tap -10.6703 +▁caught -10.6704 +▁flash -10.6705 +▁agreed -10.6707 +▁offering -10.671 +▁atoms -10.6712 +▁arise -10.6713 +▁speaking -10.6714 +▁particle -10.6724 +▁Sim -10.6728 +FL -10.6728 +▁Greek -10.6753 +▁Illinois -10.6753 +▁committee -10.6753 +▁respectively -10.6753 +▁Gulf -10.6753 +▁reliable -10.6753 +pine -10.6754 +▁finally -10.6754 +▁cream -10.6763 +how -10.6763 +position -10.6769 +▁dynamic -10.6769 +▁Additionally -10.6772 +New -10.6775 +▁Bible -10.6782 +ife -10.6784 +▁opened -10.679 +new -10.6797 +▁malaria -10.6803 +▁asbestos -10.6803 +▁faith -10.6803 +▁client -10.6803 +▁escape -10.6803 +▁Blue -10.6803 +▁assigned -10.6803 +▁knew -10.6804 +▁exchange -10.6804 +▁password -10.6804 +▁expressed -10.6805 +▁absorbed -10.6814 +▁kit -10.6816 +▁achieved -10.6817 +▁worsen -10.6832 +▁infect -10.685 +▁suffered -10.6851 +▁habit -10.6851 +▁Antarctic -10.6854 +▁accuracy -10.6854 +▁caregiver -10.6854 +▁complain -10.6854 +▁salmon -10.6854 +▁neighborhood -10.6854 +▁Clark -10.6854 +▁empty -10.6855 +▁loose -10.6855 +▁reaching -10.686 +ridge -10.6862 +▁grand -10.6864 +▁combine -10.6882 +▁Latin -10.6883 +▁cycl -10.6891 +▁Tell -10.6892 +▁soda -10.6899 +▁advocate -10.6905 +▁caffeine -10.6905 +▁subsequent -10.6905 +▁temporary -10.6905 +▁turtle -10.6905 +▁drill -10.6905 +▁meant -10.6912 +eck -10.6913 +▁personality -10.6922 +mpl -10.6924 +fusion -10.6926 +▁selection -10.6933 +sky -10.6937 +▁healing -10.694 +▁detail -10.6941 +▁Language -10.6956 +▁mammals -10.6956 +▁province -10.6956 +▁Kingdom -10.6956 +▁smooth -10.6956 +▁radical -10.6956 +▁lunch -10.6957 +▁stuff -10.6964 +▁Need -10.6965 +ING -10.6968 +▁watching -10.6971 +▁quit -10.6978 +IM -10.6991 +▁Updated -10.7005 +▁Materials -10.7008 +▁continuous -10.7008 +▁hygiene -10.7008 +▁judge -10.7008 +▁mercury -10.7008 +▁truth -10.7008 +▁Louis -10.7008 +▁Stroke -10.7008 +▁Adam -10.7009 +▁split -10.7012 +▁developmental -10.7018 +ension -10.702 +plan -10.7026 +▁Show -10.7026 +▁presentation -10.7033 +ENT -10.7035 +▁aspect -10.7036 +▁Fair -10.7036 +▁drawn -10.704 +IG -10.7042 +▁falling -10.7057 +▁fetus -10.706 +▁Engineering -10.706 +▁Week -10.706 +▁literature -10.706 +▁disk -10.7068 +▁employer -10.7069 +▁clock -10.7071 +▁parties -10.7073 +▁Mer -10.7074 +counter -10.7087 +▁Mari -10.7088 +▁posted -10.7089 +▁cooling -10.709 +▁Hall -10.7095 +EX -10.7097 +▁Egypt -10.7109 +▁Alcohol -10.7112 +▁appetite -10.7112 +▁astronaut -10.7112 +▁operator -10.7112 +▁Angeles -10.7112 +▁Support -10.7112 +▁suspected -10.7113 +▁putt -10.712 +▁bull -10.7124 +▁shut -10.7126 +▁Basic -10.7127 +▁gone -10.7128 +▁rev -10.7135 +▁donor -10.7135 +▁seasonal -10.7138 +▁outline -10.7147 +▁boy -10.7158 +▁DC -10.7161 +▁chamber -10.7164 +▁understood -10.7164 +▁Consumer -10.7164 +▁Figure -10.7164 +▁happy -10.7164 +▁ovarian -10.7164 +▁diameter -10.7164 +▁Ireland -10.7164 +▁threatened -10.7164 +ographic -10.7171 +TR -10.7176 +II -10.7177 +▁tradition -10.7178 +▁observe -10.718 +oz -10.718 +▁vegetable -10.7197 +empt -10.7203 +▁dealing -10.7203 +▁inserted -10.7206 +▁potassium -10.7217 +▁removing -10.7217 +▁flavor -10.7217 +bearing -10.7217 +▁limb -10.7217 +cover -10.7222 +▁representative -10.7222 +▁export -10.7223 +▁gradually -10.7224 +ius -10.723 +▁Che -10.7237 +▁educate -10.7246 +▁organized -10.7246 +▁thousand -10.7252 +list -10.7252 +▁filled -10.7252 +▁registered -10.7256 +also -10.726 +▁promoting -10.727 +▁Mount -10.727 +▁neither -10.727 +▁Short -10.7271 +▁encounter -10.7271 +▁bloodstream -10.7276 +▁replacement -10.728 +▁Link -10.7281 +night -10.7285 +TER -10.7289 +▁county -10.7293 +▁plane -10.7296 +▁noise -10.7297 +▁Create -10.7303 +▁Tool -10.7306 +making -10.7308 +▁THE -10.7312 +▁breed -10.7313 +▁shoulder -10.7318 +▁Catholic -10.7323 +▁Spain -10.7323 +▁peanut -10.7323 +▁snake -10.7324 +▁Name -10.7325 +▁Italy -10.7327 +made -10.7331 +▁Gar -10.7333 +▁breeding -10.7333 +income -10.7339 +▁advise -10.7343 +▁loved -10.7346 +dec -10.736 +▁Rep -10.7362 +▁Fat -10.7372 +ji -10.7376 +▁Depression -10.7376 +▁USDA -10.7376 +▁sunscreen -10.7377 +▁confidence -10.7377 +▁encouraged -10.7379 +▁evaluated -10.738 +▁carrying -10.7399 +▁Code -10.7407 +▁defect -10.7417 +▁marker -10.7421 +▁irregular -10.743 +▁survivor -10.743 +▁unemployment -10.743 +▁Improv -10.743 +▁Monitor -10.743 +▁genital -10.743 +▁Mountain -10.743 +▁chapter -10.743 +▁smell -10.743 +▁framework -10.7431 +▁translate -10.7432 +▁smokers -10.7437 +▁Mary -10.7443 +▁Working -10.7443 +▁drawing -10.7457 +▁cm -10.7472 +▁trick -10.7475 +color -10.7483 +▁absolute -10.7484 +▁circulation -10.7484 +▁magnitude -10.7484 +▁protocol -10.7484 +▁Number -10.7484 +▁caution -10.7484 +▁Smith -10.7484 +▁mixture -10.7485 +▁internet -10.7488 +▁declined -10.7488 +▁odd -10.7489 +▁Fall -10.7494 +▁dense -10.7498 +▁correctly -10.7503 +▁blocked -10.7508 +wood -10.752 +▁tall -10.7524 +▁coat -10.7525 +▁Understand -10.7526 +ssel -10.7528 +▁Alabama -10.7538 +▁cataract -10.7538 +▁wheel -10.7538 +▁Eastern -10.7539 +▁trait -10.7539 +▁wake -10.7543 +▁cow -10.7547 +▁repeat -10.7548 +where -10.7562 +▁minimize -10.7572 +▁McC -10.7588 +friendly -10.7589 +▁incident -10.7593 +▁Biology -10.7596 +▁pediatrician -10.7597 +▁Unlike -10.7597 +▁directed -10.7599 +known -10.7612 +▁administered -10.7622 +▁EU -10.763 +▁employ -10.7645 +▁tip -10.7646 +Ex -10.7647 +▁Conference -10.7648 +▁essay -10.7648 +▁telephone -10.7648 +▁Editor -10.7648 +▁Minister -10.7648 +▁Iowa -10.7649 +▁replaced -10.7654 +▁potatoes -10.7655 +▁wire -10.7655 +▁Creat -10.7656 +IR -10.7659 +easing -10.7663 +▁Media -10.7675 +class -10.7675 +▁authority -10.7675 +▁fell -10.7677 +▁zoo -10.7697 +▁neighbor -10.7703 +▁Infection -10.7703 +▁Saturday -10.7703 +▁rabies -10.7703 +▁comprise -10.7703 +▁reject -10.7704 +▁radioactive -10.7705 +▁Down -10.772 +▁Pass -10.7727 +gene -10.7735 +▁happening -10.774 +▁continuing -10.7759 +▁succeed -10.7759 +▁Method -10.7759 +▁composition -10.7759 +▁burden -10.7759 +▁swimming -10.7759 +▁segment -10.7759 +▁varies -10.7762 +▁sitting -10.7763 +bro -10.777 +▁placebo -10.7775 +▁payment -10.7779 +pm -10.7781 +▁seal -10.7788 +▁Safe -10.7791 +▁Put -10.7791 +dding -10.7799 +▁forget -10.7801 +vul -10.7804 +▁geographic -10.7815 +▁analyse -10.7815 +▁cheap -10.7815 +Reuters -10.7816 +▁Albert -10.7816 +shoot -10.7816 +▁Lord -10.7817 +▁dropped -10.7817 +▁refus -10.7818 +sect -10.7822 +▁extinction -10.7823 +▁chip -10.7833 +town -10.7848 +▁pea -10.7856 +▁complicated -10.7871 +▁industries -10.7871 +▁shelter -10.7871 +▁Index -10.7871 +▁Discover -10.7872 +▁Corp -10.7873 +▁outcome -10.7873 +eptic -10.7876 +▁bomb -10.788 +▁manufacture -10.7893 +▁destroyed -10.7893 +chlor -10.7898 +▁grams -10.7899 +▁absorption -10.79 +▁substantial -10.7904 +▁Unit -10.7906 +other -10.7922 +▁transmit -10.7925 +▁reward -10.7926 +vascular -10.7927 +▁Certain -10.7927 +▁category -10.7927 +▁perceive -10.7927 +▁Member -10.7928 +▁nasal -10.7928 +▁medium -10.7928 +▁Watch -10.7928 +▁span -10.7931 +▁Think -10.7931 +▁regulation -10.7932 +▁Hawaii -10.7949 +▁branch -10.7972 +▁emerge -10.7973 +▁collision -10.7984 +▁methane -10.7984 +▁Saunders -10.7984 +▁Daniel -10.7984 +▁guard -10.7984 +▁kilo -10.7985 +▁institution -10.799 +▁Zie -10.7993 +▁calculate -10.8007 +operative -10.801 +▁charged -10.8015 +▁meteor -10.802 +▁tab -10.802 +▁Protect -10.8033 +▁insert -10.804 +▁maintenance -10.8041 +▁climb -10.8041 +▁Street -10.8041 +lau -10.8042 +eye -10.8044 +▁Design -10.8045 +▁strip -10.8047 +PO -10.8056 +▁soap -10.806 +chemical -10.8078 +▁seeking -10.8088 +▁Vol -10.809 +▁coughing -10.8093 +▁reform -10.8093 +▁statistical -10.8099 +▁urinary -10.8099 +▁Results -10.8099 +▁debris -10.8099 +▁truly -10.8099 +▁algae -10.8099 +▁untreated -10.8099 +▁Choose -10.8099 +certified -10.8099 +▁movie -10.8099 +facial -10.81 +▁era -10.81 +▁gun -10.812 +▁fairly -10.813 +group -10.8142 +▁Explore -10.8143 +biology -10.8143 +standing -10.8147 +jun -10.8149 +▁comfort -10.8151 +ilia -10.8157 +▁Emergency -10.8157 +▁arsenic -10.8157 +▁destruction -10.8157 +▁Usually -10.8157 +▁Breast -10.8157 +▁Level -10.8157 +▁retain -10.8157 +▁Furthermore -10.8157 +▁acres -10.8158 +▁Java -10.8164 +CN -10.8165 +▁joined -10.8187 +▁incorporate -10.8201 +▁invad -10.8211 +▁slave -10.8213 +▁Kansas -10.8215 +▁Kentucky -10.8215 +▁guarantee -10.8215 +▁illustrate -10.8215 +depressant -10.8215 +▁himself -10.8217 +▁suitable -10.8221 +▁Living -10.8221 +▁Johnson -10.8225 +▁visitors -10.8226 +▁Teen -10.8234 +▁counseling -10.8238 +▁Kar -10.8241 +PT -10.8246 +▁leaf -10.8261 +▁Star -10.8265 +▁Ana -10.8265 +▁dramatic -10.8271 +▁Between -10.8273 +▁challenging -10.8273 +▁circumstances -10.8273 +▁maternal -10.8273 +▁Joseph -10.8273 +▁Quality -10.8273 +▁neurological -10.8274 +▁immunization -10.8279 +induced -10.828 +just -10.8282 +▁ingredient -10.829 +school -10.8315 +▁captured -10.8315 +resistant -10.8317 +space -10.8321 +▁Map -10.8332 +▁Scotland -10.8332 +▁centuries -10.8332 +▁impaired -10.8332 +▁ancestor -10.8332 +▁bump -10.8333 +▁dramatically -10.8334 +digit -10.8337 +▁refine -10.8354 +▁Never -10.8356 +quest -10.8361 +EE -10.8362 +mel -10.8366 +box -10.8377 +▁Indiana -10.8378 +That -10.8378 +▁emphasiz -10.8391 +▁Internal -10.8391 +▁Title -10.8392 +▁genetically -10.8407 +▁Provide -10.8419 +wan -10.8426 +specific -10.8439 +worth -10.8439 +▁Tom -10.8443 +uca -10.8444 +▁mono -10.8448 +▁Communication -10.8451 +▁phrase -10.8451 +▁psychology -10.8451 +▁scenario -10.8451 +▁Jupiter -10.8451 +▁Taking -10.8455 +phi -10.8459 +▁Han -10.8471 +MHA -10.8475 +carbon -10.85 +▁Indonesia -10.8511 +▁automatically -10.8511 +▁eclipse -10.8511 +▁Vietnam -10.8511 +▁hunger -10.8511 +▁specify -10.8511 +▁remote -10.8511 +▁duration -10.8511 +▁doubt -10.8511 +▁brand -10.8511 +▁median -10.8515 +half -10.8526 +▁warmer -10.8547 +▁Additional -10.8548 +CV -10.8558 +▁Mil -10.8558 +▁scheduled -10.857 +▁moist -10.857 +▁Advance -10.8571 +▁census -10.8571 +▁draft -10.8571 +▁magazine -10.8571 +▁universities -10.8571 +▁Saturn -10.8572 +▁planned -10.8576 +▁Lung -10.858 +▁workplace -10.8582 +▁balanced -10.8584 +isation -10.8589 +▁Labor -10.8592 +▁girl -10.8599 +▁Aug -10.8604 +ometer -10.8614 +▁Neuro -10.8623 +▁Obesity -10.8632 +▁immunity -10.8632 +▁schizophrenia -10.8632 +▁Guidelines -10.8632 +▁migration -10.8632 +▁nationwide -10.8633 +▁laser -10.8644 +▁experimental -10.8654 +▁introduce -10.866 +▁mom -10.8674 +▁Tel -10.8676 +▁amyloid -10.8692 +▁therapeutic -10.8692 +▁Representative -10.8692 +▁guidance -10.8692 +▁newspaper -10.8692 +▁nursing -10.8692 +▁supposed -10.8692 +▁raising -10.8692 +▁absence -10.8693 +▁Autism -10.8693 +▁pigment -10.8693 +▁honey -10.8693 +▁defend -10.8693 +▁smart -10.8694 +▁Justice -10.8695 +▁Milk -10.87 +▁dying -10.8703 +▁immuno -10.8707 +▁register -10.8709 +▁nest -10.8709 +▁Calif -10.8715 +▁analyze -10.8719 +▁mentioned -10.8729 +▁cry -10.8741 +quarter -10.8749 +▁myth -10.8753 +▁Further -10.8753 +conscious -10.8754 +▁Hepatitis -10.8754 +▁Physics -10.8754 +▁Population -10.8754 +▁collapse -10.8754 +▁concussion -10.8754 +▁menstrual -10.8754 +▁recognition -10.8754 +▁swollen -10.8754 +▁commission -10.8754 +▁fetal -10.8754 +▁processor -10.8754 +▁Royal -10.8754 +▁roof -10.8754 +▁passes -10.8755 +▁mature -10.8759 +▁nitr -10.8765 +media -10.8768 +from -10.8769 +▁difficulties -10.8776 +traumatic -10.8789 +▁boil -10.8791 +▁reactor -10.8803 +craft -10.8812 +▁occasion -10.8814 +▁Assistant -10.8816 +▁Mexican -10.8816 +▁immigrant -10.8816 +▁proposal -10.8816 +▁minimal -10.8816 +▁warrant -10.8816 +▁Death -10.8816 +link -10.8816 +▁grew -10.8819 +▁bridge -10.8819 +▁implemented -10.885 +good -10.8851 +▁landscape -10.8878 +▁soldiers -10.8878 +▁ecological -10.8878 +▁Small -10.8878 +▁AND -10.8879 +▁parameter -10.8879 +▁managing -10.888 +▁jaw -10.888 +▁enforcement -10.888 +▁Grand -10.8887 +about -10.8888 +▁lenses -10.89 +▁prescribe -10.8905 +▁pole -10.8909 +▁Van -10.891 +▁surround -10.8939 +▁devastating -10.894 +▁identification -10.894 +▁mathematics -10.894 +▁soybean -10.894 +▁Iraq -10.894 +▁Bird -10.8942 +▁moral -10.8942 +▁Weight -10.8943 +versus -10.8944 +▁manual -10.8947 +▁whatever -10.8964 +▁mold -10.8965 +▁suddenly -10.8974 +▁Dent -10.8983 +▁recreation -10.9003 +▁execute -10.9003 +▁unhealthy -10.9003 +▁sibling -10.9003 +▁abilities -10.9003 +▁cattle -10.9003 +▁pilot -10.9003 +▁crystal -10.9003 +▁spider -10.9003 +▁Andrew -10.9004 +▁Large -10.9007 +▁cash -10.9022 +▁Bush -10.9031 +▁icon -10.9039 +▁Right -10.9047 +▁Lee -10.906 +▁acknowledge -10.9066 +▁constitution -10.9066 +▁Vermont -10.9066 +▁Specific -10.9066 +▁Depend -10.9067 +▁Bat -10.9067 +▁desert -10.9068 +▁Individual -10.9069 +sulf -10.9072 +▁accessible -10.9073 +▁psycho -10.9073 +▁meteorite -10.9076 +▁glyc -10.9076 +▁vice -10.9076 +▁declared -10.9078 +▁carries -10.9079 +▁OF -10.9084 +▁sac -10.9084 +▁dys -10.909 +▁tired -10.9092 +▁surprised -10.9097 +▁progression -10.9098 +▁Kat -10.9103 +▁inspect -10.9107 +ometry -10.9111 +▁citizen -10.9123 +▁calendar -10.913 +▁tornado -10.913 +▁zinc -10.913 +▁ignore -10.913 +▁allergen -10.913 +punctu -10.913 +▁Issue -10.9131 +▁Stress -10.9131 +▁cave -10.9132 +▁elementary -10.9136 +high -10.9137 +▁demonstrat -10.9139 +▁Getting -10.914 +▁counties -10.9144 +▁Pet -10.9147 +▁army -10.915 +▁Yes -10.9159 +▁lean -10.916 +▁colorectal -10.9194 +▁glaucoma -10.9194 +▁married -10.9194 +▁Jersey -10.9194 +▁margin -10.9194 +▁Carbon -10.9194 +▁overcome -10.9194 +▁withdraw -10.9194 +▁creature -10.9194 +▁Asthma -10.9195 +▁plot -10.9195 +▁Luther -10.9198 +▁Trade -10.9198 +Win -10.9208 +person -10.9209 +large -10.9232 +▁usage -10.9243 +▁expansion -10.9259 +▁stimulation -10.9259 +▁modify -10.9259 +▁mucus -10.9259 +▁copper -10.9259 +▁begun -10.926 +▁preference -10.9261 +[ -10.9267 +▁slight -10.9274 +▁kid -10.9281 +▁pure -10.9288 +▁recall -10.9288 +▁cast -10.9289 +▁Zoo -10.9291 +▁Math -10.9292 +▁whereas -10.9296 +▁Matt -10.9315 +▁pest -10.9316 +▁consuming -10.9324 +▁dehydration -10.9324 +▁eligible -10.9324 +▁somewhat -10.9324 +solving -10.9324 +▁shrink -10.9324 +▁copies -10.9324 +▁Observatory -10.9324 +▁Programme -10.9324 +▁Northwest -10.9324 +And -10.9332 +quality -10.9332 +▁Interest -10.9336 +gastrointestinal -10.9339 +▁earned -10.934 +▁Cook -10.9342 +▁Teach -10.9347 +▁Oil -10.9348 +▁Tech -10.9356 +▁compete -10.9367 +▁apple -10.9374 +▁Hopkins -10.9389 +▁Protocol -10.9389 +▁contagious -10.9389 +▁contamination -10.9389 +▁intestinal -10.9389 +▁lecture -10.9389 +▁specimen -10.9389 +▁Soviet -10.9389 +▁brother -10.9389 +tune -10.9389 +▁Stay -10.939 +▁boat -10.9393 +▁persistent -10.9395 +EV -10.9395 +▁eaten -10.94 +UL -10.9402 +▁deeper -10.9409 +▁probe -10.9409 +ologic -10.9426 +RP -10.9429 +▁Yu -10.943 +▁finished -10.943 +▁employed -10.9442 +▁Assembly -10.9455 +▁Different -10.9455 +▁EurekAlert -10.9455 +▁independence -10.9455 +▁museum -10.9455 +▁powder -10.9455 +▁parallel -10.9455 +▁workshop -10.9455 +▁shin -10.9469 +▁drag -10.9471 +▁Para -10.9481 +▁Currently -10.9485 +ML -10.9518 +▁confident -10.9521 +▁enormous -10.9521 +▁exhaust -10.9521 +▁expense -10.9521 +▁fertility -10.9521 +▁participating -10.9521 +▁vapor -10.9521 +▁Model -10.9524 +▁calm -10.9525 +▁existence -10.9529 +▁theories -10.9531 +▁designated -10.9537 +▁tendon -10.9538 +▁Paris -10.9539 +▁Site -10.9541 +▁audio -10.9554 +Pro -10.956 +▁calculated -10.9561 +▁consideration -10.9572 +▁Telescope -10.9588 +▁encouraging -10.9588 +▁magnesium -10.9588 +▁addiction -10.9588 +▁Italian -10.9588 +▁literacy -10.9588 +fungal -10.959 +▁indicat -10.9591 +▁vaginal -10.9596 +stream -10.9597 +▁mill -10.9607 +effective -10.9608 +patient -10.9614 +▁dating -10.9629 +▁advised -10.9631 +▁ensur -10.9632 +▁Within -10.9634 +ECT -10.9642 +▁Louisiana -10.9655 +▁anesthesia -10.9655 +▁availability -10.9655 +▁triglyceride -10.9655 +▁Document -10.9655 +▁recipe -10.9655 +▁fluoride -10.9655 +▁isolated -10.9655 +▁Student -10.9656 +▁clue -10.9656 +▁yeast -10.9657 +ALL -10.9663 +▁branches -10.967 +Health -10.9674 +▁edited -10.9692 +▁continent -10.9694 +▁reaches -10.9711 +duction -10.9713 +▁autoimmune -10.9722 +▁distress -10.9722 +▁pandemic -10.9722 +▁phenomenon -10.9722 +▁wetlands -10.9722 +▁MRSA -10.9722 +▁lunar -10.9722 +▁Daily -10.9723 +ducing -10.9723 +▁polyps -10.9724 +▁folder -10.9727 +view -10.9731 +driven -10.9759 +▁coli -10.9762 +▁Latino -10.9769 +▁IUCN -10.979 +▁Tennessee -10.979 +▁broadcast -10.979 +▁coordination -10.979 +▁perception -10.979 +▁practitioner -10.979 +▁occurrence -10.979 +▁Writing -10.979 +▁plug -10.9791 +▁condom -10.9791 +▁Baby -10.9791 +▁initiate -10.9791 +▁steel -10.9791 +▁conversion -10.9792 +▁resist -10.9794 +▁antibody -10.9794 +▁nail -10.9794 +ku -10.98 +hood -10.9803 +▁priority -10.9805 +▁Full -10.9806 +▁thanks -10.9806 +life -10.9824 +▁kg -10.9835 +ART -10.9838 +▁Sept -10.984 +▁Develop -10.9855 +definitely -10.9859 +▁Vaccine -10.9859 +▁calculation -10.9859 +▁flexible -10.9859 +▁imagine -10.9859 +▁journey -10.9859 +▁universal -10.9859 +▁Awareness -10.9859 +▁Radiation -10.9859 +▁Mission -10.9859 +▁monoxide -10.9859 +▁dialog -10.9859 +▁personnel -10.9859 +▁aspirin -10.9861 +▁Factors -10.9863 +▁toxicity -10.987 +titut -10.9878 +▁reasonable -10.9895 +▁pad -10.9915 +▁Wear -10.9924 +▁Infectious -10.9928 +▁territory -10.9928 +▁Which -10.9928 +▁audience -10.9928 +▁Pregnancy -10.9928 +▁elsewhere -10.9928 +▁Infant -10.9929 +▁predator -10.9929 +▁mine -10.9932 +▁scene -10.9933 +▁gay -10.9933 +▁Radio -10.9935 +▁Staff -10.9937 +▁campus -10.9944 +lace -10.9946 +▁Enter -10.995 +▁considerable -10.9961 +▁vent -10.9962 +▁addresses -10.9966 +toxic -10.9972 +▁facilitate -10.9997 +▁gravity -10.9997 +▁shadow -10.9997 +▁skull -10.9997 +▁gestation -10.9997 +▁unlikely -10.9997 +▁distant -10.9997 +▁permission -11.0006 +▁chosen -11.0012 +▁pollen -11.0019 +▁contraction -11.0025 +bird -11.0028 +▁alive -11.0045 +▁Prior -11.0056 +▁Executive -11.0067 +▁carcinoma -11.0067 +▁certificate -11.0067 +▁precipitation -11.0067 +▁reflux -11.0067 +▁utilize -11.0067 +▁Company -11.0067 +▁meningitis -11.0067 +▁Henry -11.0067 +▁Utah -11.0067 +▁lipid -11.0068 +▁Continu -11.0068 +▁confusion -11.0071 +▁blame -11.0071 +count -11.0073 +▁kick -11.0074 +▁Point -11.0077 +▁eruption -11.0079 +▁Cold -11.0081 +▁spill -11.0084 +▁Resource -11.0085 +▁publish -11.0092 +▁Auto -11.0096 +rgic -11.0102 +tral -11.0115 +▁writer -11.0119 +gress -11.0135 +▁Behavior -11.0138 +▁platform -11.0138 +▁livestock -11.0138 +▁fraction -11.0138 +▁fault -11.0138 +▁proceed -11.0138 +▁Video -11.0138 +▁Birth -11.0138 +▁burst -11.0138 +▁grape -11.0138 +▁loud -11.0138 +▁wrap -11.014 +post -11.0143 +How -11.0146 +▁Spring -11.0147 +▁mining -11.0163 +▁ACT -11.017 +government -11.0171 +sexual -11.0171 +green -11.0171 +▁NY -11.0178 +▁Case -11.0191 +▁initially -11.0201 +▁Psychology -11.0209 +▁approval -11.0209 +▁diamond -11.0209 +▁fragment -11.0209 +▁recycling -11.0209 +▁gasoline -11.0209 +▁Christmas -11.0209 +▁grocer -11.0209 +▁dozen -11.0209 +▁dress -11.0209 +▁mask -11.0209 +IO -11.022 +▁Play -11.0228 +▁Regional -11.0243 +▁injected -11.0245 +▁tape -11.0254 +▁twenty -11.028 +▁Hurricane -11.028 +▁Ontario -11.028 +▁Proceedings -11.028 +▁cartilage -11.028 +▁composed -11.028 +▁frozen -11.028 +▁tsunami -11.028 +▁turkey -11.028 +▁saliva -11.028 +▁shuttle -11.028 +▁Computer -11.028 +▁Again -11.028 +▁wife -11.0282 +▁liter -11.0285 +▁lice -11.03 +▁pink -11.0304 +▁finish -11.0307 +▁progressive -11.0308 +▁prone -11.0313 +positive -11.0317 +Last -11.0318 +▁organize -11.0321 +▁Geo -11.0349 +specialized -11.0349 +▁Physician -11.0352 +▁Published -11.0352 +▁irritation -11.0352 +▁revenue -11.0352 +▁therapist -11.0352 +▁pepper -11.0352 +▁truck -11.0352 +▁swim -11.0352 +▁rainfall -11.0352 +▁inspire -11.0353 +▁Haiti -11.0356 +▁olive -11.0357 +▁folic -11.0364 +PD -11.037 +EST -11.0372 +▁basin -11.0373 +▁weekend -11.0373 +▁speaker -11.0374 +▁pipe -11.0379 +▁oldest -11.038 +▁opposed -11.0381 +▁freeze -11.0385 +energy -11.0391 +introduc -11.0424 +▁biofuel -11.0424 +▁competition -11.0424 +▁corporation -11.0424 +▁correlation -11.0424 +▁elephant -11.0424 +▁physicist -11.0424 +▁yogurt -11.0424 +▁evaporat -11.0424 +▁village -11.0424 +▁utility -11.0424 +▁appeal -11.0425 +▁teenagers -11.0426 +GI -11.0426 +▁Return -11.0428 +lactic -11.0429 +▁indeed -11.0431 +▁Turn -11.0432 +▁strange -11.0434 +▁Planet -11.0434 +Primar -11.0436 +▁Making -11.0443 +▁installation -11.045 +▁Severe -11.046 +WA -11.0462 +▁surprise -11.0463 +Reference -11.0466 +▁whenever -11.0467 +▁relate -11.0491 +▁scratch -11.0497 +▁Cambridge -11.0497 +▁Universe -11.0497 +▁adrenal -11.0497 +▁peripheral -11.0497 +▁cavity -11.0497 +▁prospect -11.0497 +▁heartbeat -11.0497 +▁decay -11.0497 +▁cotton -11.0498 +▁crew -11.0498 +▁Limit -11.0498 +▁Answer -11.0498 +▁finance -11.0498 +▁Edward -11.05 +▁interactive -11.0513 +berry -11.0539 +▁gut -11.0541 +▁Affairs -11.0571 +▁accelerate -11.0571 +▁appliance -11.0571 +▁dissolve -11.0571 +▁preliminary -11.0571 +▁residential -11.0571 +▁neutral -11.0571 +▁inhabit -11.0571 +▁carrier -11.0572 +▁prime -11.0573 +▁sister -11.0573 +▁lump -11.0573 +▁Overall -11.0575 +▁Nazi -11.0579 +▁rover -11.058 +activated -11.0588 +▁blockage -11.059 +ocyte -11.0594 +▁desired -11.0601 +One -11.0623 +CDC -11.0632 +▁Amendment -11.0645 +▁Defense -11.0645 +▁Definition -11.0645 +▁Field -11.0645 +▁NOAA -11.0645 +▁accompanie -11.0645 +▁congenital -11.0645 +▁exploration -11.0645 +▁pregnancies -11.0645 +▁witness -11.0645 +▁passenger -11.0645 +▁Revised -11.0645 +▁preparing -11.0645 +▁align -11.0645 +▁gift -11.0645 +▁Medication -11.0645 +▁guess -11.0646 +▁pace -11.0653 +▁Healthwise -11.0654 +▁itching -11.0655 +▁handling -11.0664 +▁principle -11.0682 +break -11.0684 +▁cope -11.069 +▁Rule -11.0716 +▁Alternative -11.072 +▁blindness -11.072 +▁compromise -11.072 +▁trimester -11.072 +▁carcinogen -11.072 +▁extension -11.072 +▁Hydr -11.072 +▁trail -11.0721 +▁earnings -11.0724 +▁chew -11.0725 +▁tribe -11.0728 +▁evolved -11.0737 +▁hang -11.0745 +▁constantly -11.0767 +walk -11.0772 +onald -11.0774 +▁mention -11.0789 +▁anniversary -11.0795 +▁choosing -11.0795 +▁epilepsy -11.0795 +▁memories -11.0795 +▁restaurant -11.0795 +▁possess -11.0795 +requiring -11.0795 +▁systematic -11.0795 +▁Multi -11.0796 +▁adulthood -11.0796 +▁celiac -11.0797 +▁semi -11.0804 +▁counselor -11.0806 +left -11.0809 +▁glasses -11.0822 +ATE -11.0834 +▁relie -11.0844 +People -11.0847 +▁Historical -11.0862 +▁Building -11.0871 +▁Olympic -11.0871 +▁Yellow -11.0871 +▁administrator -11.0871 +▁damaging -11.0871 +▁infertility -11.0871 +▁pedestrian -11.0871 +▁psychologist -11.0871 +▁fungus -11.0871 +▁clothes -11.0871 +▁urgent -11.0872 +▁beetle -11.0873 +▁chose -11.0876 +▁Harry -11.0883 +▁Hunt -11.0884 +▁retail -11.0885 +▁dirt -11.0886 +▁suggestions -11.0887 +▁Wash -11.0892 +HR -11.0895 +▁representation -11.0899 +▁volunteer -11.0916 +you -11.0925 +▁cardio -11.0928 +▁requirement -11.0944 +▁Governor -11.0947 +▁Microsoft -11.0947 +▁ligament -11.0947 +▁sediment -11.0947 +▁earliest -11.0947 +▁prevalent -11.0947 +▁amazing -11.0947 +▁signature -11.0948 +turn -11.095 +▁slide -11.0951 +▁flare -11.0955 +▁overview -11.0956 +▁trap -11.0962 +▁neo -11.0989 +▁revolution -11.0991 +week -11.1004 +pub -11.1007 +regulat -11.102 +▁Electric -11.1024 +▁Mediterranean -11.1024 +▁Scientific -11.1024 +▁assumption -11.1024 +▁mechanical -11.1024 +▁recipient -11.1024 +▁resemble -11.1024 +▁innovation -11.1024 +▁Chemical -11.1024 +▁Heritage -11.1024 +▁prolonged -11.1024 +▁troops -11.1024 +▁ovaries -11.1024 +▁depressed -11.1024 +▁scrap -11.1024 +▁occasionally -11.1026 +▁minority -11.1033 +▁customers -11.1038 +▁Farm -11.1047 +▁mole -11.105 +▁productive -11.1052 +▁substantially -11.1055 +▁licensed -11.1056 +▁activate -11.1083 +▁Allergy -11.1101 +▁Analysis -11.1101 +▁Netherlands -11.1101 +▁Record -11.1101 +▁aerobic -11.1101 +▁appointed -11.1101 +▁celebration -11.1101 +▁diminish -11.1101 +▁intellectual -11.1101 +▁ultraviolet -11.1101 +▁welcome -11.1101 +▁Future -11.1101 +▁Discuss -11.1101 +▁incision -11.1102 +▁menopause -11.1102 +▁dimension -11.1106 +▁panic -11.1108 +▁regulatory -11.1113 +▁Rome -11.1123 +▁descend -11.1135 +▁accumulate -11.1179 +▁configuration -11.1179 +▁deploy -11.1179 +▁harassment -11.1179 +▁abstract -11.1179 +▁crater -11.118 +▁faint -11.118 +▁Content -11.118 +▁behave -11.118 +▁admitted -11.118 +▁Print -11.1184 +▁involvement -11.119 +▁recommendation -11.1193 +▁pond -11.1217 +lessness -11.1219 +▁Victoria -11.1229 +▁Six -11.1235 +▁dollar -11.1238 +▁magnet -11.125 +▁Wall -11.1253 +SOURCE -11.1258 +▁Engine -11.1258 +▁ethanol -11.1258 +▁hybrid -11.1258 +▁mammogram -11.1258 +▁placing -11.1258 +▁puberty -11.1258 +▁unclear -11.1258 +▁vertical -11.1258 +▁Reduce -11.1258 +▁Battle -11.1258 +▁Senator -11.1258 +▁neural -11.1258 +▁pipeline -11.126 +▁Almost -11.1261 +▁Abuse -11.1262 +▁discoveries -11.1265 +tropic -11.1267 +▁worms -11.1279 +▁regimen -11.1293 +fall -11.1295 +▁OK -11.1299 +▁closest -11.1305 +enberg -11.1318 +iasis -11.1321 +evolutionary -11.1337 +esophageal -11.1338 +▁Seattle -11.1338 +▁breastfeeding -11.1338 +▁mathematical -11.1338 +▁veteran -11.1338 +Investigat -11.1338 +▁vector -11.1338 +▁heritage -11.1338 +▁Personal -11.1338 +▁intention -11.1338 +▁spark -11.1338 +▁Trust -11.1338 +▁Sports -11.134 +▁Norway -11.134 +▁Biological -11.134 +▁Davis -11.134 +▁aircraft -11.134 +▁Wind -11.1341 +▁acne -11.1342 +▁Color -11.1342 +▁tension -11.1343 +▁limitations -11.1348 +▁Team -11.1348 +▁ounces -11.1355 +▁gray -11.136 +▁distributed -11.136 +▁grid -11.1363 +▁indication -11.1363 +▁Santa -11.1365 +▁Cape -11.138 +▁Duke -11.1386 +▁adaptation -11.1398 +▁spoke -11.1404 +▁patch -11.1405 +▁numer -11.1416 +▁complement -11.1417 +▁Introduction -11.1418 +▁Kennedy -11.1418 +▁abundant -11.1418 +▁competitive -11.1418 +▁cultivat -11.1418 +▁milligrams -11.1418 +▁muscular -11.1418 +▁promising -11.1418 +▁steady -11.1418 +▁lupus -11.1418 +▁bacterium -11.1418 +▁diagram -11.1418 +▁timing -11.1418 +▁quake -11.1418 +▁LDL -11.1418 +▁organisation -11.1418 +▁scalp -11.1418 +▁ankle -11.1419 +▁twin -11.142 +▁Explain -11.142 +▁hazardous -11.1421 +▁patches -11.143 +▁proton -11.144 +▁adjustment -11.1448 +▁Much -11.1449 +▁Region -11.146 +heat -11.1464 +▁Comment -11.1472 +▁Game -11.1473 +▁pesticide -11.1486 +▁Elizabeth -11.1498 +▁recession -11.1498 +▁simultaneous -11.1498 +▁unnecessary -11.1498 +▁volcano -11.1498 +▁Spirit -11.1498 +▁blank -11.1498 +▁heavily -11.1498 +▁bowl -11.1498 +▁Speak -11.1498 +▁terror -11.1498 +▁sulfur -11.1498 +▁Task -11.1499 +▁productivity -11.15 +closure -11.1501 +▁hospitalization -11.1504 +▁Saint -11.1505 +▁mandate -11.1508 +location -11.1513 +▁buildup -11.1519 +▁chill -11.152 +appropriate -11.1574 +lute -11.1574 +▁commun -11.1574 +▁organism -11.1575 +▁HTML -11.1579 +▁hemoglobin -11.1579 +▁refuge -11.1579 +▁reinforce -11.1579 +▁surveillance -11.1579 +▁synthetic -11.1579 +▁wolves -11.1579 +▁Hubble -11.1579 +▁Neurology -11.1579 +▁Chief -11.158 +▁Smoking -11.158 +▁creative -11.158 +▁Credit -11.158 +▁club -11.158 +▁Prize -11.1582 +eight -11.1586 +▁Proper -11.1592 +▁Body -11.1593 +lateral -11.1594 +▁pitch -11.1597 +▁Paper -11.1599 +▁bike -11.1601 +▁educat -11.1607 +▁nice -11.1611 +▁edit -11.1637 +▁Cassini -11.1661 +▁Database -11.1661 +▁Maintain -11.1661 +▁Pasadena -11.1661 +▁fertilizer -11.1661 +▁innovative -11.1661 +▁sanitation -11.1661 +▁Treaty -11.1661 +▁WebMD -11.1661 +▁generator -11.1661 +▁pursue -11.1662 +▁Queen -11.1662 +▁abortion -11.1662 +▁cyber -11.1662 +▁HDL -11.1662 +▁Download -11.1662 +▁triangle -11.1662 +▁Healthcare -11.1668 +▁binge -11.1688 +efficient -11.1742 +▁Electro -11.1744 +▁Nuclear -11.1744 +▁Participants -11.1744 +▁beautiful -11.1744 +▁dizziness -11.1744 +▁mirror -11.1744 +▁optimal -11.1744 +▁wavelength -11.1744 +▁Navy -11.1744 +▁spiritual -11.1745 +▁attain -11.1745 +▁Nobel -11.1748 +ritten -11.1752 +▁Steven -11.1755 +food -11.1757 +▁shade -11.1758 +▁transit -11.1761 +▁spectr -11.1766 +▁Bern -11.1768 +ckle -11.1778 +▁starch -11.1798 +▁Off -11.1803 +▁extinct -11.1814 +▁induce -11.1819 +▁emergenc -11.1822 +▁Caribbean -11.1827 +▁Chemistry -11.1827 +▁Connecticut -11.1827 +▁Endangered -11.1827 +▁Exposure -11.1827 +▁Initiative -11.1827 +▁arrhythmia -11.1827 +▁confused -11.1827 +▁disadvantage -11.1827 +▁juvenile -11.1827 +▁nutritious -11.1827 +▁pancreatic -11.1827 +▁Federation -11.1827 +▁globe -11.1827 +▁vertebra -11.1827 +▁amendment -11.1827 +▁clause -11.1827 +▁blister -11.1828 +▁relating -11.1828 +▁disabled -11.1828 +▁congesti -11.1828 +With -11.1828 +▁strep -11.1829 +▁XML -11.1829 +▁feedback -11.183 +▁characteristic -11.183 +▁consent -11.183 +second -11.183 +▁conserve -11.1831 +▁renal -11.1832 +▁Grant -11.1833 +▁stopping -11.1834 +▁license -11.1877 +dministrative -11.1911 +▁companion -11.1911 +▁concrete -11.1911 +▁destination -11.1911 +▁marijuana -11.1911 +▁tremendous -11.1911 +peptide -11.1911 +▁hidden -11.1911 +▁Major -11.1911 +▁eyelid -11.1912 +▁Virus -11.1912 +▁Remove -11.1912 +▁expectancy -11.1913 +function -11.1914 +▁Given -11.1915 +▁altitude -11.1915 +glycem -11.1915 +▁Islam -11.1916 +▁degeneration -11.1916 +▁tendency -11.1916 +change -11.1922 +▁desire -11.1961 +holder -11.1978 +▁Nebraska -11.1996 +▁exclude -11.1996 +▁explosion -11.1996 +▁inadequate -11.1996 +▁malignant -11.1996 +▁quantity -11.1996 +▁rehabilitation -11.1996 +▁capsule -11.1996 +▁murder -11.1996 +▁gently -11.1996 +▁Lancet -11.1996 +▁educators -11.1998 +social -11.2002 +▁cyto -11.2003 +▁spoken -11.2013 +▁clip -11.2023 +LAN -11.2045 +▁commit -11.2072 +eclampsia -11.2082 +▁controversial -11.2082 +▁decreasing -11.2082 +▁fabric -11.2082 +▁identical -11.2082 +▁questionnaire -11.2082 +▁Stanford -11.2082 +▁prominent -11.2082 +▁recruit -11.2082 +▁Include -11.2082 +▁silver -11.2082 +▁Training -11.2082 +▁quiet -11.2082 +▁herpes -11.2083 +nucle -11.2084 +▁macula -11.2086 +▁completion -11.2088 +▁Basin -11.2101 +▁producers -11.2102 +▁rape -11.2108 +opathy -11.2114 +▁administer -11.2123 +dimensional -11.2163 +Principle -11.2168 +▁Declaration -11.2168 +▁Encyclopedia -11.2168 +▁Jerusalem -11.2168 +▁Mercury -11.2168 +▁Solutions -11.2168 +▁abundance -11.2168 +▁flexibility -11.2168 +▁recognise -11.2168 +▁repellent -11.2168 +▁vegetarian -11.2168 +▁Digital -11.2168 +▁comparing -11.2168 +▁Regular -11.2168 +▁Wilson -11.2168 +▁counterparts -11.2168 +bipolar -11.2168 +▁Consult -11.2168 +▁herbal -11.2168 +▁swing -11.2169 +▁preschool -11.2171 +Sahara -11.2173 +▁hook -11.2173 +▁foster -11.2177 +▁gear -11.2183 +▁DOI -11.2192 +▁palm -11.2234 +EPA -11.2241 +▁enforce -11.2251 +▁Frequent -11.2255 +▁Approximately -11.2255 +▁Baltimore -11.2255 +▁contributor -11.2255 +▁cortex -11.2255 +▁hungry -11.2255 +▁ourselves -11.2255 +▁serotonin -11.2255 +▁skeleton -11.2255 +▁incredibl -11.2255 +▁patent -11.2255 +▁swine -11.2255 +▁applies -11.2255 +▁tonnes -11.2255 +▁Cross -11.2256 +▁Wild -11.226 +▁Democratic -11.2262 +▁somewhere -11.2269 +style -11.2271 +▁preterm -11.2277 +▁equality -11.2285 +▁subsid -11.2312 +▁nm -11.2322 +equal -11.2326 +▁rough -11.2328 +▁invite -11.2332 +responsibilities -11.2343 +▁Muslim -11.2343 +▁benign -11.2343 +▁cervix -11.2343 +▁rupture -11.2343 +▁constitute -11.2343 +▁trillion -11.2343 +▁URL -11.2343 +▁tolerance -11.2343 +▁duty -11.2343 +▁Screening -11.2343 +▁transfusion -11.2344 +▁Progress -11.2344 +▁Simple -11.2344 +▁prenatal -11.2345 +▁skip -11.2349 +▁keyboard -11.2349 +▁placenta -11.235 +▁Collection -11.2353 +▁inject -11.2356 +▁Deep -11.2361 +▁tire -11.2404 +▁vagina -11.242 +▁Fahrenheit -11.2431 +▁Medicare -11.2431 +▁Ministry -11.2431 +▁Oxford -11.2431 +▁voltage -11.2431 +▁worried -11.2431 +▁Sweden -11.2431 +▁assault -11.2431 +▁Release -11.2431 +▁structural -11.2431 +▁polio -11.2431 +▁sought -11.2431 +▁inflation -11.2431 +▁macro -11.2431 +▁architecture -11.2432 +▁diesel -11.2432 +▁microscope -11.2433 +▁Text -11.2433 +present -11.2441 +▁Panel -11.2444 +birth -11.2448 +genetic -11.2454 +▁Apple -11.2474 +▁locate -11.2486 +▁spirit -11.2519 +▁afraid -11.252 +▁describing -11.252 +▁emerging -11.252 +▁pelvic -11.252 +▁phosphor -11.252 +▁Sexual -11.252 +▁elbow -11.252 +▁advisor -11.252 +▁crust -11.252 +▁GDP -11.2521 +▁RSS -11.2522 +JPL -11.2522 +▁expertise -11.2522 +▁wrist -11.2523 +▁yard -11.2528 +thyroid -11.2539 +connect -11.254 +▁sheep -11.2543 +found -11.2557 +▁jet -11.2559 +Propulsion -11.261 +▁Fortunately -11.261 +▁Omega -11.261 +▁elevation -11.261 +▁evaluating -11.261 +▁intelligence -11.261 +▁measles -11.261 +▁violation -11.261 +▁dinner -11.261 +▁modification -11.2611 +▁empower -11.2611 +▁asleep -11.2611 +▁COPD -11.2611 +▁admission -11.2612 +▁bedtime -11.2616 +▁flour -11.2617 +▁birthday -11.262 +▁Chair -11.2627 +▁Liver -11.2629 +▁stability -11.263 +sufficient -11.2631 +▁Explorer -11.2632 +text -11.2635 +▁biologist -11.2661 +Term -11.2683 +▁Dakota -11.2701 +▁conjunction -11.2701 +▁cooperation -11.2701 +▁emphasis -11.2701 +▁exploring -11.2701 +▁hypothesis -11.2701 +▁pituitary -11.2701 +▁politics -11.2701 +▁thumb -11.2701 +▁uncomfortable -11.2701 +▁welfare -11.2701 +▁intolerance -11.2701 +▁probability -11.2701 +▁gauge -11.2701 +▁twist -11.2701 +▁PTSD -11.2701 +▁defeat -11.2701 +▁Girl -11.2701 +▁Lewis -11.2702 +▁banana -11.2703 +▁Stephen -11.2703 +▁deserve -11.2704 +▁awake -11.2705 +▁flea -11.2712 +▁audit -11.2715 +Most -11.2726 +▁Atlanta -11.2793 +▁Aboriginal -11.2793 +▁Procedure -11.2793 +▁cosmetic -11.2793 +▁declining -11.2793 +▁kernel -11.2793 +▁legislative -11.2793 +▁quantities -11.2793 +▁kitchen -11.2793 +▁Iceland -11.2793 +▁Alliance -11.2793 +▁fought -11.2793 +▁Irish -11.2793 +▁missile -11.2793 +▁profound -11.2795 +▁animation -11.2795 +▁instant -11.2796 +▁lymphoma -11.2797 +▁Acid -11.2797 +▁hospitalized -11.2804 +▁endorse -11.2809 +especially -11.282 +version -11.2829 +▁Parent -11.2831 +▁Cooper -11.2844 +▁Fast -11.2848 +ATION -11.2875 +▁Mother -11.2879 +▁Curiosity -11.2886 +▁Pakistan -11.2886 +▁conservative -11.2886 +▁reconstruct -11.2886 +▁tutorial -11.2886 +▁ordinary -11.2886 +▁helmet -11.2886 +▁varied -11.2886 +▁superior -11.2886 +▁Course -11.2886 +▁nucleus -11.2886 +▁rescue -11.2887 +▁seafood -11.2887 +▁protest -11.2891 +▁groundwater -11.2892 +▁grave -11.2894 +▁differentiate -11.2899 +cultural -11.2915 +▁delete -11.2919 +▁adolescent -11.2923 +Increased -11.2927 +▁Southeast -11.2976 +▁Experiment -11.2979 +▁bronchitis -11.2979 +▁convenient -11.2979 +▁dictionary -11.2979 +▁hemisphere -11.2979 +▁philosophy -11.2979 +▁Application -11.2979 +▁Impact -11.2979 +▁Together -11.2979 +▁fiscal -11.2979 +▁lithium -11.2979 +▁shopping -11.2979 +▁multiply -11.2979 +▁crowd -11.2979 +▁Greenland -11.2984 +close -11.2986 +▁teenage -11.299 +generation -11.3008 +▁Revolution -11.3012 +fight -11.3012 +▁athlete -11.302 +▁Pediatric -11.302 +pplied -11.3049 +aturated -11.3065 +▁submit -11.3071 +▁theoretical -11.3073 +▁Dictionary -11.3073 +▁Jackson -11.3073 +▁legislature -11.3073 +▁osteoarthritis -11.3073 +▁significance -11.3073 +▁turbine -11.3073 +▁varieties -11.3073 +▁vocabulary -11.3073 +▁voluntary -11.3073 +▁gastric -11.3074 +▁Visual -11.3074 +▁bleach -11.3074 +▁wireless -11.3077 +▁Northeast -11.3081 +▁texture -11.3091 +▁establishment -11.3096 +▁disturb -11.3166 +▁Psychiatry -11.3169 +▁Roosevelt -11.3169 +▁UNICEF -11.3169 +▁abandon -11.3169 +▁promotion -11.3169 +esteem -11.3169 +▁cosmic -11.3169 +▁voting -11.3169 +▁disturbance -11.3171 +▁transferred -11.3173 +▁Colon -11.3176 +▁Moreover -11.3177 +▁Rather -11.3181 +coding -11.3182 +▁settlement -11.3185 +▁methyl -11.3201 +diagnosed -11.3206 +▁Foot -11.3207 +▁emission -11.3225 +check -11.3239 +▁LGBT -11.3265 +▁capabilities -11.3265 +▁fascinat -11.3265 +▁laboratories -11.3265 +▁summary -11.3265 +▁Montana -11.3265 +▁Diagnosis -11.3265 +▁Jacob -11.3265 +▁tackle -11.3265 +▁Acute -11.3265 +▁latter -11.3265 +▁frog -11.3265 +▁preced -11.3267 +encies -11.3269 +▁fungi -11.327 +▁mapping -11.327 +▁Brook -11.3273 +▁meaningful -11.3297 +normal -11.3305 +While -11.3305 +cancer -11.331 +▁myelo -11.3312 +▁Origin -11.336 +▁Higgs -11.3362 +▁achieving -11.3362 +▁boundaries -11.3362 +▁fibrosis -11.3362 +▁inflamed -11.3362 +▁municipal -11.3362 +▁nicotine -11.3362 +▁refrigerator -11.3362 +▁tumour -11.3362 +▁bloom -11.3362 +▁Business -11.3362 +▁Perhaps -11.3362 +▁petition -11.3362 +▁groin -11.3362 +▁inventor -11.3362 +▁Present -11.3363 +▁strategic -11.3366 +▁adhere -11.3368 +▁enabl -11.337 +▁missed -11.3372 +▁Found -11.3377 +▁Chile -11.3378 +usually -11.3398 +▁Compare -11.34 +producing -11.3406 +TION -11.3423 +flat -11.3431 +aught -11.3457 +disciplinary -11.346 +▁Academic -11.346 +▁Linux -11.346 +▁Oklahoma -11.346 +▁Pharmacy -11.346 +▁commemorat -11.346 +▁negotiation -11.346 +▁psychiatric -11.346 +▁unprecedented -11.346 +▁Popular -11.346 +▁remarkable -11.346 +▁thermometer -11.346 +▁dysfunction -11.346 +▁readily -11.346 +▁salad -11.3461 +▁crab -11.3461 +▁Regulat -11.3461 +▁litter -11.3461 +▁womb -11.3463 +▁hardware -11.3463 +▁slavery -11.3464 +▁nonprofit -11.3466 +▁warts -11.347 +▁Store -11.3493 +system -11.3506 +▁capita -11.3538 +▁slot -11.3549 +▁Matthew -11.3559 +▁Midwest -11.3559 +▁Muscle -11.3559 +▁Professional -11.3559 +▁Similarly -11.3559 +▁algorithm -11.3559 +▁intermediate -11.3559 +▁petroleum -11.3559 +▁struggling -11.3559 +encrypt -11.3559 +▁Kidney -11.3559 +▁accompany -11.3559 +▁compost -11.3559 +▁impulse -11.3559 +▁Kenya -11.3559 +▁buffer -11.3559 +▁Lyme -11.3559 +▁Better -11.356 +▁submitted -11.3561 +▁glue -11.3562 +▁Activity -11.3563 +▁underground -11.3567 +▁Historic -11.357 +▁hernia -11.3579 +vitamin -11.3608 +mouth -11.3608 +▁Benefits -11.3659 +▁aneurysm -11.3659 +▁convince -11.3659 +▁rainforest -11.3659 +▁volcanic -11.3659 +▁Houston -11.3659 +▁conceive -11.3659 +▁mystery -11.3659 +▁interior -11.3659 +▁Break -11.3659 +▁horizontal -11.366 +▁incentive -11.366 +▁archive -11.366 +▁slope -11.366 +▁Lesson -11.366 +▁bald -11.3661 +▁latitude -11.3663 +▁aorta -11.3665 +▁Excel -11.367 +▁correlate -11.3671 +▁wonderful -11.3678 +million -11.3711 +causing -11.3712 +▁Angl -11.3716 +abili -11.3737 +▁Delaware -11.376 +▁Framework -11.376 +▁Substance -11.376 +▁Thanks -11.376 +▁comparable -11.376 +▁husband -11.376 +▁intravenous -11.376 +▁Marshall -11.376 +▁thunderstorm -11.376 +▁balloon -11.376 +▁spokesman -11.376 +▁Fruit -11.376 +▁Meeting -11.376 +▁literally -11.3763 +anthrop -11.3764 +CSF -11.3766 +security -11.3815 +correct -11.3815 +National -11.3816 +▁Molecular -11.3862 +▁arrangement -11.3862 +▁constipation -11.3862 +▁definitive -11.3862 +▁identifies -11.3862 +▁reproduce -11.3862 +▁unexpected -11.3862 +▁buried -11.3862 +▁minister -11.3862 +▁Evaluat -11.3862 +▁landfill -11.3862 +▁orientation -11.3862 +▁Childhood -11.3863 +▁Dutch -11.3863 +▁paragraph -11.3865 +▁resume -11.3865 +▁considerably -11.3868 +▁blast -11.3871 +▁dosage -11.3871 +biotic -11.3896 +source -11.3912 +▁practic -11.3912 +Many -11.3922 +▁Coordinat -11.3937 +natal -11.3938 +pronounced -11.3965 +▁Arthritis -11.3965 +▁Hebrew -11.3965 +▁Independence -11.3965 +▁stabilize -11.3965 +▁technician -11.3965 +▁tunnel -11.3965 +▁attorney -11.3965 +▁cocaine -11.3965 +▁Freedom -11.3965 +▁rectum -11.3965 +▁invasion -11.3965 +▁implicat -11.3965 +▁trapped -11.3966 +▁Indeed -11.3966 +▁worn -11.3967 +▁Repeat -11.3968 +▁classification -11.3973 +▁bitten -11.3976 +▁Aging -11.3977 +Specialist -11.3997 +culture -11.4041 +ologi -11.4053 +▁dye -11.4054 +▁Amazon -11.4069 +▁Celsius -11.4069 +▁Empire -11.4069 +▁Little -11.4069 +▁investigating -11.4069 +▁prognosis -11.4069 +▁ventricle -11.4069 +▁Bacteria -11.4069 +▁Potter -11.407 +▁integer -11.407 +▁Yale -11.407 +▁eradicat -11.407 +▁breakthrough -11.407 +iatric -11.4071 +▁temper -11.4071 +▁civilization -11.4074 +▁Market -11.4079 +▁predispos -11.4095 +▁potato -11.4162 +▁broke -11.4163 +ardiovascular -11.4171 +menopaus -11.4174 +▁Agricultural -11.4175 +▁Available -11.4175 +▁Disabilities -11.4175 +▁Nevada -11.4175 +▁Supplement -11.4175 +▁Violence -11.4175 +▁overwhelming -11.4175 +▁pharmacies -11.4175 +▁synthesis -11.4175 +▁tremor -11.4175 +▁unwanted -11.4175 +▁Important -11.4175 +▁diploma -11.4175 +▁neglect -11.4175 +▁telomere -11.4175 +▁cavities -11.4175 +▁Peace -11.4175 +Official -11.4175 +▁crush -11.4175 +▁borrow -11.4175 +▁Third -11.4175 +▁northwest -11.4175 +▁Cecil -11.4175 +▁quiz -11.4176 +▁Multiple -11.4176 +▁numbness -11.4177 +▁minus -11.4177 +▁dispute -11.4177 +▁Egyptian -11.4179 +▁Measure -11.4181 +▁toilet -11.4187 +Main -11.4253 +▁Palm -11.4281 +fructose -11.4281 +phosphate -11.4281 +▁Adolescent -11.4281 +▁Alexander -11.4281 +▁Partnership -11.4281 +▁Peninsula -11.4281 +▁Summary -11.4281 +▁Wikipedia -11.4281 +▁aerosol -11.4281 +▁announcement -11.4281 +▁equator -11.4281 +▁pertussis -11.4281 +▁recurrence -11.4281 +▁stimulus -11.4281 +▁temporarily -11.4281 +▁Austria -11.4281 +▁Senior -11.4281 +▁sponsor -11.4281 +▁BRCA -11.4281 +▁valley -11.4281 +▁Could -11.4281 +▁Command -11.4281 +▁microbes -11.4282 +▁Plain -11.4282 +▁Garden -11.4283 +▁arteri -11.4294 +held -11.4297 +infected -11.4299 +protein -11.4353 +However -11.4354 +oplasty -11.4358 +limit -11.4359 +▁complication -11.4377 +▁Democrat -11.438 +▁appreciate -11.4386 +▁Memorial -11.4388 +obstructive -11.4388 +▁Difficulty -11.4388 +▁Institution -11.4388 +▁astronomy -11.4388 +▁computing -11.4388 +▁currency -11.4388 +▁fibrillation -11.4388 +▁immigration -11.4388 +▁psoriasis -11.4388 +▁silicon -11.4388 +▁tuberculosis -11.4388 +▁undergraduate -11.4388 +▁dopamine -11.4389 +▁wolf -11.4389 +▁Female -11.4389 +▁pioneer -11.4389 +▁Typically -11.4389 +▁sweetener -11.4389 +▁instructor -11.439 +▁terminal -11.439 +▁football -11.4391 +DAY -11.4395 +▁Planning -11.4395 +▁blend -11.4398 +citation -11.4418 +economic -11.4464 +minute -11.4468 +▁authentic -11.4497 +rchaeological -11.4497 +▁Epidemiology -11.4497 +▁atherosclerosis -11.4497 +▁encompass -11.4497 +▁entitled -11.4497 +▁explicit -11.4497 +▁fulfill -11.4497 +▁kilometres -11.4497 +▁motivation -11.4497 +▁obstruction -11.4497 +▁threshold -11.4497 +▁vigorous -11.4497 +▁irritate -11.4497 +▁Clinton -11.4497 +▁activist -11.4497 +▁physiological -11.4497 +▁pocket -11.4497 +▁struck -11.4498 +▁dried -11.4498 +▁respondents -11.4498 +▁steam -11.4499 +▁Susan -11.45 +▁peel -11.4501 +▁Clear -11.4537 +▁profession -11.4567 +two -11.459 +▁beverage -11.4602 +cerebral -11.4607 +▁Cholesterol -11.4607 +▁adolescence -11.4607 +▁advocacy -11.4607 +▁judgment -11.4607 +▁phenomena -11.4607 +▁utilities -11.4607 +▁Antibiotics -11.4607 +▁Randall -11.4607 +▁dwarf -11.4607 +▁scheme -11.4607 +carotene -11.4607 +▁grammar -11.4607 +▁ethical -11.4607 +icillin -11.4607 +▁radon -11.4608 +sweetened -11.4609 +▁sustainability -11.4609 +▁junk -11.461 +▁preferred -11.461 +▁polymer -11.4613 +Genesis -11.4682 +doctor -11.4691 +▁Challenge -11.4718 +▁Identify -11.4718 +▁PLoS -11.4718 +▁Transportation -11.4718 +▁Wyoming -11.4718 +▁beneath -11.4718 +▁encephalitis -11.4718 +▁faculty -11.4718 +▁hormonal -11.4718 +▁libraries -11.4718 +▁puzzle -11.4718 +▁rheumatoid -11.4718 +▁anticipate -11.4718 +▁elastic -11.4718 +▁iodine -11.4718 +▁Urban -11.4718 +▁Spectr -11.4718 +▁Complete -11.4719 +▁harsh -11.4719 +▁Besides -11.4719 +▁analog -11.4719 +▁Hearing -11.472 +▁institute -11.4721 +▁textbook -11.4722 +▁odor -11.4723 +▁stereo -11.4754 +▁stove -11.4791 +negative -11.4806 +agged -11.4807 +Universit -11.483 +▁Surviv -11.4831 +▁satisfy -11.4831 +▁Confederate -11.4831 +▁Douglas -11.4831 +▁Essential -11.4831 +▁Foreign -11.4831 +▁Holocaust -11.4831 +▁council -11.4831 +▁enlarged -11.4831 +▁expenditure -11.4831 +▁follicle -11.4831 +▁lizard -11.4831 +▁manifest -11.4831 +▁oxidati -11.4831 +▁purchasing -11.4831 +▁twelve -11.4831 +▁Technical -11.4831 +▁erosion -11.4831 +▁Culture -11.4831 +▁Protein -11.4831 +▁Summer -11.4831 +▁quadr -11.4831 +▁ecology -11.4831 +▁waist -11.4831 +▁descent -11.4832 +▁poem -11.4832 +▁Tropic -11.4834 +▁randomized -11.4835 +▁tele -11.4836 +▁Music -11.4844 +ethyl -11.4857 +▁oppos -11.4897 +▁Curriculum -11.4944 +▁Encourage -11.4944 +▁Organic -11.4944 +▁Register -11.4944 +▁eliminating -11.4944 +▁teaspoon -11.4944 +▁veterinary -11.4944 +▁historian -11.4944 +▁Edition -11.4944 +▁Therapy -11.4944 +▁socioeconomic -11.4944 +▁Finland -11.4944 +▁Abnormal -11.4945 +▁revised -11.4945 +▁Focus -11.4945 +▁breakdown -11.4947 +▁intact -11.4949 +stimulating -11.5059 +▁Century -11.5059 +▁Response -11.5059 +▁UNESCO -11.5059 +▁bachelor -11.5059 +▁hypothermia -11.5059 +▁microwave -11.5059 +▁privacy -11.5059 +▁quantum -11.5059 +▁vegetation -11.5059 +▁veggie -11.5059 +▁wheezing -11.5059 +▁Description -11.5059 +▁disagree -11.5059 +▁spatial -11.5059 +▁engaging -11.5059 +▁Goldman -11.5059 +▁Denmark -11.5059 +▁STDs -11.5059 +centimeter -11.5059 +▁Rapid -11.5059 +▁Feeling -11.5059 +▁Imaging -11.5059 +▁tanning -11.5059 +▁Value -11.506 +▁depict -11.506 +▁Originally -11.5062 +▁cursor -11.5066 +engineered -11.5084 +▁Geologic -11.5097 +▁combin -11.5098 +▁ultimate -11.5152 +▁compute -11.5158 +▁Jefferson -11.5175 +▁Philippines -11.5175 +▁contraceptive -11.5175 +▁corporate -11.5175 +▁interrupt -11.5175 +▁neutron -11.5175 +▁sclerosis -11.5175 +▁Einstein -11.5175 +▁excited -11.5175 +▁worksheet -11.5175 +▁dominant -11.5175 +soluble -11.5176 +▁consciousness -11.5176 +▁fisheries -11.5176 +▁Vision -11.5177 +▁angry -11.5177 +▁elector -11.5177 +▁cocoa -11.5178 +▁translation -11.5178 +▁Father -11.5181 +terminate -11.5261 +degree -11.5279 +Although -11.5279 +“ -11.5279 +Sustainable -11.5293 +compatible -11.5293 +▁Activities -11.5293 +▁Affect -11.5293 +▁Hampshire -11.5293 +▁Influenza -11.5293 +▁Meanwhile -11.5293 +▁Switzerland -11.5293 +▁cholera -11.5293 +▁economist -11.5293 +▁pharmacist -11.5293 +▁replicate -11.5293 +▁sacrifice -11.5293 +▁yesterday -11.5293 +▁offspring -11.5293 +▁Memory -11.5293 +▁NEW -11.5293 +▁serum -11.5294 +▁probiotic -11.5295 +▁Combin -11.5308 +ontrary -11.5322 +▁Harbor -11.5343 +▁complet -11.5383 +effect -11.5395 +diabetes -11.5401 +▁Christopher -11.5412 +▁Excessive -11.5412 +▁economies -11.5412 +▁efficacy -11.5412 +▁lactose -11.5412 +▁nanoparticle -11.5412 +▁sophisticated -11.5412 +▁testosterone -11.5412 +▁tetanus -11.5412 +▁wrinkle -11.5412 +▁Abraham -11.5412 +▁Concept -11.5412 +▁demographic -11.5412 +Smithsonian -11.5412 +▁Murray -11.5412 +▁uncovered -11.5412 +▁width -11.5412 +▁Growth -11.5412 +▁Linda -11.5412 +▁Textbook -11.5413 +▁Hypo -11.5413 +▁trash -11.5413 +▁hoping -11.5413 +▁Desert -11.5413 +▁Overview -11.5414 +▁surf -11.5414 +▁strictly -11.5414 +▁condens -11.5414 +▁banned -11.5414 +▁compact -11.5416 +▁erect -11.5424 +▁Range -11.5451 +globulin -11.5533 +▁accumulation -11.5533 +▁advertising -11.5533 +▁analyzing -11.5533 +▁controversy -11.5533 +▁delegate -11.5533 +▁desktop -11.5533 +▁microscopic -11.5533 +▁retirement -11.5533 +▁Cleveland -11.5533 +▁Franklin -11.5533 +▁Critical -11.5533 +▁laptop -11.5533 +▁Dragon -11.5533 +▁GERD -11.5533 +▁IPCC -11.5533 +▁pelvis -11.5533 +▁soccer -11.5533 +▁garlic -11.5533 +▁Location -11.5533 +▁graft -11.5533 +▁prayer -11.5533 +▁subtle -11.5534 +▁calf -11.5534 +▁Miller -11.5535 +▁thigh -11.5536 +config -11.5537 +▁Wolf -11.5537 +▁Olive -11.5543 +▁Relations -11.5545 +pdf -11.555 +▁Laura -11.5555 +▁consequence -11.5561 +▁wipe -11.5575 +▁accord -11.5591 +▁distribute -11.562 +neurotransmitter -11.5655 +disproportionate -11.5655 +enhancing -11.5655 +▁circulating -11.5655 +▁constraint -11.5655 +▁democracy -11.5655 +▁easiest -11.5655 +▁knock -11.5655 +▁motivate -11.5655 +▁rubber -11.5655 +▁territories -11.5655 +▁Babies -11.5655 +globin -11.5655 +▁CNN -11.5655 +▁tennis -11.5655 +▁Night -11.5655 +isotope -11.5655 +▁rectal -11.5655 +ennial -11.5655 +▁bulk -11.5656 +▁tourism -11.5656 +▁migrate -11.5676 +▁Increase -11.5723 +associated -11.5776 +watch -11.5777 +▁Establish -11.5778 +▁Bangladesh -11.5778 +▁Country -11.5778 +▁Palestinian -11.5778 +▁certification -11.5778 +▁dermatitis -11.5778 +▁electromagnetic -11.5778 +▁equipped -11.5778 +▁integral -11.5778 +▁mobility -11.5778 +▁precursor -11.5778 +▁Extension -11.5778 +▁steroids -11.5778 +▁workforce -11.5778 +▁Corporation -11.5778 +▁striking -11.5778 +▁Miami -11.5778 +▁Elementary -11.5778 +▁Interior -11.5778 +▁trunk -11.5778 +▁spiral -11.5778 +▁Toxic -11.5778 +▁heaven -11.5778 +▁opposition -11.5778 +▁snoring -11.5778 +▁aquatic -11.5778 +▁binary -11.5779 +▁tapeworm -11.5779 +▁null -11.5779 +▁Tibet -11.5779 +▁tomography -11.5779 +▁baking -11.5779 +▁bathroom -11.5779 +▁Jones -11.5782 +▁ultra -11.5782 +▁Syria -11.579 +▁pollute -11.5799 +secondhand -11.5806 +▁abscess -11.587 +▁merge -11.5882 +▁Kepler -11.5903 +▁Parliament -11.5903 +▁Sydney -11.5903 +▁Thailand -11.5903 +▁acupuncture -11.5903 +▁circular -11.5903 +▁consecutive -11.5903 +▁disparities -11.5903 +▁disposal -11.5903 +▁ovulation -11.5903 +▁sedentary -11.5903 +▁toothpaste -11.5903 +▁intersection -11.5903 +▁radius -11.5903 +▁Chandra -11.5903 +▁resonance -11.5903 +▁biomass -11.5903 +▁Dawn -11.5903 +▁liberal -11.5903 +▁DVD -11.5903 +▁folk -11.5903 +▁Process -11.5903 +▁gross -11.5904 +children -11.5904 +defined -11.5904 +▁packaging -11.5904 +▁brace -11.5906 +crani -11.5984 +gdale -11.6024 +Principal -11.603 +▁Comprehensive -11.603 +▁Evolution -11.603 +▁Traditional -11.603 +▁Veteran -11.603 +▁collaborative -11.603 +▁cortisol -11.603 +▁decimal -11.603 +▁irrigation -11.603 +▁kindergarten -11.603 +▁penguin -11.603 +▁replacing -11.603 +▁syrup -11.603 +▁Toronto -11.603 +▁gamma -11.603 +deficient -11.603 +▁Gospel -11.603 +blastoma -11.603 +▁tribal -11.603 +▁Psychological -11.603 +▁Reason -11.603 +▁agenda -11.603 +crude -11.603 +▁Neuroscience -11.603 +▁gentle -11.603 +▁radar -11.603 +▁evil -11.6031 +▁versa -11.6044 +▁ranch -11.6062 +HERE -11.6065 +▁rhino -11.6071 +▁Provid -11.6097 +whooping -11.6122 +▁coincide -11.6158 +▁Surgeon -11.6158 +▁deficiencies -11.6158 +▁deforestation -11.6158 +▁extraordinary -11.6158 +▁herbicide -11.6158 +▁imbalance -11.6158 +▁meditation -11.6158 +▁stimulant -11.6158 +▁Taylor -11.6158 +▁Volume -11.6158 +▁dietitian -11.6158 +▁bullied -11.6158 +▁Silver -11.6158 +▁milestone -11.6158 +▁PHP -11.6158 +▁Rhode -11.6159 +▁devote -11.616 +▁Front -11.6161 +General -11.6165 +▁incorporat -11.6188 +▁Industrial -11.6288 +Identifier -11.6288 +adjacent -11.6288 +▁Apollo -11.6288 +▁Pulmonary -11.6288 +▁antiretroviral -11.6288 +▁invertebrate -11.6288 +▁nickel -11.6288 +▁pancreatitis -11.6288 +▁psychiatrist -11.6288 +▁safeguard -11.6288 +▁surviving -11.6288 +▁transcript -11.6288 +▁Lawrence -11.6288 +▁primate -11.6288 +millimeter -11.6288 +▁Puerto -11.6288 +▁Recovery -11.6288 +▁compass -11.6288 +▁heavier -11.6288 +▁Kevin -11.6288 +▁Options -11.6288 +▁freezing -11.6288 +▁gym -11.6288 +▁SOURCES -11.6288 +▁Leave -11.6288 +omplementary -11.6289 +▁Promot -11.6292 +bronchi -11.6295 +▁prize -11.6317 +▁decid -11.6321 +▁Agreement -11.6419 +▁Knowledge -11.6419 +▁Resolution -11.6419 +▁embedded -11.6419 +▁iPad -11.6419 +▁incontinence -11.6419 +▁inexpensive -11.6419 +▁occupied -11.6419 +▁registration -11.6419 +▁shield -11.6419 +▁Injury -11.6419 +▁fashion -11.6419 +▁sampling -11.6419 +▁excret -11.6419 +▁Testament -11.6419 +▁basketball -11.642 +▁inequality -11.642 +▁ferment -11.6421 +▁fortified -11.6421 +partisan -11.6421 +▁Possibl -11.6424 +Treating -11.6431 +process -11.6434 +oriented -11.6434 +▁slice -11.6449 +Element -11.6449 +Graph -11.6474 +▁crea -11.6488 +▁regime -11.6497 +oxidant -11.6551 +responsive -11.6553 +▁Faculty -11.6553 +▁Fukushima -11.6553 +▁Mortality -11.6553 +▁Princeton -11.6553 +▁Respiratory -11.6553 +▁Universal -11.6553 +▁arrival -11.6553 +▁circulate -11.6553 +▁diagnosing -11.6553 +▁happiness -11.6553 +▁hereditary -11.6553 +▁opponent -11.6553 +▁reservoir -11.6553 +▁coconut -11.6553 +▁Integrat -11.6553 +▁Oncology -11.6553 +▁sewage -11.6553 +▁airplane -11.6553 +▁fleet -11.6553 +▁pork -11.6554 +▁entries -11.6554 +▁Sharp -11.6554 +▁lawyer -11.6557 +▁Describe -11.6564 +containing -11.6571 +century -11.6571 +▁Translat -11.6652 +▁horizon -11.6687 +▁HEALTH -11.6688 +▁Expect -11.6688 +▁Virtual -11.6688 +Channel -11.6688 +▁Eventually -11.6688 +▁Hemisphere -11.6688 +▁applicable -11.6688 +▁athletic -11.6688 +▁culprit -11.6688 +▁insomnia -11.6688 +▁melatonin -11.6688 +▁victory -11.6688 +▁Boulder -11.6688 +▁cramps -11.6688 +▁mutual -11.6688 +▁outlook -11.6688 +▁uncommon -11.6688 +▁Geographic -11.6688 +▁lawsuit -11.6688 +▁sprout -11.6688 +▁Address -11.6688 +▁guilt -11.6688 +▁vocal -11.6688 +▁baked -11.6688 +▁geography -11.6688 +▁stigma -11.6688 +▁basal -11.6688 +▁pacemaker -11.6688 +▁Letters -11.6689 +▁tilt -11.6689 +▁Version -11.669 +▁hetero -11.669 +Hispanic -11.6709 +keeping -11.671 +▁tuna -11.6711 +cluding -11.6822 +naissance -11.6825 +▁MySQL -11.6825 +▁Nevertheless -11.6825 +▁Occupational -11.6825 +▁Traffic -11.6825 +▁calculator -11.6825 +▁furniture -11.6825 +▁infestation -11.6825 +▁pencil -11.6825 +▁selenium -11.6825 +▁Construction -11.6825 +▁cheek -11.6825 +▁reproduction -11.6825 +▁speculate -11.6825 +▁Travel -11.6825 +▁additive -11.6825 +▁afternoon -11.6825 +▁electrolyte -11.6825 +▁configure -11.6825 +▁restoration -11.6825 +▁denture -11.6825 +▁plume -11.6825 +▁sauce -11.6825 +▁lutein -11.6825 +▁Crime -11.6825 +▁sphere -11.6826 +▁berries -11.6826 +▁Tumor -11.6826 +▁penis -11.6826 +▁divert -11.6833 +nutrient -11.685 +Medical -11.6851 +Wiki -11.6874 +drew -11.6888 +▁regulator -11.6943 +▁basket -11.6963 +▁Berkeley -11.6964 +▁compensate -11.6964 +▁debilitating -11.6964 +▁divorce -11.6964 +▁drastic -11.6964 +▁evident -11.6964 +▁ibuprofen -11.6964 +▁manipulate -11.6964 +▁mesothelioma -11.6964 +▁sneezing -11.6964 +▁stakeholders -11.6964 +▁vacuum -11.6964 +▁Renewable -11.6964 +▁Taiwan -11.6964 +▁paralysis -11.6964 +▁Barbara -11.6964 +▁scatter -11.6964 +▁sweep -11.6964 +macrophage -11.6964 +▁cardiologist -11.6964 +▁Sarah -11.6964 +▁courtesy -11.6964 +▁denied -11.6964 +orbidity -11.6964 +▁spouse -11.6964 +▁ovary -11.6964 +▁query -11.6965 +outheastern -11.6979 +▁osteo -11.6986 +WHO -11.6993 +surgery -11.6993 +Medicine -11.6993 +frame -11.6994 +BMI -11.6995 +write -11.7041 +▁numb -11.7075 +▁Exploration -11.7104 +▁Greece -11.7104 +▁Immunology -11.7104 +▁Increasing -11.7104 +▁Subject -11.7104 +▁Success -11.7104 +▁appendix -11.7104 +▁aquarium -11.7104 +▁avocado -11.7104 +▁chickenpox -11.7104 +▁duplication -11.7104 +▁gloves -11.7104 +▁manganese -11.7104 +▁separation -11.7104 +▁technological -11.7104 +▁thirty -11.7104 +▁variability -11.7104 +▁destructive -11.7104 +▁thirst -11.7104 +▁Dallas -11.7104 +▁oyster -11.7104 +▁Lanka -11.7104 +▁Nelson -11.7104 +▁shingles -11.7105 +▁purple -11.7105 +▁absent -11.7105 +▁landowner -11.7105 +▁Psycho -11.7105 +▁retrieve -11.7105 +▁Million -11.7105 +▁Trauma -11.7105 +▁tiger -11.7106 +▁allocate -11.7116 +growing -11.7139 +either -11.7157 +collar -11.717 +psychotic -11.7232 +▁explode -11.7247 +intelligent -11.7247 +▁Arkansas -11.7247 +▁Diversity -11.7247 +▁Evidence -11.7247 +▁Financial -11.7247 +▁Immunization -11.7247 +▁endocrine -11.7247 +▁execution -11.7247 +▁fragile -11.7247 +▁maturity -11.7247 +▁politician -11.7247 +▁ventilation -11.7247 +▁Idaho -11.7247 +▁Picture -11.7247 +▁Diagnostic -11.7247 +▁Swiss -11.7247 +▁regain -11.7247 +▁implied -11.7247 +▁droplets -11.7248 +▁Initial -11.7248 +Madison -11.7248 +View -11.7285 +Earth -11.7286 +factor -11.7287 +▁Beyond -11.7392 +▁Biodiversity -11.7392 +▁Copenhagen -11.7392 +▁Immediate -11.7392 +▁Kyoto -11.7392 +▁Norwegian -11.7392 +▁Refuge -11.7392 +▁compliance -11.7392 +▁tomorrow -11.7392 +▁Domestic -11.7392 +▁League -11.7392 +▁Movement -11.7392 +▁neurodegenerati -11.7392 +▁anxious -11.7392 +▁abroad -11.7392 +▁honest -11.7392 +▁beauty -11.7392 +▁CPU -11.7393 +▁partition -11.7393 +▁Horse -11.7395 +▁Self -11.7395 +member -11.7423 +▁socio -11.7429 +funded -11.7435 +compulsive -11.7539 +▁catastrophic -11.7539 +▁Argentina -11.7539 +▁Astrophysic -11.7539 +▁Collaborat -11.7539 +▁Earlier -11.7539 +▁Phoenix -11.7539 +▁affairs -11.7539 +▁almonds -11.7539 +▁anatomy -11.7539 +▁broccoli -11.7539 +▁collaborate -11.7539 +▁combustion -11.7539 +▁confusing -11.7539 +▁fallopian -11.7539 +▁hemorrhoid -11.7539 +▁lipoprotein -11.7539 +▁mechanics -11.7539 +▁navigation -11.7539 +▁outweigh -11.7539 +▁Uganda -11.7539 +▁eardrum -11.7539 +▁feather -11.7539 +▁ferret -11.7539 +▁Temple -11.7539 +▁plague -11.7539 +▁Fisheries -11.7539 +▁Modern -11.7539 +▁WWF -11.7539 +▁USGS -11.7539 +▁shelf -11.7539 +▁Branch -11.754 +▁Egg -11.754 +▁splint -11.7541 +▁oncologist -11.7541 +▁Prepare -11.7547 +Name -11.7589 +▁Half -11.7611 +▁evolve -11.7654 +▁nuclei -11.7685 +outhwestern -11.7689 +▁Coalition -11.7689 +▁Strategies -11.7689 +▁Strategy -11.7689 +▁Territory -11.7689 +▁Thompson -11.7689 +▁aggression -11.7689 +▁dolphin -11.7689 +▁garbage -11.7689 +▁grapefruit -11.7689 +▁influential -11.7689 +▁monument -11.7689 +▁mysterious -11.7689 +▁syringe -11.7689 +▁vinegar -11.7689 +▁NRDC -11.7689 +▁DEET -11.7689 +phobia -11.7689 +▁endurance -11.7689 +▁Ecology -11.7689 +▁infancy -11.7689 +▁implies -11.7689 +▁Storm -11.7689 +▁FAO -11.7689 +▁inherent -11.7689 +ordinate -11.7727 +reviewed -11.774 +Money -11.7741 +▁disinfect -11.7763 +llicit -11.7783 +▁Astronomer -11.784 +▁Families -11.784 +▁Montgomery -11.784 +▁Political -11.784 +▁Twenty -11.784 +▁WASHINGTON -11.784 +▁cautious -11.784 +▁consensus -11.784 +▁hypothyroidism -11.784 +▁impressive -11.784 +▁quoted -11.784 +▁robust -11.784 +▁simulation -11.784 +▁Military -11.784 +▁Skills -11.784 +▁urination -11.784 +▁microbial -11.784 +▁ceiling -11.784 +▁reputation -11.784 +▁supplied -11.784 +▁summarize -11.784 +▁Emory -11.784 +▁Ridge -11.784 +▁spleen -11.784 +▁Instruction -11.784 +▁Correct -11.784 +▁Launch -11.784 +▁Sumatra -11.784 +▁choline -11.784 +▁serial -11.7841 +▁angina -11.7841 +▁cousin -11.7841 +▁advent -11.7842 +▁Browse -11.7843 +▁sanct -11.7863 +▁confine -11.7864 +through -11.7895 +eliac -11.7991 +▁Beijing -11.7994 +▁Legislature -11.7994 +▁Registry -11.7994 +▁Strength -11.7994 +▁citrus -11.7994 +▁metropolitan -11.7994 +▁possibilities -11.7994 +▁recognizing -11.7994 +▁rectangle -11.7994 +▁supernova -11.7994 +▁synthesize -11.7994 +▁wisdom -11.7994 +▁Bullying -11.7994 +▁favour -11.7994 +▁obsess -11.7994 +▁puppy -11.7994 +▁Yoga -11.7994 +▁okay -11.7994 +▁undertaken -11.7994 +▁Nixon -11.7994 +▁distraction -11.7994 +▁burrow -11.7994 +▁physiology -11.7994 +▁relapse -11.7994 +▁frost -11.7994 +▁duties -11.7994 +▁chlorine -11.7994 +▁nodule -11.7994 +▁FREE -11.7994 +▁staple -11.7994 +▁dump -11.7995 +sensitive -11.8055 +world -11.8055 +▁Meteor -11.8098 +deprived -11.815 +▁Anxiety -11.815 +▁Campbell -11.815 +▁Extreme -11.815 +▁Surveillance -11.815 +▁Swedish -11.815 +▁bubble -11.815 +▁qualities -11.815 +▁vulnerability -11.815 +▁Cognitive -11.815 +▁OECD -11.815 +▁recharge -11.815 +▁simulate -11.815 +▁Detroit -11.815 +▁synchro -11.815 +▁pinpoint -11.815 +▁Sudden -11.815 +Literacy -11.815 +▁zebra -11.815 +ifiable -11.815 +▁Denver -11.815 +▁casual -11.815 +▁Anderson -11.815 +screen -11.8215 +United -11.8216 +Science -11.8216 +continental -11.8217 +protect -11.8217 +Type -11.822 +▁Eight -11.83 +▁admit -11.8307 +▁Afghanistan -11.8309 +▁Benjamin -11.8309 +▁Performance -11.8309 +▁acetaminophen -11.8309 +▁anesthetic -11.8309 +▁anterior -11.8309 +▁artifacts -11.8309 +▁benchmark -11.8309 +▁contemporary -11.8309 +▁contraception -11.8309 +▁degradation -11.8309 +▁fluorescent -11.8309 +▁graduation -11.8309 +▁penalty -11.8309 +▁qualify -11.8309 +▁repetitive -11.8309 +▁susceptibility -11.8309 +▁Creek -11.8309 +▁Would -11.8309 +▁memorial -11.8309 +▁analyst -11.8309 +▁Character -11.8309 +▁discourage -11.8309 +▁Constant -11.8309 +▁Flood -11.8309 +▁Uranus -11.8309 +▁talent -11.8309 +▁urging -11.8309 +▁SIDS -11.8309 +▁feces -11.8309 +▁Stories -11.8309 +▁illuminat -11.8309 +▁steep -11.831 +fitting -11.8327 +continue -11.838 +rigg -11.8406 +Diagnos -11.847 +▁contradict -11.847 +▁Cambodia -11.847 +▁Ethiopia -11.847 +▁IMMEDIATE -11.847 +▁Software -11.847 +▁anorexia -11.847 +▁constituent -11.847 +▁creativity -11.847 +▁declaration -11.847 +▁explosive -11.847 +▁frequencies -11.847 +▁measurable -11.847 +▁satisfied -11.847 +▁transparent -11.847 +▁Budget -11.847 +▁Darwin -11.847 +▁carrots -11.847 +▁fraud -11.847 +▁worship -11.847 +▁Samuel -11.847 +▁legumes -11.847 +▁Ancient -11.847 +▁inclusion -11.847 +▁Goddard -11.847 +▁trading -11.847 +▁remedy -11.847 +▁enemy -11.847 +▁MAY -11.847 +▁counsel -11.8546 +World -11.8547 +building -11.858 +▁exploit -11.8582 +▁Observ -11.8596 +▁gradual -11.8611 +▁neighbour -11.8634 +Recommended -11.8634 +▁Complications -11.8634 +▁Firefox -11.8634 +▁Medicaid -11.8634 +▁Singapore -11.8634 +▁Tobacco -11.8634 +▁Veterinar -11.8634 +▁continually -11.8634 +▁dialysis -11.8634 +▁incomplete -11.8634 +▁predominant -11.8634 +▁qualification -11.8634 +▁syphilis -11.8634 +▁treasure -11.8634 +▁humanitarian -11.8634 +▁Turkey -11.8634 +▁amputation -11.8634 +▁Account -11.8634 +▁enamel -11.8634 +▁Mobile -11.8634 +▁Speech -11.8634 +▁visibility -11.8634 +▁bought -11.8634 +▁bruise -11.8634 +▁blade -11.8634 +▁feline -11.8634 +▁Own -11.8636 +OTC -11.8638 +▁suburb -11.8639 +▁corona -11.8668 +material -11.8717 +natural -11.8717 +blockers -11.8772 +affiliated -11.8801 +▁Chemotherapy -11.8801 +▁Halloween -11.8801 +▁Millennium -11.8801 +▁Orleans -11.8801 +▁circumference -11.8801 +▁malnutrition -11.8801 +▁neutrino -11.8801 +▁obstacle -11.8801 +▁republic -11.8801 +▁rigorous -11.8801 +▁squamous -11.8801 +▁Lymph -11.8801 +▁Rwanda -11.8801 +▁Failure -11.8801 +▁Hitler -11.8801 +▁catalog -11.8801 +▁courage -11.8801 +▁chloride -11.8801 +▁violate -11.8801 +▁problematic -11.8801 +▁praise -11.8802 +▁Smoke -11.8804 +▁Detect -11.8805 +first -11.8889 +▁erupt -11.8943 +igestive -11.8967 +▁Gregory -11.897 +▁ISBN -11.897 +▁Orthodox -11.897 +▁Welcome -11.897 +▁caloric -11.897 +▁cumulative -11.897 +▁dividing -11.897 +▁empire -11.897 +▁epidemiology -11.897 +▁pleasure -11.897 +▁retinopathy -11.897 +▁segregation -11.897 +▁tragedy -11.897 +▁Cardiology -11.897 +▁Facility -11.897 +▁Organisation -11.897 +▁expedition -11.897 +▁improper -11.897 +▁Graduate -11.897 +▁pigeon -11.897 +▁Kaiser -11.897 +▁sandwich -11.897 +▁Simply -11.897 +▁Queensland -11.897 +▁Martian -11.897 +▁AAAS -11.897 +▁Concern -11.897 +▁tidal -11.8971 +▁Fuel -11.8971 +▁flesh -11.8971 +▁Jenni -11.8978 +leafy -11.9008 +▁Neurologic -11.904 +intensity -11.9064 +frequency -11.9066 +usculoskeletal -11.9143 +▁Campaign -11.9143 +▁Pittsburgh -11.9143 +▁Salmonella -11.9143 +▁Temperature -11.9143 +▁archaeologist -11.9143 +▁blurred -11.9143 +▁frustration -11.9143 +▁furnace -11.9143 +▁lesbian -11.9143 +▁navigate -11.9143 +▁penetrate -11.9143 +▁presidency -11.9143 +▁smartphone -11.9143 +▁spectacular -11.9143 +▁steadily -11.9143 +▁syntax -11.9143 +▁Carnegie -11.9143 +▁Citizen -11.9143 +▁drift -11.9143 +▁Permanent -11.9143 +▁yoga -11.9143 +▁Decrease -11.9143 +▁unchanged -11.9143 +▁Cloud -11.9143 +▁harbor -11.9143 +▁Nursing -11.9143 +▁crawl -11.9144 +▁dispose -11.9144 +sleeve -11.9144 +Because -11.9243 +April -11.9243 +hopper -11.926 +Exception -11.9318 +ntimicrobial -11.9318 +▁Aerospace -11.9318 +▁Astronomy -11.9318 +▁Cultural -11.9318 +▁Regardless -11.9318 +▁Rehabilitation -11.9318 +▁bruising -11.9318 +▁ceremony -11.9318 +▁chromium -11.9318 +▁criticism -11.9318 +▁dystrophy -11.9318 +▁hemorrhage -11.9318 +▁maximize -11.9318 +▁mucous -11.9318 +▁obstetric -11.9318 +▁terrestrial -11.9318 +▁unpleasant -11.9318 +NSAIDs -11.9318 +▁Estimate -11.9318 +▁Hamilton -11.9318 +▁Vienna -11.9318 +▁antiviral -11.9318 +▁fertile -11.9318 +▁pseudo -11.9318 +▁replenish -11.9318 +▁sarcoma -11.9318 +▁supplier -11.9318 +▁Antonio -11.9318 +▁Calcium -11.9318 +▁Geophysic -11.9318 +▁unprotected -11.9318 +▁Module -11.9318 +▁grief -11.9318 +▁Double -11.9318 +▁delicate -11.9318 +▁dismiss -11.9318 +▁shrub -11.9318 +▁antenna -11.9318 +▁periodically -11.9318 +▁Device -11.9318 diff --git a/upload_large_folder.ps1 b/upload_large_folder.ps1 new file mode 100644 index 0000000000000000000000000000000000000000..92c2393c024d37d8c20073292e58d702e1acdace --- /dev/null +++ b/upload_large_folder.ps1 @@ -0,0 +1,20 @@ +param( + [string]$RepoId = "TaoTern/TaoNet-mini-T2", + [string]$HfExe = "hf" +) + +$ErrorActionPreference = "Stop" +$Root = Split-Path -Parent $MyInvocation.MyCommand.Path + +if (-not $env:HF_TOKEN) { + & $HfExe auth whoami *> $null + if ($LASTEXITCODE -ne 0) { + Write-Host "Not logged in to Hugging Face. Run one of these first:" + Write-Host " hf auth login" + Write-Host "or:" + Write-Host ' $env:HF_TOKEN="YOUR_TOKEN"' + exit 1 + } +} + +& $HfExe upload-large-folder $RepoId $Root --repo-type model --private